* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #111;
  transition: all 0.3s ease;
  max-width: 100vw;
  line-height: 1.6;
  overflow-x: hidden;
}

.dark {
  background: #111;
  color: #fff;
}

.dark .navbar {
  background: rgba(17,17,17,0.95);
}

.dark .card {
  background: #222;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  max-width: 100vw;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0EBC9C;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 100vw;
}

nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #0EBC9C;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0EBC9C;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

#darkToggle {
  background: none;
  border: 2px solid #0EBC9C;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

#darkToggle:hover {
  background: #0EBC9C;
  transform: scale(1.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.dark .hamburger span {
  background: #fff;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    font-size: 1.2rem;
  }
  
  .dark nav {
    background: rgba(17,17,17,0.98);
  }
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(14,188,156,0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-small {
  height: 75vh;
  background: url("./img/teams/media_bg.JPG") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(14,188,156,0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.section {
  padding: 100px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.light {
  background: #f8fafc;
}

.dark .section h2 {
  color: #fff;
}

.dark .section p {
  color: #fff;
}

.dark .light {
  background: #1a1a1a;
}

/* Image Slider Section */
.image-slider-section {
  padding: 15% 0;
  background: #f8fafc;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-out;
  padding-left: calc((100% - 80%) / 2);
}

.slide {
  min-width: 80%;
  height: 400px;
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px;
  transition: all 0.3s ease;
}

.slide:hover .slide-content {
  background: linear-gradient(to top, rgba(14,188,156,0.9), transparent);
}

.slide-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.slide-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-btn:hover {
  background: #0EBC9C;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0EBC9C;
  width: 30px;
  border-radius: 6px;
}

.dark .image-slider-section {
  background: #111;
}

.dark .nav-btn {
  background: rgba(50,50,50,0.9);
  color: #fff;
}

.dark .nav-btn:hover {
  background: #0EBC9C;
}

.dark .dot {
  background: #555;
}

@media (max-width: 768px) {
  .slide {
    min-width: 85%;
    height: 300px;
  }
  
  .slider-track {
    padding-left: calc((100% - 85%) / 2);
  }
  
  .slide-content {
    padding: 20px;
  }
  
  .slide-content h3 {
    font-size: 1.4rem;
  }
  
  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(14,188,156,0.1);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: #0EBC9C;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  font-size: 1rem;
  opacity: 0.7;
  font-weight: 400;
}

.dark .card h4 {
  color: #fff;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 80px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.solution-grid.reverse {
  direction: rtl;
}

.solution-grid.reverse > * {
  direction: ltr;
}

.solution-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.solution-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
  text-align: left;
}

.solution-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-statement {
  background: linear-gradient(135deg, #0EBC9C, #0a9a8a);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  margin-top: 80px;
  text-align: center;
}

.mission-statement h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.mission-statement p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.dark .solution-content h3 {
  color: #fff;
}

.dark .solution-content p {
  color: #fff;
}

.revenue-model {
  margin-top: 60px;
  padding: 50px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.revenue-model h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.revenue-model > p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partnership-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.partnership-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.partnership-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.partnership-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.partnership-item p {
  font-size: 0.95rem;
  opacity: 0.7;
}

.dark .revenue-model {
  background: #222;
}

.dark .revenue-model h3 {
  color: #fff;
}

.dark .partnership-item {
  background: #333;
}

.dark .partnership-item h4 {
  color: #fff;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.problem-stat {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-stat h3 {
  font-size: 2.5rem;
  color: #0EBC9C;
  margin-bottom: 10px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.challenge-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.challenge-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.challenge-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.spec-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #0EBC9C;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.performance-item {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
}

.performance-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0EBC9C;
  margin-bottom: 10px;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.dark .problem-stat {
  background: #333;
}

.dark .challenge-item {
  background: #222;
}

.dark .challenge-item h3 {
  color: #fff;
}

.dark .spec-item {
  background: #222;
}

.dark .performance-item {
  background: #333;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.expert-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.expert-image {
  margin-bottom: 30px;
}

.expert-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0EBC9C;
}

.expert-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.quote-icon {
  font-size: 4rem;
  color: #0EBC9C;
  line-height: 1;
  margin-bottom: 20px;
}

.expert-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
  color: #555;
}

.expert-name {
  font-weight: 600;
  color: #0EBC9C;
  font-size: 1rem;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.innovation-item {
  text-align: center;
  padding: 40px 30px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.innovation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.innovation-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.innovation-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.innovation-item p {
  font-size: 1rem;
  opacity: 0.8;
}

.industry-insight {
  background: linear-gradient(135deg, #0EBC9C, #0a9a8a);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.industry-insight h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.industry-insight > p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.insight-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.insight-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.dark .expert-card {
  background: #222;
}

.dark .expert-content h3 {
  color: #fff;
}

.dark .expert-quote {
  color: #ccc;
}

.dark .innovation-item {
  background: #333;
}

.dark .innovation-item h3 {
  color: #fff;
}

.dark .innovation-item p {
  color: #ccc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.blog-card.featured {
  grid-column: span 2;
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0EBC9C;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #888;
}

.blog-date {
  font-weight: 500;
}

.blog-read-time {
  color: #0EBC9C;
  font-weight: 500;
}

.insight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.insight-card {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.insight-image {
  flex: 1;
  min-height: 200px;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.insight-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.newsletter-signup {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.newsletter-signup p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: #0EBC9C;
}

.newsletter-btn {
  padding: 15px 30px;
  white-space: nowrap;
}

.dark .blog-card {
  background: #222;
}

.dark .blog-content h3 {
  color: #fff;
}

.dark .blog-excerpt {
  color: #ccc;
}

.dark .insight-card {
  background: #222;
}

.dark .insight-content h3 {
  color: #fff;
}

.dark .insight-content p {
  color: #ccc;
}

.dark .newsletter-signup {
  background: #222;
}

.dark .newsletter-signup h3 {
  color: #fff;
}

.dark .newsletter-signup p {
  color: #ccc;
}

.dark .newsletter-input {
  background: #333;
  border-color: #555;
  color: #fff;
}

.dark .newsletter-input::placeholder {
  color: #aaa;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

.modal-content h3 {
  margin-bottom: 30px;
  color: #333;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0EBC9C;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

#contactForm .btn {
  width: 100%;
  margin-top: 10px;
}

.dark .modal-content {
  background-color: #222;
}

.dark .modal-content h3 {
  color: #fff;
}

.dark .form-group label {
  color: #fff;
}

.dark .form-group input,
.dark .form-group textarea {
  background-color: #333;
  border-color: #555;
  color: #fff;
}

.dark .form-group input::placeholder,
.dark .form-group textarea::placeholder {
  color: #aaa;
}

.dark .close {
  color: #ccc;
}

.dark .close:hover {
  color: #fff;
}

.gallery-container {
  overflow: hidden;
  border-radius: 20px;
  margin-top: 50px;
}

.gallery-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gallery-track img:hover {
  transform: scale(1.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background: linear-gradient(135deg, #0EBC9C, #0a9a8a);
  color: white;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 60%;
  padding: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
}

.stat h3 {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0EBC9C, #0a9a8a);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14,188,156,0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14,188,156,0.4);
}

.cta {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 100px 60px;
  text-align: center;
  margin-top: 50px;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
}

/* Enhanced Footer Styles */
footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 40px 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0EBC9C;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social h4,
.footer-location h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.social-link.youtube:hover {
  background: #ff0000;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.linkedin:hover {
  background: #0077b5;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 15px;
}

.view-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0EBC9C;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-map-link:hover {
  color: #1ad4b5;
}

/* Footer Documents QR Section */
.footer-documents {
  text-align: center;
}

.footer-documents h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin-top: 15px;
}

.document-qr {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.qr-text {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 120px;
  line-height: 1.4;
}

.dark .qr-text {
  color: #888;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.dark footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0f2027);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
  
  .qr-container {
    align-items: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
    max-width: 100vw;
    min-height: 50px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .hamburger {
    width: 36px;
    height: 36px;
  }
  
  nav {
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 60px 0;
  }
  
  .solution-content h3 {
    font-size: 1.7rem;
  }
  
  .solution-content p {
    text-align: center;
  }
  
  .mission-statement {
    padding: 40px 20px;
  }
  
  .mission-statement h3 {
    font-size: 1.8rem;
  }
  
  .stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 80%;
    padding: 30px 20px;
  }
  
  .stat {
    width: 100%;
    max-width: 300px;
  }
  
  .stat h3 {
    font-size: 3rem;
  }
  
  .cta {
    padding: 60px 20px;
  }
  
  .expert-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .expert-card {
    padding: 30px 20px;
  }
  
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insight-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .industry-insight {
    padding: 40px 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card.featured {
    grid-column: span 1;
  }
  
  .insight-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insight-card {
    flex-direction: column;
  }
  
  .insight-image {
    min-height: 200px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-signup {
    padding: 30px 20px;
  }
}

/* Ambulance Page Styles */

/* Hero Ambulance Section */
.hero-ambulance {
  height: 100vh;
  background: url('img/ambulance/ambulance1.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ambulance .overlay {
  background: rgba(0,0,0,0.5);
}

/* About Vehicle Section */
.about-vehicle .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #0EBC9C;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.dark .about-content p {
  color: #ccc;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(14,188,156,0.1);
  border-radius: 8px;
}

.dark .feature-item {
  background: rgba(14,188,156,0.2);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Vehicle Photos Section */
.vehicle-photos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.photo-item img:hover {
  transform: translateY(-10px);
}

/* Why Our Product Section */
.why-product .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

.dark .section-intro {
  color: #aaa;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.diff-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.dark .diff-card {
  background: #222;
}

.diff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.diff-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.diff-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.dark .diff-card h3 {
  color: #fff;
}

.diff-card p {
  color: #666;
  line-height: 1.7;
}

.dark .diff-card p {
  color: #aaa;
}

/* Gallery Section */
.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Technical Section */
.technical-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.technical-placeholder {
  text-align: center;
  padding: 80px 20px;
  background: #f8fafc;
  border-radius: 15px;
  border: 2px dashed #ddd;
}

.dark .technical-placeholder {
  background: #1a1a1a;
  border-color: #333;
}

.technical-placeholder p {
  font-size: 1.2rem;
  color: #888;
}

/* Responsive for Ambulance Page */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .differentiators-grid {
    grid-template-columns: 1fr;
  }
  
  .photos-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .diff-card {
    padding: 25px;
  }
}

/* Panchi Page Styles */

/* Hero Panchi Section */
.hero-panchi {
  height: 100vh;
  background: linear-gradient(135deg, #0EBC9C 0%, #1b5e20 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panchi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/cargoX/IMG_6594.JPG') center/cover no-repeat;
  opacity: 0.3;
}

.hero-panchi .overlay {
  background: rgba(0,0,0,0.4);
}

/* About Products Section */
.about-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #0EBC9C;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.product-row.reverse {
  direction: rtl;
}

.product-row.reverse > * {
  direction: ltr;
}

.product-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0EBC9C;
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.dark .product-content p {
  color: #ccc;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

/* Why Products Section - Two Columns */
.why-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.product-column {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dark .product-column {
  background: #222;
}

.column-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #0EBC9C;
}

.column-header h3 {
  font-size: 1.8rem;
  color: #0EBC9C;
  margin-bottom: 5px;
}

.column-header p {
  color: #888;
  font-size: 1rem;
}

.product-column .diff-card {
  background: rgba(14,188,156,0.05);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: none;
  border: 1px solid rgba(14,188,156,0.1);
}

.dark .product-column .diff-card {
  background: rgba(14,188,156,0.1);
  border-color: rgba(14,188,156,0.2);
}

.product-column .diff-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.dark .product-column .diff-card h4 {
  color: #fff;
}

/* Responsive for Panchi Page */
@media (max-width: 992px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-row.reverse {
    direction: ltr;
  }
  
  .products-compare-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-products h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-content h3 {
    font-size: 1.6rem;
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
  
  .product-column {
    padding: 25px;
  }
  
  .column-header h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   REDESIGNED WHY OUR PRODUCT SECTIONS
   ============================================ */

/* --- Ambulance Page: Timeline Layout --- */
.why-choose-ambulance {
  position: relative;
  overflow: hidden;
}

.diagonal-bg {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: linear-gradient(135deg, rgba(14,188,156,0.03) 0%, transparent 50%);
  transform: rotate(-5deg);
  pointer-events: none;
}

.section-header-alt {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0EBC9C, #0a9a8a);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-header-alt h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.dark .section-header-alt h2 {
  color: #fff;
}

.section-header-alt p {
  font-size: 1.2rem;
  color: #666;
}

.dark .section-header-alt p {
  color: #aaa;
}

.features-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0EBC9C, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #0EBC9C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(14,188,156,0.4);
}

.timeline-content {
  width: 45%;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.dark .timeline-content {
  background: #1a1a1a;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-item:not(.reverse) .timeline-content {
  margin-right: auto;
}

.timeline-item.reverse .timeline-content {
  margin-left: auto;
}

.timeline-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111;
}

.dark .timeline-content h3 {
  color: #fff;
}

.timeline-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.dark .timeline-content p {
  color: #aaa;
}

.timeline-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 15px;
  border-top: 2px solid rgba(14,188,156,0.2);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0EBC9C;
}

.stat-label {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Panchi Page: Dual Card Layout --- */
.why-products-v2 {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f5e9 100%);
  padding: 80px 20px;
}

.dark .why-products-v2 {
  background: linear-gradient(135deg, #111 0%, #1a2f1a 100%);
}

.products-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(14,188,156,0.1);
  border: 2px solid #0EBC9C;
  color: #0EBC9C;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.dark .showcase-badge {
  background: rgba(14,188,156,0.2);
}

.showcase-header h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.dark .showcase-header h2 {
  color: #fff;
}

.showcase-header p {
  font-size: 1.2rem;
  color: #666;
}

.dark .showcase-header p {
  color: #aaa;
}

.product-cards-duo {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  position: relative;
  margin-bottom: 40px;
}

.product-showcase-card {
  flex: 1;
  max-width: 450px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark .product-showcase-card {
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.card-visual {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.cargo-bg {
  background: linear-gradient(135deg, #0EBC9C 0%, #0066cc 100%);
}

.panchi-bg {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.visual-icon {
  font-size: 5rem;
  z-index: 2;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #111;
}

.dark .card-content h3 {
  color: #fff;
}

.card-tagline {
  font-size: 1rem;
  color: #0EBC9C;
  font-weight: 500;
  margin-bottom: 25px;
}

.feature-list {
  margin-bottom: 25px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dark .feature-row {
  border-bottom-color: rgba(255,255,255,0.05);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: #0EBC9C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.card-highlight {
  background: linear-gradient(135deg, #0EBC9C 0%, #0a9a8a 100%);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.card-highlight.alt {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.highlight-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.highlight-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.vs-badge {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 3px solid #0EBC9C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0EBC9C;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.dark .vs-badge {
  background: #1a1a1a;
  border-color: #0EBC9C;
}

.showcase-footer {
  text-align: center;
  padding: 25px;
  background: rgba(14,188,156,0.05);
  border-radius: 12px;
  border: 1px dashed rgba(14,188,156,0.3);
}

.dark .showcase-footer {
  background: rgba(14,188,156,0.1);
  border-color: rgba(14,188,156,0.3);
}

.showcase-footer p {
  color: #666;
  font-size: 0.95rem;
}

.dark .showcase-footer p {
  color: #aaa;
}

/* Responsive for redesigned sections */
@media (max-width: 992px) {
  .features-timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item.reverse {
    flex-direction: row;
  }
  
  .timeline-number {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
  
  .product-cards-duo {
    flex-direction: column;
    align-items: center;
  }
  
  .vs-badge {
    margin: 20px 0;
  }
  
  .section-header-alt h2,
  .showcase-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-tag {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .section-header-alt h2,
  .showcase-header h2 {
    font-size: 1.8rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-icon {
    font-size: 2rem;
  }
  
  .timeline-content h3 {
    font-size: 1.2rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .product-showcase-card {
    max-width: 100%;
  }
  
  .visual-icon {
    font-size: 4rem;
  }
  
  .highlight-value {
    font-size: 2rem;
  }
}

/* Lightbox Modal Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #0EBC9C;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: #0EBC9C;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  max-width: 80%;
}

.lightbox-counter {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Gallery Show More Styles */
.gallery-container {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.large img {
  height: 100%;
  min-height: 520px;
}

.show-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 15px 40px;
  background: #0EBC9C;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.show-more-btn:hover {
  background: #0a9a8a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14,188,156,0.3);
}

.show-more-btn.hidden {
  display: none;
}

/* Responsive for Lightbox */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item.large img {
    min-height: auto;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
}

/* ============================================
   TECHNICAL SPECIFICATIONS CSS
   ============================================ */

/* Tech Spec Grid */
.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.spec-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark .spec-card {
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.spec-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dark .spec-card-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-bottom-color: rgba(255,255,255,0.05);
}

.spec-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.spec-card-header h3 {
  font-size: 1.2rem;
  color: #111;
  margin: 0;
}

.dark .spec-card-header h3 {
  color: #fff;
}

.spec-table {
  padding: 20px 25px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 20px;
}

.dark .spec-row {
  border-bottom-color: rgba(255,255,255,0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: #666;
  font-size: 0.95rem;
  flex: 1;
}

.dark .spec-label {
  color: #aaa;
}

.spec-value {
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  flex: 1;
}

.dark .spec-value {
  color: #fff;
}

/* Highlight Cards */
.spec-card.highlight-card {
  border: 2px solid #0EBC9C;
}

.spec-card.highlight-card .spec-card-header {
  background: linear-gradient(135deg, #0EBC9C 0%, #0a9a8a 100%);
}

.spec-card.highlight-card .spec-card-header h3,
.spec-card.highlight-card .spec-icon {
  color: #fff;
}

/* Solar Card */
.spec-card.solar-card {
  border: 2px solid #f7931e;
}

.spec-card.solar-card .spec-card-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.spec-card.solar-card .spec-card-header h3,
.spec-card.solar-card .spec-icon {
  color: #fff;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 15px 40px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
}

.dark .tab-btn {
  background: #1a1a1a;
  border-color: #333;
  color: #aaa;
}

.tab-btn:hover {
  border-color: #0EBC9C;
  color: #0EBC9C;
}

.tab-btn.active {
  background: #0EBC9C;
  border-color: #0EBC9C;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pricing Section */
.pricing-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(0,0,0,0.05);
}

.dark .pricing-section {
  border-top-color: rgba(255,255,255,0.05);
}

.pricing-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #111;
}

.dark .pricing-title {
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.dark .pricing-card {
  background: #1a1a1a;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  border-color: #0EBC9C;
  transform: scale(1.05);
}

.pricing-card.featured-alt {
  border-color: #f7931e;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0EBC9C;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h4 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 8px;
}

.dark .pricing-header h4 {
  color: #fff;
}

.pricing-range {
  display: inline-block;
  background: rgba(14,188,156,0.1);
  color: #0EBC9C;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0EBC9C;
  margin-bottom: 15px;
}

.pricing-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.dark .pricing-card p {
  color: #aaa;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

/* Technical Section Responsive */
@media (max-width: 992px) {
  .tech-spec-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .product-tabs {
    gap: 10px;
  }
  
  .tab-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-card-header {
    padding: 15px 20px;
  }
  
  .spec-table {
    padding: 15px 20px;
  }
  
  .spec-row {
    flex-direction: column;
    gap: 5px;
  }
  
  .spec-value {
    text-align: left;
  }
}

/* ============================================
   CONTACT SECTION CSS
   ============================================ */

.contact-section {
  text-align: center;
  padding: 80px 0;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.dark .contact-section h2 {
  color: #fff;
}

.contact-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dark .contact-section p {
  color: #aaa;
}

.contact-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 500px;
}

.contact-icon-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-icon-link:hover {
  transform: translateY(-5px);
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  min-width: 150px;
}

.dark .contact-icon {
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-icon-link:hover .contact-icon {
  box-shadow: 0 15px 40px rgba(14,188,156,0.2);
  border: 2px solid #0EBC9C;
}

.contact-icon svg {
  color: #0EBC9C;
  transition: transform 0.3s ease;
}

.contact-icon-link:hover .contact-icon svg {
  transform: scale(1.1);
}

.contact-icon span {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.dark .contact-icon span {
  color: #fff;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .contact-content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .contact-icons {
    flex-direction: row;
    gap: 20px;
  }
  
  .contact-form-wrapper {
    max-width: 100%;
    width: 100%;
  }
  
  .contact-icon {
    padding: 25px 30px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .contact-content-wrapper {
    gap: 30px;
  }
  
  .contact-icons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-icon {
    width: 200px;
  }
}
