  :root {
      --light-bg: #ffffff;
      --light-text: #1f1f1f;
      --light-accent: #000000;

      --dark-bg: #000000;
      --dark-text: #f5f5f5;
      --dark-accent: #6366f1;
      
        --bg-color: var(--light-bg);
  --text-color: var(--light-text);
  --card-bg: #f8f8f8;
    }                                                                                                               
body.dark-mode {
  --bg-color: var(--dark-bg);
  --text-color: var(--dark-text);
  --card-bg: #111;
}
    
    body {
      margin: 0;
      font-family: 'Outfit', sans-serif;
      transition: background 0.3s, color 0.3s;
  padding: 0;
  overflow-x: hidden;
}


    

    .light {
      background-color: var(--light-bg);
      color: var(--light-text);
    }

    .dark {
      background-color: var(--dark-bg);
      color: var(--dark-text);
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      max-width: 1200px;
      margin: auto;
      position: relative;
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
    }

   
    nav ul {
      list-style: none;
      display: flex;
      gap: 2.5rem;
      padding: 0;
      margin: 0;
      align-items: center;
    }

    nav a {
      text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase; /* optional: makes all links UPPERCASE */
  font-style: normal; /* can be italic, normal, or oblique */
  font-family: 'Outfit', sans-serif; /* or any other font */
  letter-spacing: 0.05em;
    }

    .toggle-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
    }
    .menu-toggle {
  display: none; /* Hide hamburger by default on desktop */
}

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 4rem 2rem;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin-bottom: 2rem;
    }




    .cta-btn {
      background-color: var(--light-accent);
      border: none;
      padding: 1rem 2rem;
      color: white;
      font-weight: bold;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
    }

    .dark .cta-btn {
      background-color: var(--dark-accent);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      padding: 3rem 2rem;
      max-width: 1215.9px;
      margin: auto;
    }

    .feature {
      text-align: center;
    }

    .feature img {
      max-width: 100%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .feature h3 {
      margin-bottom: 0.5rem;
    }

    footer {
      padding: 2rem;
      text-align: center;
      border-top: 1px solid #ccc;
      margin-top: 4rem;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
      }

      nav ul.show {
        display: flex;
      }

      .menu-toggle {
        font-size: 1.5rem;
        cursor: pointer;
        display: inline-block;
      }
    }
    .about {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.dark .about {
  background-color: #1a1a1a;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.intro-video {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin: 0 auto;
}

.intro-video video {
  width: 100%;
  height: auto;
  display: block;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 80px 10%;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.5s, color 0.5s;
}
.dark .features {
  background-color: #1a1a1a;
}
.feature {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgb(121, 118, 118);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  opacity: 0.8;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgb(0, 0, 0);
}


/* Animation directions */
.feature.left {
  transform: translateX(-100px);
}

.feature.top {
  transform: translateY(-100px);
}

.feature.bottom {
  transform: translateY(100px);
}


.feature.right {
  transform: translateX(100px);
}

/* When feature is visible */
.feature.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}


footer .social-icons {
  margin-bottom: 1rem;
}

footer .social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

footer .social-icons img {
  width: 32px;
  height: 32px;
}

footer .social-icons a:hover {
  transform: scale(1.2);
}

.logo img {
  height: 150px; /* Adjust size as needed */
  width: auto;
  vertical-align: middle;
}

.image-slider {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  padding: 20px 10;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 70s linear infinite;
}

.slider-track img {
  width: auto;
  height: 300px; /* Adjust height as needed */
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Animation keyframes */
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-down {
  animation: slideFromTop 1s ease-out forwards;
  opacity: 0;
}

.slide-down.delay {
  animation-delay: 0.1s;
}


/* Carousel container with buttons */
.carousel-container {
  position: relative;
  margin: 2rem 0;
}

.carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
}
.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
}

.service-card {
  flex: 0 0 250px;
  background-color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: center;
}
.dark .service-card {
  background-color: #2a2a2a;
}
.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}
.dark .service-card p {
  color: #ccc;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(77, 101, 255, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: opacity 0.3s;
}
.left-btn {
  left: 0.5rem;
}
.right-btn {
  right: 0.5rem;
}
.carousel-btn:hover {
  background-color: rgba(77, 101, 255, 1);
}

/* Hide buttons on small screens */
@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

.services-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.highlight {
  color: #5de24c;
}

.arsenal-text {
  color: black; /* or any color you want for "Your Arsenal" */
}

/* Fullscreen video just below the header */



/* Fullscreen background video section */
.intro-video-full {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
  margin: 0;
  z-index: 0;
}

/* Properly sized video (full screen, centered, no cropping) */
.intro-video-full video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover; /* fills screen cleanly */
  z-index: -1;
}

/* Navbar overlay on top of the video */
.navbar {
  position: absolute;
  top: 0;
  left:0%;
  right:0%;
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.navbar a,
.navbar button {
  color: rgb(0, 0, 0);
}

/* 🌐 Responsive adjustments for tablets and phones */

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
  header.navbar {
    padding: 1rem;
  }

  .logo img {
    height: 100px;
  }

  nav ul {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .intro-video-full {
    height: 80vh;
  }
}

/* Phones */
@media (max-width: 768px) {
  /* Navbar */
  header.navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.8rem 1rem;
  }

  .logo img {
    height: 80px;
  }

  /* Menu toggle visible */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* Hide default nav links */
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
    z-index: 99;
  }

  body.dark nav ul {
    background-color: rgba(20, 20, 20, 0.95);
  }

  nav ul.show {
    display: flex;
  }

  nav a {
    font-size: 1rem;
  }

  /* Hero section */
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

 

  /* Carousel adjustments */
  .carousel-container {
    margin: 1rem 0;
  }

  .service-card {
    flex: 0 0 80%;
    margin: 0 auto;
  }

  .carousel-btn {
    display: none;
  }

  /* Video sections fit screen width */
  .intro-video-full video,
  .intro-video video {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  /* Slider images smaller */
  .slider-track img {
    height: 200px;
  }

  footer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .logo img {
    height: 60px;
  }
}


    /* ====== GLOW SECTIONS ====== */
    section.glow-section {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: linear-gradient(
        120deg,
        rgba(220, 255, 220, 0.9),
        rgba(190, 255, 210, 0.9),
        rgba(210, 255, 230, 0.9)
      );
      background-size: 300% 300%;
      animation: softGlowMove 10s ease-in-out infinite;
      padding: 100px 60px;
      box-sizing: border-box;
      z-index: 1;
    }

    @keyframes softGlowMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ====== SPARKLE PARTICLE EFFECT ====== */
    .sparkle-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      background-color: rgba(0, 60, 0, 0.7);
      border-radius: 50%;
      opacity: 0.8;
      will-change: transform, opacity;
    }

    @keyframes dotDrift {
      0%   { transform: translate(0,0) scale(1); opacity: 0.7; }
      25%  { transform: translate(-40px, -30px) scale(1.2); opacity: 0.9; }
      50%  { transform: translate(30px, 50px) scale(1); opacity: 0.6; }
      75%  { transform: translate(-20px, 40px) scale(1.1); opacity: 0.8; }
      100% { transform: translate(0,0) scale(1); opacity: 0.7; }
    }

    /* ====== HEADINGS ====== */
    .big-heading, .industries-heading {
      text-align: center;
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 60px;
      color: #004d26;
      position: relative;
      z-index: 2;
    }

    .sparkle-text {
      color: #00b050;
      text-shadow: 0 0 10px rgba(0, 255, 100, 0.4);
    }

    /* ====== STATS GRID ====== */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 40px 25px;
      text-align: center;
      transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .stat-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 20px rgba(0, 150, 100, 0.3);
    }

    .stat-card h3 {
      font-size: 2.2rem;
      color: #008f4c;
      margin-bottom: 10px;
    }

    .stat-card p {
      font-size: 1.1rem;
      color: #333;
    }

    /* ====== INDUSTRIES GRID ====== */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .industry-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 15px;
      padding: 35px 20px;
      text-align: center;
      color: #004d26;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .industry-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-card:hover,.industry-card:hover {
      transform: translateY(-8px);
      background: rgba(230, 255, 230, 0.95);
      box-shadow: 0 4px 15px rgb(3, 247, 31);
    }

    .industry-card h3 {
      font-size: 1.4rem;
      color: #00a85a;
      margin-bottom: 10px;
    }

    .industry-card p {
      font-size: 1rem;
      color: #333;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .big-heading, .industries-heading {
        font-size: 2.2rem;
      }
      section.glow-section {
        padding: 60px 25px;
      }
    }
  
.cta-section.green-gradient {
    position: relative;
    overflow: hidden;
    height: 60vh;
    width: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(270deg, #001a00, #000000, #000000, #000000, #48fd00, #001a00);
    background-size: 1000% 1000%;
    animation: flowGreen 18s ease infinite;
  }

  @keyframes flowGreen {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  #particleCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .cta-content {
    max-width: 950px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.3s ease;
    z-index: 2;
    position: relative;
  }

  .cta-content.fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #adff2f, #9aff9a, #d4ffd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(173,255,47,0.15);
  }

  .cta-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #e2e2e2;
    margin-bottom: 45px;
  }

  .cta-content .highlight {
    display: block;
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 10px;
    color: #ccffcc;
  }

  .cta-btn {
    background: linear-gradient(90deg, #adff2f, #cfff87);
    color: #000;
    text-decoration: none;
    padding: 16px 46px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 0 20px rgba(173,255,47,0.4);
  }

  .cta-btn:hover {
    background: linear-gradient(90deg, #cfff87, #adff2f);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(173,255,47,0.6);
  }

  @media (max-width: 992px) {
    .cta-content h2 { font-size: 2.6rem; }
    .cta-content p { font-size: 1.1rem; }
  }

  @media (max-width: 600px) {
    .cta-section.green-gradient { height: 70vh; }
    .cta-content h2 { font-size: 2.1rem; }
    .cta-content p { font-size: 1rem; }
    .cta-btn { padding: 14px 32px; font-size: 1rem; }
  }

  /* ===== FAQ SECTION STYLING ===== */
  .faq-section {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
  }

  .faq-section .container {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }

  .faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
  }

  .faq-section .highlight {
    color: #ff6600;
  }

  .faq-section p {
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
  }

  .faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item h3 {
    font-size: 20px;
    color: #222;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-item span {
    font-size: 22px;
    color: #ff6600;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .faq-item p {
    margin-top: 10px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    display: none;
  }

  .faq-item.active p {
    display: block;
  }

  .faq-item.active span {
    transform: rotate(45deg);
  }

  /* ===== SCROLL ANIMATION ===== */
  .slide-down {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }

  .slide-down.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .delay {
    transition-delay: 0.2s;
  }

  @media (max-width: 768px) {
    .faq-section h2 {
      font-size: 28px;
    }
    .faq-section p {
      font-size: 16px;
    }
  }

  /* ===========================
   OUR ETHOS SECTION
=========================== */

/* Shared styles */

.glow-section {
  padding: 80px 20px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.glow-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ethos-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ethos-card {
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

/* ---------- Light Mode ---------- */
.light .glow-section {
  background: #ffffff;
  color: #111111;
}

.light .ethos-card {
  background: #f9f9f9;
  color: #222222;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.light .ethos-card:hover {
  box-shadow: 0 0 25px rgba(99,102,241,0.3);
  transform: translateY(-5px);
}

/* ---------- Dark Mode ---------- */
.dark .glow-section {
  background: #0e0e0e;
  color: #f5f5f5;
}

.dark .ethos-card {
  background: #1a1a1a;
  color: #eaeaea;
  box-shadow: 0 0 10px rgba(99,102,241,0.25);
}

.dark .ethos-card:hover {
  box-shadow: 0 0 25px rgba(99,102,241,0.6);
  transform: translateY(-5px);
}

.dark .glow-section h2 {
  color: #92f387;
  text-shadow: 0 0 10px rgba(0, 255, 81, 0.4);
}

/* ===========================
   WHY CHOOSE XOLT MEDIA
=========================== */

.why-choose-section {
  padding: 80px 20px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.why-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: left;
}

/* ---------- Light Mode ---------- */
.light .why-choose-section {
  background: #ffffff;
  color: #111111;
}

.light .why-card {
  background: #f9f9f9;
  color: #222222;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.light .why-card:hover {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
  transform: translateY(-5px);
}

/* ---------- Dark Mode ---------- */
.dark .why-choose-section {
  background: #0f0f0f;
  color: #f5f5f5;
}

.dark .why-card {
  background: #1a1a1a;
  color: #eaeaea;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
}

.dark .why-card:hover {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
  transform: translateY(-5px);
}

.dark .why-choose-section h2 {
  color: #92f387;
  text-shadow: 0 0 10px rgba(0, 255, 81, 0.4);
}

.contact-section {
  background: var(--light-bg);
  color: var(--light-text);
  padding: 100px 10%;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.dark .contact-section {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00ffaa, #00e1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.dark .section-subtitle {
  color: var(--dark-text);
  opacity: 0.7;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details .detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  opacity: 0.85;
}

.contact-details i {
  color: #00ffaa;
  font-size: 1.2rem;
}

.social-links {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center; /* ✅ Centers icons horizontally */
  align-items: center;     /* ✅ Vertically aligns them (optional but good) */
}

.social-links a {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* ensures round shape clips image */
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.social-links a:hover {
  transform: translateY(-5px);
  background: #00bfa6;
  box-shadow: 0 0 15px rgba(0,191,166,0.6);
}

/* ✅ ICON IMAGE ALWAYS VISIBLE & FILLS CIRCLE */
.social-links a img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill the circle perfectly */
  border-radius: 50%; /* keeps image circular */
  transition: 0.3s ease;
}

/* Optional: slightly zoom on hover */
.social-links a:hover img {
  transform: scale(1.1);
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.1);
  transition: background 0.3s ease;
}

.dark .contact-form {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.15);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 2px solid #00ffaa;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00e1ff;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(90deg, #00ffaa, #00e1ff);
  border: none;
  color: #000;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(0, 255, 170, 0.5);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form {
    padding: 30px 25px;
  }
}




  * {
  box-sizing: border-box;
  max-width: 100%;
}

  .contact-section, .why-choose-section, .glow-section {
  padding-right: clamp(1rem, 5vw, 5rem);
  padding-left: clamp(1rem, 5vw, 5rem);
  overflow-x: clip;
}



/* Default (Light mode): black links */
body.light .navbar a {
  color: #000000;
  transition: color 0.3s ease;
}

/* Dark mode: white links */
body.dark .navbar a {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Remove space above video */
body, html {
  margin: 0;
  padding: 0;
}

/* Video container fix */
.intro-video-container {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* prevents overflow */
}

/* Make video full width */
.intro-video-container video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

/* Mobile fix */
@media (max-width: 768px) {
  .intro-video-container {
    margin-top: 0 !important;  /* no gap */
  }
  .intro-video-container video {
    width: 100vw !important;   /* full width */
    height: auto !important;
    object-fit: cover;
  }
}





