:root {
  --dark-1: #0b3d2e;
  --dark-2: #145a32;
  --accent: #a7c957;
}

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: white;
      -webkit-font-smoothing:antialiased;
    }
    
    /* Top Header */
    .top-header {
      background: var(--dark-1);
      color: #fff;
      padding: 8px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    .top-header a {
      color: #fff;
      margin-right: 15px;
      text-decoration: none;
      transition: color 0.3s;
    }
    .top-header a:hover {
      color: var(--accent);
    }


    /* Main Header */
    .main-header {
      background: var(--dark-2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: top 0.4s;
    }
    
    
    .logo img {
        width: 120px; /* increase from 70px */
        height: auto;
        display: block;
        }


    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 6px;
      align-items:center;
    }
    nav ul li { position: relative; }
    nav ul li a {
      color: #fff;
      padding: 10px 18px;
      text-decoration: none;
      display: block;
      font-weight: 500;
      transition: background 0.3s;
    }
    nav ul li a:hover {
      background: #42b072;
      border-radius: 6px;
    }

    /* Desktop Dropdown */
    nav ul li ul {
      display: none;
      position: absolute;
      background: var(--dark-2);
      top: 40px;
      left: 0;
      min-width: 250px;
      border-radius: 6px;
      padding: 5px 0;
      z-index: 101;
    }
    nav ul li:hover ul { display:block; }
    nav ul li ul li a {
      padding: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    nav ul li ul li a:hover { background:#42b072;
; }



       /* Hide Header on Scroll */
    .hide { top: -100px; }

    /* Mobile controls */
    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #fff;
      background: transparent;
      border: none;
      padding: 6px;
      line-height: 0;
    }

    /* Mobile menu (drawer) */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease;
      z-index: 998;
    }
    .menu-overlay.show { opacity: 1; visibility: visible; }

    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: 0;
      width: 60%;
      max-width: 420px; /* keeps it readable on large phones */
      height: 100vh;
      
      background: linear-gradient(145deg, #1e1e1ebb);
      backdrop-filter: blur(6px);
      padding: 18px;
      transform: translateX(100%);
      transition: transform 0.36s cubic-bezier(.2,.9,.2,1);
      z-index: 2000;
      overflow-y: auto;
    }
    .mobile-menu.show { transform: translateX(0); }

    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }
    .close-icon {
      font-size: 26px;
      cursor: pointer;
      color: #8f1010;
      background: transparent;
      border: none;
    }
    .mobile-nav-list { margin-top: 8px; padding: 0; list-style:none; }

    /* Mobile dropdown block */
    .mobile-dropdown {
      border-top: 1px solid rgba(255,255,255,0.03);
    }
    .mobile-nav-toggle {
      display:flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 10px;
      cursor: pointer;
      font-size: 15px;
      color: #02fa6e;
      text-decoration: none;
    }
    .mobile-nav-toggle .caret { transition: transform 0.25s ease; margin-left: 8px; }

    /* Submenu: initially collapsed (transparent background as requested) */
    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.32s ease;
      display: block;
      padding-left: 6px;
      background: transparent; /* fully transparent background */
    }
    .mobile-submenu a {
      display:block;
      padding: 10px 12px;
      text-decoration: none;
      color: #02fa6e; /* ensure good contrast */
      
      font-size: 14px;
      border-left: 3px solid transparent;
    }
    .mobile-submenu a:hover { background: #31f686; }

    /* When open, rotate caret */
    .mobile-dropdown.open .caret { transform: rotate(180deg); }

    /* Prevent body scroll when mobile menu is open */
    body.no-scroll { overflow: hidden; }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      nav { display: none; }   /* hide desktop nav on small screens */
      .menu-icon { display: block; } /* show hamburger on mobile */
      .main-header { padding: 10px 16px; }
      .top-header { padding: 6px 12px; font-size: 13px; }
    }

    /* Desktop tweaks for spacing */
    @media (min-width:769px) {
      .mobile-menu, .menu-overlay, .menu-icon { display: none; }
    }


.mobile-nav-toggle,
.mobile-nav-toggle span {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important; /* in case any browsers add default */
}

.trending-bar {
    background: linear-gradient(90deg, #1a1a1a, #2c2c2c);
    color: #fff;
    padding: 12px 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  .trending-title {
    flex-shrink: 0;
    font-weight: 600;
    color: #ffd700;
    white-space: nowrap;
  }

  .trending-marquee {
    position: relative;
    overflow: hidden;
    flex: 1;
  }

  .trending-content {
    display: inline-flex;
    align-items: center;
    gap: 45px;
    white-space: nowrap;
    animation: scroll-left 22s linear infinite;
  }

  .trending-content a {
    color: #ff4d4d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .trending-content a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* 📱 Responsive adjustments */
  @media (max-width: 768px) {
    .trending-bar {
      font-size: 14px;
      padding: 10px 12px;
    }

    .trending-content {
      gap: 30px;
      animation-duration: 18s;
    }
  }

  @media (max-width: 480px) {
    .trending-bar {
      flex-direction: column;
      align-items: flex-start;
    }

    .trending-marquee {
      width: 100%;
    }

    .trending-content {
      animation-duration: 16s;
    }
  }

 /* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  bottom: 110px;
  right: 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.45);
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transition: all .4s ease;
  z-index: 999;
}

#backToTop span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 2;
}

#backToTop svg {
  transform: rotate(-90deg);
}

#backToTop circle {
  fill: none;
  stroke: #00ffcc;
  stroke-width: 6;
  stroke-dasharray: 282;
  stroke-dashoffset: 282;
  transition: stroke-dashoffset .2s linear;
}

#backToTop:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0,0,0,.7);
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 25px rgba(37,211,102,.7);
}

.whatsapp-btn img {
  width: 34px;
  z-index: 2;
}

/* Wave ring */
.whatsapp-btn .wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wave 2s infinite;
  background: rgba(37,211,102,.4);
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.15) rotate(-8deg);
}

/* ================= ANIMATIONS ================= */
@keyframes wave {
  0% {transform: scale(1); opacity:.6;}
  100% {transform: scale(1.8); opacity:0;}
}

@keyframes float {
  0%,100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px) {
  #backToTop {
    width: 55px;
    height: 55px;
    bottom: 100px;
  }

  .whatsapp-btn {
    width: 58px;
    height: 58px;
  }
}

/* ===== Comparison Section ===== */
.cmp-section {
  padding: 40px 20px;
  background: #f6f9fc;
}

.cmp-container {
  max-width: 1200px;
  margin: auto;
}

.cmp-title {
  text-align: center;
  font-size: 34px;
  color: #0b3d2e;
  margin-bottom: 50px;
  position: relative;
}

.cmp-title span {
  display: block;
  width: 80px;
  height: 4px;
  background: #2bb673;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Table Wrapper for horizontal scroll on small screens */
.cmp-table-wrapper {
  overflow-x: auto;
}

/* Comparison Table */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #7ff597; /* Light green outer border */
}

/* Table Header & Cells */
.cmp-table th,
.cmp-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid #b7e4c7; /* Light green horizontal lines */
  font-size: 15px;
}

/* Header Styling */
.cmp-table th {
  background: #0b3d2e;
  color: #fff;
  font-weight: 600;
  border-right: 1px solid #b7e4c7; /* vertical border between headers */
}

/* Left column (Particulars) */
.cmp-table th:first-child,
.cmp-table td:first-child {
  text-align: left;
  font-weight: 600;
  background: #f9fbfd;
}

/* Vertical borders between cells */
.cmp-table td {
  border-right: 1px solid #b7e4c7;
}

/* Remove extra borders on last row/column */
.cmp-table tr:last-child td {
  border-bottom: none;
}

.cmp-table th:last-child,
.cmp-table td:last-child {
  border-right: none;
}

/* Hover Effect */
.cmp-table tr:hover {
  background: #f1faf6;
}

/* Highlighted column for Private Limited Company */
.highlight {
  background: #e7f8f1 !important;
  font-weight: 700;
  color: #0b3d2e;
}

/* Yes / No Indicators */
.yes {
  color: #2bb673;
  font-weight: 600;
}

.no {
  color: #d9534f;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .cmp-title {
    font-size: 26px;
  }

  .cmp-table th,
  .cmp-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
}


/* Make the first column header visible */
.cmp-table th:first-child {
  background: #f9fbfd; 
  color: #0b3d2e;     
  text-align: left;
  font-weight: 600;
}

.cmp-table th.highlight {
  background: #e7f8f1;
  color: #0b3d2e;      
  font-weight: 700;
}



/* ===== Documents Split Section ===== */
.docs-split {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f3fbf6, #e8f5ee);
  font-family: 'Poppins', sans-serif;
  
}

.docs-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  
}

/* LEFT SIDE */
.docs-left {
  flex: 1;
  background: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  border-left: 5px solid #a7c957;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.doc-card span {
  font-size: 28px;
}

.doc-card h4 {
  margin: 0;
  font-size: 18px;
  color: #145a32;
}

.doc-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

.doc-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-left-color: #145a32;
}

/* RIGHT SIDE */
.docs-right {
  flex: 1;
  background: url('interview-8467386_640.jpg') center/cover no-repeat;
  position: relative;
}

.docs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 46, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.docs-overlay h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.docs-overlay p {
  font-size: 18px;
  max-width: 380px;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .docs-container {
    flex-direction: column-reverse;
  }

  .docs-right {
    min-height: 280px;
  }

  .docs-overlay h2 {
    font-size: 30px;
  }

  .docs-left {
    padding: 35px 25px;
  }

  .doc-card:hover {
    transform: translateY(-5px);
  }
}



.step-chain-section {
  padding: 50px 20px;
  background: #f6faf7;
}

.step-chain-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.step-left {
  background: url("https://images.unsplash.com/photo-1521791055366-0d553872125f")
    center/cover no-repeat;
  position: relative;
  padding: 50px;
  display: flex;
  align-items: center;
}

.step-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 46, 0.75);
}

.step-left-overlay {
  position: relative;
  color: #fff;
}

.step-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.step-left p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 380px;
}

/* RIGHT SIDE */
.step-right {
  background: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

/* STEP CHAIN */
.chain-step {
  display: flex;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 2px solid #e4eae6;
  position: relative;
  transition: 0.4s;
}

.chain-step::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -26px;
  width: 2px;
  height: 26px;
  background: #d5ddd8;
}

.chain-step:last-child::after {
  display: none;
}

/* ACTIVE STEP */
.chain-step.active {
  border-color: #a7c957;
  box-shadow: 0 0 18px rgba(167, 201, 87, 0.45);
}

.step-no {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #a7c957;
  color: #0b3d2e;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chain-step h4 {
  margin: 0 0 5px;
  color: #145a32;
  font-size: 18px;
}

.chain-step p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .step-chain-container {
    grid-template-columns: 1fr;
  }

  .step-left {
    padding: 40px 25px;
  }

  .step-right {
    padding: 35px 25px;
  }

  .step-left h2 {
    font-size: 28px;
  }
}



/* ===== Eligibility Split Section ===== */
.eligibility-split {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f4fbf7, #e2f3ea);
  font-family: 'Poppins', sans-serif;
}

.eligibility-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* LEFT SIDE */
.eligibility-left {
  flex: 1;
  background: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Eligibility Card */
.eligibility-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 15px;
  background: #fff;
  border-left: 5px solid #b7dfc3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  animation: autoGlow 8s infinite;
  transition: all 0.35s ease;
}

.eligibility-card span {
  font-size: 30px;
  animation: floatIcon 3s ease-in-out infinite;
}

.eligibility-card h4 {
  margin: 0;
  font-size: 18px;
  color: #145a32;
}

.eligibility-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #444;
}

/* Hover Effect */
.eligibility-card:hover {
  transform: translateX(10px);
  border-left-color: #145a32;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

/* AUTO GLOW EFFECT */
@keyframes autoGlow {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(20, 90, 50, 0.12);
  }
}

/* Floating Icon */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* RIGHT SIDE */
.eligibility-right {
  flex: 1;
  background: url('businessman-9205819_640.png') center/cover no-repeat;
  position: relative;
}

/* Animated Overlay */
.eligibility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,46,0.85), rgba(20,90,50,0.9));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  animation: gradientMove 6s infinite alternate;
}

@keyframes gradientMove {
  from { background-position: left; }
  to { background-position: right; }
}

.eligibility-overlay h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.eligibility-overlay p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .eligibility-container {
    flex-direction: column-reverse;
  }

  .eligibility-right {
    min-height: 300px;
  }

  .eligibility-left {
    padding: 35px 25px;
  }

  .eligibility-overlay h2 {
    font-size: 30px;
  }

  .eligibility-card:hover {
    transform: translateY(-6px);
  }
}



/* ===== Conclusion Section ===== */
.bt-conclusion {
  padding: 10px 20px;
  background-color: white;   /* light grey */
}

.bt-conclusion-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Left Content */
.bt-conclusion-content {
  flex: 1;
}

.bt-conclusion-content h2 {
  font-size: 34px;
  color: #0b3d2e;
  margin-bottom: 18px;
}

.bt-conclusion-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Right Image */
.bt-conclusion-image {
  flex: 1;
  text-align: center;
}

.bt-conclusion-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bt-conclusion-container {
    flex-direction: column;
    text-align: center;
  }

  .bt-conclusion-content h2 {
    font-size: 28px;
  }

  .bt-conclusion-content p {
    font-size: 16px;
  }

  .bt-conclusion-image img {
    max-width: 100%;
    margin-top: 20px;
  }
}



/* ===== Section Base ===== */
.rs-section {
  padding: 20px 20px;
  background: #f4faf7;
  font-family: "Segoe UI", Arial, sans-serif;
}

.rs-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ===== Video Box ===== */
.rs-video-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rs-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Right Content ===== */
.rs-content {
  padding: 20px;
}

.rs-title {
  font-size: 34px;
  margin-bottom: 25px;
  color: #0b3d2e;
}

/* ===== Service List ===== */
.rs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-list li {
  margin-bottom: 15px;
}

.rs-list li a {
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #145a32;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.rs-list li a span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.rs-list li a:hover {
  background: #145a32;
  color: #ffffff;
  transform: translateX(6px);
}

.rs-list li a:hover span {
  transform: translateX(6px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .rs-container {
    grid-template-columns: 1fr;
  }

  .rs-title {
    text-align: center;
  }
}




/* ===============================
   WHY BIKRAMATAX SECTION
================================ */

.why-bikramatax {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f3fbf6, #eaf6ef);
  overflow: hidden;
  
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--dark-1);
  margin-bottom: 25px;
  margin-top: -50px;
}

.section-title span {
  color: var(--dark-2);
}

/* ===============================
   SCROLL CONTAINER
================================ */

.why-scroll {
  width: 100%;
  overflow: hidden;
}

/* Track */
.why-track {
  display: flex;
  gap: 28px;
  padding: 20px;
  width: max-content;
  will-change: transform;
}

/* ===============================
   CARD STYLE
================================ */

.why-card {
  flex-shrink: 0;
  width: 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.4s ease;
  opacity: 0.55;
  transform: scale(0.88);
}

/* Card Image */
.why-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

/* Card Text */
.why-card h3 {
  color: var(--dark-2);
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}

/* ===============================
   ACTIVE / CENTER CARD
================================ */

.why-card.active {
  transform: scale(1.08);
  opacity: 1;
  box-shadow:
    0 25px 50px rgba(11, 61, 46, 0.25),
    0 0 0 2px rgba(167, 201, 87, 0.35);
}

/* ===============================
   DESKTOP
================================ */

@media (min-width: 1024px) {
  .why-card {
    width: 250px;
  }
}

/* ===============================
   TABLET & MOBILE
================================ */

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .why-track {
    gap: 14px;
    padding: 10px;
  }

  .why-card {
    width: 72vw;
    padding: 16px;
    border-radius: 14px;
    transform: scale(0.9);
    opacity: 0.6;
  }

  .why-card.active {
    transform: scale(0.98);
    opacity: 1;
  }

  .why-card img {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* ===============================
   SMALL MOBILE DEVICES
================================ */

@media (max-width: 480px) {
  .why-card {
    width: 68vw;
    padding: 14px;
  }

  .why-card img {
    height: 105px;
  }

  .why-card.active {
    transform: scale(0.95);
  }
}







.testimonials {
  background: #f9fafc;
  padding: 70px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  color: #1f2933;
  margin-bottom: 10px;
}

.testimonials .sub-text {
  color: #6b7280;
  margin-bottom: 40px;
  font-size: 16px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.testimonial-card .message {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 28px;
  }
}




.file-video-section {
  background: #f3fdf7;
  padding: 20px 20px;
}

.file-video-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.file-video-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.file-video-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 45px;
}

/* Grid layout */
.file-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.file-video-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.file-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.file-video-card h4 {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #065f46;
  font-weight: 600;
}

/* Frame effect */
.file-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #d1fae5;
  background: #000;
}

.file-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .file-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .file-video-grid {
    grid-template-columns: 1fr;
  }

  .file-video-title {
    font-size: 1.8rem;
  }
}



.faq-section {
  background-color: #f9f9f9; /* background color directly */
  padding: 40px 20px;
}

.faq-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-top: -20px;
}

.faq-content {
  flex: 1;
  min-width: 280px;
}

.faq-content h2 {
  font-size: 2.2rem;
  color:#177419 ;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #ffffff; /* FAQ background */
  border: 1px solid #a7c957; /* FAQ border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  color: #0b3d2e; /* text color */
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
  font-weight: 500;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: #0b3d2e;
}




/* FAQ Image */
.faq-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px; /* smaller min-width */
  margin: 20px; /* margin around image */
  margin-top: 90px;
}

.faq-image img {
  max-width: 90%; /* reduced from 100% to 80% */
  height: auto;
  border-radius: 15px; 
  border: 3px solid #a7c957; 
  object-fit: contain; /* ensures image scales nicely */
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }
  .faq-image img {
    max-width: 90%; /* smaller on mobile */
  }
  .faq-image {
    margin-top: 0px;
    margin-bottom: 0 ;
  }
  
}

@media (max-width: 480px) {
  .faq-image img {
    max-width: 90%; /* slightly larger on very small screens for visibility */
  }
  .faq-image {
    margin-top: 0px;
    margin-bottom: 0;
  }
}

/* ===== Footer Base ===== */
footer {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #ecfdf5;
  background-color: #0b3d2e;
}

/* ===== Upper Footer with Background Image ===== */
.footer-upper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 40px;

  background: url("v915-techi-034-l.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Strong green overlay for readability */
.footer-upper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 61, 46, 0.88),
    rgba(20, 90, 50, 0.88)
  );
  z-index: 0;
}

/* Bring content above overlay */
.footer-upper > * {
  position: relative;
  z-index: 1;
}

/* Logo */
.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
}

/* ===== Headings ===== */
.footer-upper h3 {
  font-size: 19px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #f0fdf4;
  letter-spacing: 0.4px;
  position: relative;
}

.footer-upper h3::after {
  content: "";
  width: 44px;
  height: 3px;
  background: #a7f3d0;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

/* ===== Lists ===== */
.footer-upper ul {
  list-style: none;
  padding: 0;
}

.footer-upper ul li {
  margin: 12px 0;
}

/* Links */
.footer-upper ul li a {
  color: #d1fae5;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Icons */
.footer-upper ul li a i {
  margin-right: 10px;
  color: #facc15;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover */
.footer-upper ul li a:hover {
  color: #86efac;
  transform: translateX(6px);
}

.footer-upper ul li a:hover i {
  color: #4ade80;
  transform: rotate(-6deg);
}

/* ===== Contact Info ===== */
.contact-info p {
  margin: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: #ecfdf5;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 12px;
  color: #facc15;
  font-size: 16px;
}

/* ===== Lower Footer ===== */
.footer-lower {
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #b7e4c7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-upper {
    padding: 40px 20px;
    text-align: center;
    background-position: center;
  }

  .footer-upper h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info p {
    justify-content: center;
  }
}



/* ===== Social Icons (Upper Footer Center) ===== */
.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ecfdf5;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Hover effects */
.social-icons a:hover {
  transform: translateY(-6px) scale(1.08);
}

/* Brand colors on hover */
.social-icons a.instagram:hover {
  background: #e1306c;
}

.social-icons a.facebook:hover {
  background: #1877f2;
}

.social-icons a.youtube:hover {
  background: #ff0000;
}

