*, *::before, *::after { box-sizing: border-box; }
    html { overflow-x: clip; }
    body { font-family: 'Inter', sans-serif; color: #111; background: #fff; overflow-x: clip; max-width: 100vw; }

    img { max-width: 100%; }

    /* ── Reveal on scroll ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
    .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
    .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
    .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
    .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

    /* ── Navbar ── */
    .logo-text { font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em; color: #111; }
    .nav-link { font-size: 0.8125rem; font-weight: 500; color: #333; transition: color 0.25s ease; position: relative; }
    .nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0%; height: 2px; background: #e8b800; transition: width 0.25s ease; }
    .nav-link:hover { color: #c9a000; }
    .nav-link:hover::after { width: 100%; }
    .nav-book { background: #111; color: #fff; font-weight: 600; font-size: 0.8125rem; padding: 0.45rem 1.15rem; border-radius: 999px; transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; display: inline-block; }
    .nav-book:hover { background: #333; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
    .active-link {
      color: #2e7d32;       /* green text */
      font-weight: 600;
    }

    /* optional: small green dot/underline under active link */
    .active-link::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background: #2e7d32;
      margin-top: 4px;
      border-radius: 2px;
    }
    /* ── Hero ── */
    .hero-heading { font-size: 3.25rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: #111; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; }
    .hero-para { font-size: 0.8125rem; line-height: 1.65; color: #6b7280; max-width: 240px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; animation-delay: 0.25s; }

    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }
    @keyframes scaleIn { to { opacity: 1; transform: scale(1); } }

    .hero-img-wrap { opacity: 0; transform: scale(0.97); animation: scaleIn 0.9s ease forwards; animation-delay: 0.15s; border-radius:18px; overflow:hidden; height:310px; transition: box-shadow 0.35s ease; }
    .hero-img-wrap:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
    .hero-img-wrap img { transition: transform 0.6s ease; }
    .hero-img-wrap:hover img { transform: scale(1.06); }

    .hero-badge-wrap { opacity: 0; animation: fadeIn 0.8s ease forwards; animation-delay: 0.4s; }
    .hero-avatars { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; animation-delay: 0.55s; }
    .hero-cta-row { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; animation-delay: 0.7s; }

    .avatar-pop { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
    .avatar-pop:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 6px 14px rgba(0,0,0,0.28); z-index: 10 !important; }

    /* ── Hero pill buttons ── */
    .hero-btn-primary { background: #2d6a2d; color: #fff; font-weight: 700; font-size: 0.8125rem; padding: 0.65rem 1.75rem; border-radius: 999px; display: inline-flex; align-items: center; transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; white-space: nowrap; }
    .hero-btn-primary:hover { background: #2d6a2d; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(232,184,0,0.45); }
    .hero-btn-outline { border: 1.5px solid #d1d5db; color: #111; font-weight: 600; font-size: 0.8125rem; padding: 0.65rem 1.75rem; border-radius: 999px; display: inline-flex; align-items: center; background: transparent; transition: all 0.25s ease; white-space: nowrap; }
    .hero-btn-outline:hover { border-color: #111; background: #111; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.25); }

    /* ── Stats ── */
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px;
    margin-top: 2.25rem;
    margin-left: 6rem;
    padding-top: 1.75rem;
    padding-bottom: 2rem;
    border-top: 1px solid #f0f0f0;
  }

  .stat-num { font-size: 2.25rem; font-weight: 800; color: #111; line-height: 1; letter-spacing: -0.02em; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
  .stat-label { font-size: 0.75rem; color: #9ca3af; font-weight: 500; margin-top: 4px; }
  .stat-item { cursor: default; transition: transform 0.25s ease; }
  .stat-item:hover { transform: translateY(-4px); }
  .stat-item:hover .stat-num { color: #2d6a2d; }

  @media (max-width: 900px) {
    .stats-grid {
      margin-left: 2rem;
      gap: 16px;
    }
  }

  @media (max-width: 600px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      gap: 24px 16px !important;
      padding: 1.5rem 1rem !important;
    }
    .stat-item { text-align: center; }
    .stat-num { font-size: 1.75rem; }
    .stat-label { font-size: 0.8rem; }
  }

    /* ── Generic section btn ── */
    .btn-primary { background: #2d6a2d; color: #f2f2f2; font-weight: 700; font-size: 0.8125rem; padding: 0.6rem 1.4rem; border-radius: 999px; transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; display: inline-block; }
    .btn-primary:hover { background: #2d6a2d; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(232,184,0,0.4); }
    .btn-outline { border: 1.5px solid #111; color: #111; font-weight: 600; font-size: 0.8125rem; padding: 0.55rem 1.4rem; border-radius: 8px; transition: all 0.25s ease; display: inline-block; background: transparent; }
    .btn-outline:hover { background: #111; color: #fff; transform: translateY(-3px); }

    /* ── Services ── */
    .tag-yellow { background: #2d6a2d; width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease, border-radius 0.4s ease; }
    .service-card { background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease; cursor: pointer; }
    /* .service-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.14); transform: translateY(-6px); }
    .service-card:hover .tag-yellow { transform: rotate(12deg) scale(1.1); border-radius: 50%; } */
    /* .service-card.active { background: #111; color: #fff; } */
    /* .service-card:not(.active):hover { background: #111; } */
    .service-card:not(.active):hover h3 { color: #fff; }
    .service-card:not(.active):hover p { color: #b3b3b3; }
    .service-card:not(.active) .w-8.h-8 { transition: background 0.35s ease; }
    .service-card:not(.active):hover .w-8.h-8 { background: #2d6a2d; }
    .learn-more { font-size: 0.75rem; font-weight: 600; color: #2d6a2d; letter-spacing: 0.04em; text-transform: uppercase; position: relative; transition: letter-spacing 0.25s ease; }
    .learn-more::after { content: ' →'; opacity: 0; transition: opacity 0.25s ease; }
    .service-card:hover .learn-more::after { opacity: 1; }

    /* nav arrow buttons */
    .nav-arrow { transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease; }
    .nav-arrow:hover { transform: scale(1.08); }

    /* ── About / Mission ── */
    .mission-card { background: #fff; border-radius: 10px; padding: 1.3rem 1.5rem; box-shadow: 0 2px 14px rgba(0,0,0,0.07); margin-bottom: 0.75rem; cursor: pointer; transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease; }
    .mission-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.13); transform: translateX(6px); }
    .mission-card:hover svg path { stroke: #2d6a2d !important; transition: stroke 0.3s ease; }
    .mission-card svg { transition: transform 0.3s ease; }
    .mission-card:hover svg { transform: translateX(4px); }
    .check-yellow { color: #2d6a2d; font-weight: 700; }

    .about-img-1, .about-img-2 { transition: transform 0.45s ease, box-shadow 0.45s ease; overflow: hidden; }
    .about-img-1:hover, .about-img-2:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.2); }
    .about-img-1 img, .about-img-2 img { transition: transform 0.6s ease; }
    .about-img-1:hover img, .about-img-2:hover img { transform: scale(1.08); }

    /* ── Projects ── */
    .project-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.35s ease, transform 0.35s ease; }
    .project-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.16); transform: translateY(-5px); }

    /* ── Testimonials ── */
    .testimonial-card { background: #fff; border-radius: 14px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: box-shadow 0.35s ease, transform 0.35s ease; }
    .testimonial-card:hover { box-shadow: 0 16px 38px rgba(0,0,0,0.14); transform: translateY(-6px); }
    .star { color: #2d6a2d; display: inline-block; transition: transform 0.2s ease; }
    .testimonial-card:hover .star { animation: starPulse 0.5s ease forwards; }
    .testimonial-card:hover .star:nth-child(1) { animation-delay: 0s; }
    .testimonial-card:hover .star:nth-child(2) { animation-delay: 0.05s; }
    .testimonial-card:hover .star:nth-child(3) { animation-delay: 0.1s; }
    .testimonial-card:hover .star:nth-child(4) { animation-delay: 0.15s; }
    .testimonial-card:hover .star:nth-child(5) { animation-delay: 0.2s; }
    @keyframes starPulse { 0% { transform: scale(1); } 50% { transform: scale(1.35) rotate(10deg); } 100% { transform: scale(1); } }

    /* ── Blog ── */
    .blog-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: box-shadow 0.35s ease, transform 0.35s ease; }
    .blog-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.15); transform: translateY(-6px); }

    /* ── Partners ── */
    .partner-logo { filter: grayscale(100%); opacity: 0.45; transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease; }
    .partner-logo:hover { opacity: 1; filter: none; transform: scale(1.06); }

    /* ── Quality play btn ── */
    .play-btn { background: #2d6a2d; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 0 0 rgba(232,184,0,0.5); animation: pulseRing 2.5s infinite; }
    .play-btn:hover { transform: scale(1.15); }
    @keyframes pulseRing {
      0% { box-shadow: 0 0 0 0 rgba(255, 255, 254, 0.45); }
      70% { box-shadow: 0 0 0 16px rgba(254, 254, 254, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    .quality-img-wrap { transition: transform 0.5s ease; overflow: hidden; }
    .quality-img-wrap img { transition: transform 0.6s ease; }
    .quality-img-wrap:hover img { transform: scale(1.07); }

    li.flex.items-center.gap-3 { transition: transform 0.25s ease; }
    li.flex.items-center.gap-3:hover { transform: translateX(6px); }
    li.flex.items-center.gap-3:hover .check-yellow { animation: checkBounce 0.4s ease; }
    @keyframes checkBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

    /* ── CTA section ── */
    .cta-box { transition: box-shadow 0.4s ease; }
    .cta-box:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
    .cta-box input { transition: border-color 0.25s ease, box-shadow 0.25s ease; }
    .cta-box input:focus { box-shadow: 0 0 0 3px rgba(232,184,0,0.25); }

    /* ── Footer ── */
    .footer-bg { background: #0d0d0d; }
    .footer-bg a { transition: color 0.25s ease, transform 0.2s ease; display: inline-block; }
    .footer-bg li a:hover { transform: translateX(4px); }
    .social-icon { transition: background 0.3s ease, transform 0.3s ease; }
    .social-icon:hover { transform: translateY(-4px) rotate(8deg); }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #f5f5f5; }
    ::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

    /* avatar */
    @keyframes popIn {
    from { opacity: 0; transform: scale(0.3) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .avatar-pop {
    opacity: 0;
    animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .avatar-pop:nth-child(1) { animation-delay: 0.8s; }
    .avatar-pop:nth-child(2) { animation-delay: 0.92s; }
    .avatar-pop:nth-child(3) { animation-delay: 1.04s; }
    .avatar-pop:nth-child(4) { animation-delay: 1.16s; }
    .avatar-pop:nth-child(5) { animation-delay: 1.28s; }

    .avatar-pop:hover {
    transform: scale(1.15) translateY(-4px);
    transition: transform 0.25s ease;
    z-index: 10 !important;
    }

    /* stats card  */
    @keyframes statFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
    }
    .stat-item {
    opacity: 0;
    animation: statFadeUp 0.6s ease forwards;
    }
    .stat-item:nth-child(1) { animation-delay: 0.1s; }
    .stat-item:nth-child(2) { animation-delay: 0.25s; }
    .stat-item:nth-child(3) { animation-delay: 0.4s; }
    .stat-item:nth-child(4) { animation-delay: 0.55s; }

    .stat-item:hover .stat-num {
    transform: scale(1.08);
    transition: transform 0.25s ease;
    }
    .stat-num {
    display: inline-block;
    transition: transform 0.25s ease;
    }
   

    /* service card */

.services-viewport {
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease;
}

.service-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  background: #fff;
  border: 1px solid #ececec;
  padding: 1.75rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.service-card .learn-more,
.service-card h3,
.service-card p {
  transition: color 0.3s ease;
}

.service-card:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card:hover p {
  color: #9ca3af;
}

.service-card:hover .learn-more {
  color: #fff;
}

.service-card .icon-box {
  background: #f3f4f6;
  transition: background 0.3s ease;
}

.service-card:hover .icon-box svg path,
.service-card:hover .icon-box rect {
  stroke: #1a1a1a;
  fill: #1a1a1a;
}

.nav-arrow.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .service-card {
    flex: 0 0 100%;
  }
}



/* ============ MOBILE RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1024px) {
  .max-w-6xl { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* About section */
  section .grid.grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .relative.h-96 { height: auto; min-height: 320px; }

  /* Featured projects */
  .project-card.grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .project-card.grid.grid-cols-2 img { height: 260px; }

  /* Testimonials & blog */
  .grid.grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Footer */
  footer .grid.grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* CTA box */
  .cta-box {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1.5rem;
  }
  .cta-box .flex.items-center.gap-3 {
    width: 100%;
    flex-wrap: wrap;
  }
  .cta-box input { width: 100%; flex: 1 1 auto; min-width: 0; }
}

/* Mobile / tablet shared */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .hero-img-wrap {
    height: 220px;
    border-radius: 12px;
  }

  .hero-right {
    padding-top: 1rem !important;
  }

  .hero-badge-wrap {
    justify-content: flex-start !important;
    margin: 0 0 1.25rem 0 !important;
  }

  .hero-badge-wrap > div,
  .hero-badge-wrap svg {
    width: 70px !important;
    height: 70px !important;
  }

  .hero-badge-wrap text {
    font-size: 7px !important;
  }

  .hero-para { max-width: 100%; }

  /* Stats row */
.stats-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem !important;
}
.stat-num { font-size: 1.75rem; }

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stat-item {
    text-align: center;
  }
}

  /* Navbar */
  nav .max-w-6xl {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  nav .hidden.md\:flex {
    display: none !important;
  }

  /* Section headers with side-by-side title + button/arrows */
  .flex.justify-between.items-start.mb-10,
  .flex.justify-between.items-start.mb-4,
  .flex.justify-between.items-center.mb-8 {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  h2.text-3xl { font-size: 1.6rem !important; }

  /* About images */
  .about-img-1 {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
  }
  .about-img-2 {
    position: relative !important;
    width: 60% !important;
    height: 160px !important;
    margin-top: -2rem;
    margin-left: auto;
  }
  .relative.h-96 {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  /* Quality section */
  .py-16.bg-gray-50 .grid-cols-2.gap-12 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .quality-img-wrap { height: 220px !important; }

  /* Testimonials & blog -> 1 col */
  .grid.grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  /* Footer -> 1 col */
  footer .grid.grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 2.25rem;
  }

  footer .border-t.pt-6.flex.items-center.justify-between {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Partner logos */
  .partner-logo { font-size: 0.75rem !important; }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-badge-wrap > div {
    width: 80px !important;
    height: 80px !important;
  }
  .hero-badge-wrap svg[viewBox="0 0 106 106"] {
    width: 80px !important;
    height: 80px !important;
  }

  .hero-heading { font-size: 1.75rem !important; }

  .project-card.grid.grid-cols-2 img { height: 200px; }

  .cta-box { padding: 1.5rem !important; }
  .cta-box h2 { font-size: 1.5rem !important; }
}


/*accordan*/

  .acc-item.open .acc-icon { transform: rotate(90deg); }
  .acc-item.open .acc-icon path { stroke: #2d6a2d; }


/* company carousal*/

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;   /* GPU layer — no jank */
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;    /* must match gap exactly */
  flex-shrink: 0;
  white-space: nowrap;
}

  .logo-text { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: #1a1a1a; }
  .nav-link { font-size: 14px; color: #555; text-decoration: none; transition: color 0.15s; }
  .nav-link:hover { color: #2d6a2d; }
  .nav-book {
    background: #2d6a2d; color: #fff !important;
    padding: 8px 20px; border-radius: 999px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: background 0.15s;
  }
  .nav-book:hover { background: #235223; }

  /* Hamburger — shown only on mobile */
  .hamburger {
    display: none; background: none; border: none;
    cursor: pointer; padding: 4px; color: #333;
  }
  @media (max-width: 767px) {
    .hamburger { display: flex; align-items: center; }
    .desktop-nav, .desktop-cta { display: none !important; }
  }

  /* Overlay */
  .sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.35); z-index: 100;
  }

  /* Sidebar panel */
  .sidebar {
    position: fixed; top: 0; right: -280px;
    width: 260px; height: 100vh; background: #fff;
    z-index: 101; box-shadow: -4px 0 24px rgba(0,0,0,0.10);
    transition: right 0.28s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
  }
  .sidebar-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 0.5px solid #eee;
  }
  .sidebar-links { display: flex; flex-direction: column; padding: 10px 0; flex: 1; }
  .sidebar-link {
    font-size: 15px; color: #222; text-decoration: none;
    padding: 13px 24px; border-left: 3px solid transparent;
    transition: background 0.13s, border-color 0.13s, color 0.13s;
  }
  .sidebar-link:hover { background: #f4faf4; color: #2d6a2d; border-left-color: #2d6a2d; }
  .sidebar-link.active { font-weight: 600; color: #2d6a2d; border-left-color: #2d6a2d; background: #f0f7f0; }
  .sidebar-footer { padding: 18px 24px; border-top: 0.5px solid #eee; }
  .sidebar-book {
    display: block; background: #2d6a2d; color: #fff;
    text-align: center; padding: 12px; border-radius: 999px;
    font-size: 15px; font-weight: 600; text-decoration: none;
  }
  .close-btn { background: none; border: none; cursor: pointer; color: #555; padding: 4px; }

  /* Open state */
  .sidebar-open .sidebar { right: 0; }
  .sidebar-open .sidebar-overlay { display: block; }


  /*about page*/

   /* Team cards */
    .team-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: box-shadow 0.35s ease, transform 0.35s ease; }
    .team-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.15); transform: translateY(-6px); }
    .team-card:hover .team-img { transform: scale(1.06); }
    .team-img { transition: transform 0.6s ease; }

    /* Value cards */
    .value-card { background: #fff; border: 1px solid #ececec; border-radius: 14px; padding: 1.75rem; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
    .value-card:hover { background: #1a1a1a; border-color: #1a1a1a; transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.14); }
    .value-card:hover h3 { color: #fff; }
    .value-card:hover p { color: #9ca3af; }
    .value-card:hover .icon-box { background: #2d6a2d; }
    .icon-box { background: #f3f4f6; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background 0.3s ease; }
    .value-card h3, .value-card p { transition: color 0.3s ease; }

    /* Timeline */
    .timeline-dot { width: 12px; height: 12px; background: #2d6a2d; border-radius: 50%; flex-shrink: 0; margin-top: 4px; box-shadow: 0 0 0 4px rgba(45,106,45,0.15); }
    .timeline-line { width: 2px; background: #e5e7eb; flex: 1; min-height: 32px; margin-left: 5px; }

    /* Mission card */
    .mission-pill { background: #f0f7f0; color: #2d6a2d; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em; }

    /* Check marks */
    .check-green { color: #2d6a2d; font-weight: 700; }

    /* About hero */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes scaleIn { to { opacity: 1; transform: scale(1); } }
    .hero-heading { font-size: 3.25rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: #111; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; }
    .hero-sub { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; animation-delay: 0.2s; }
    .hero-btns { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; animation-delay: 0.4s; }
    .hero-img-wrap { opacity: 0; transform: scale(0.97); animation: scaleIn 0.9s ease forwards; animation-delay: 0.15s; border-radius: 18px; overflow: hidden; transition: box-shadow 0.35s ease; }
    .hero-img-wrap:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
    .hero-img-wrap img { transition: transform 0.6s ease; }
    .hero-img-wrap:hover img { transform: scale(1.05); }


    /*service card section*/
/*service card section*/
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f8f9f6;
      color: #111;
    }
 
    /* ── Section ── */
    .svc-section {
      padding: 5rem 1.5rem;
    }
 
    /* ── Header ── */
    .svc-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .svc-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f0f7f0;
      border-radius: 999px;
      padding: 0.3rem 0.9rem;
      margin-bottom: 1rem;
    }
    .svc-badge .dot {
      width: 7px;
      height: 7px;
      background: #2d6a2d;
      border-radius: 50%;
      display: inline-block;
    }
    .svc-badge .label {
      font-size: 0.7rem;
      font-weight: 700;
      color: #2d6a2d;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .svc-title {
      font-size: 2rem;
      font-weight: 900;
      color: #111;
      letter-spacing: -0.02em;
      margin-bottom: 0.65rem;
    }
    .svc-sub {
      color: #6b7280;
      font-size: 0.875rem;
      max-width: 36rem;
      margin: 0 auto;
      line-height: 1.65;
    }
 
    /* ── Grid ── */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }
 
    /* ── Card ── */
    .svc-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .svc-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
      border-color: #c4dcc4;
    }
 
    /* ── Card image ── */
    .card-img-wrap {
      width: 100%;
      height: 280px;
      overflow: hidden;
    }
    .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .svc-card:hover .card-img-wrap img {
      transform: scale(1.07);
    }
 
    /* ── Card body ── */
    .card-body {
      padding: 1.5rem 1.5rem 1.3rem;
    }
    .icon-box {
      width: 40px;
      height: 40px;
      background: #f0f7f0;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .card-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #111;
      letter-spacing: -0.01em;
      margin-bottom: 0.45rem;
    }
    .card-desc {
      color: #6b7280;
      font-size: 0.80rem;
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .card-checks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1.2rem;
    }
    .card-checks li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.80rem;
      color: #6b7280;
    }
    .card-checks li .ck {
      color: #2d6a2d;
      font-weight: 700;
      font-size: 0.8rem;
    }
    .learn-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #2d6a2d;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
      transition: gap 0.2s ease;
    }
    .learn-btn:hover { gap: 10px; }
 
    /* ── Modal overlay ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }
    .modal-overlay.active {
      display: flex;
    }
 
    /* ── Modal box ── */
    .modal-box {
      background: #fff;
      border-radius: 22px;
      width: 100%;
      max-width: 640px;
      max-height: 90vh;
      overflow-y: auto;
      opacity: 0;
      transform: scale(0.93) translateY(24px);
      transition: opacity 0.32s ease, transform 0.32s ease;
      border: 1px solid #e8e8e8;
      scrollbar-width: none;
    }
    .modal-box::-webkit-scrollbar { display: none; }
    .modal-box.open {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
 
    .modal-img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }
 
    .modal-body {
      padding: 1.75rem 2rem 2rem;
    }
 
    .modal-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #f0f7f0;
      border-radius: 999px;
      padding: 0.28rem 0.8rem;
      margin-bottom: 0.85rem;
    }
    .modal-tag span {
      font-size: 0.68rem;
      font-weight: 700;
      color: #2d6a2d;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }
 
    .modal-title {
      font-size: 1.45rem;
      font-weight: 900;
      color: #111;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }
 
    .modal-desc {
      font-size: 0.83rem;
      color: #6b7280;
      line-height: 1.75;
      margin-bottom: 1.4rem;
    }
 
    .modal-sections {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
 
    .modal-sec {
      background: #f8f9f6;
      border-radius: 14px;
      padding: 1rem 1.1rem;
    }
    .modal-sec h4 {
      font-size: 0.75rem;
      font-weight: 800;
      color: #111;
      margin-bottom: 0.55rem;
      letter-spacing: -0.005em;
    }
    .modal-sec ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .modal-sec ul li {
      font-size: 0.73rem;
      color: #6b7280;
      display: flex;
      align-items: flex-start;
      gap: 6px;
      line-height: 1.5;
    }
    .modal-sec ul li::before {
      content: "✓";
      color: #2d6a2d;
      font-weight: 700;
      flex-shrink: 0;
      font-size: 0.73rem;
      margin-top: 1px;
    }
 
    .modal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #efefef;
      padding-top: 1.2rem;
    }
 
    .close-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid #ddd;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-size: 20px;
      line-height: 1;
      font-family: inherit;
      transition: background 0.18s ease, border-color 0.18s ease;
    }
    .close-btn:hover {
      background: #f3f4f6;
      border-color: #bbb;
    }
 
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #2d6a2d;
      color: #fff;
      border: none;
      border-radius: 11px;
      padding: 0.6rem 1.2rem;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: background 0.18s ease, transform 0.15s ease;
    }
    .cta-btn:hover {
      background: #225222;
      transform: translateY(-1px);
    }
    .cta-btn:active {
      transform: translateY(0);
    }
 
    /* ── Responsive ── */
    @media (max-width: 640px) {
      .svc-grid {
        grid-template-columns: 1fr;
      }
      .svc-title {
        font-size: 1.5rem;
      }
      .modal-sections {
        grid-template-columns: 1fr;
      }
      .modal-body {
        padding: 1.25rem 1.25rem 1.5rem;
      }
      .modal-img {
        height: 190px;
      }
      .modal-title {
        font-size: 1.2rem;
      }
    }
 
    @media (max-width: 400px) {
      .modal-footer {
        flex-direction: column-reverse;
        gap: 0.75rem;
        align-items: stretch;
      }
      .cta-btn {
        justify-content: center;
      }
      .close-btn {
        align-self: flex-end;
      }
    }

/* ════════════════════════════════════════
   MODAL IMAGE CAROUSEL
════════════════════════════════════════ */

.modal-carousel {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #0c1d0c;
  border-radius: 22px 22px 0 0;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-track.is-dragging {
  transition: none;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  opacity: 0.82;
  transition: opacity 0.5s ease, transform 6s ease;
}
.carousel-slide.is-active img {
  opacity: 1;
  transform: scale(1.015);
}

.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, rgba(8, 16, 8, 0) 42%, rgba(8, 16, 8, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-slide:hover .carousel-slide-overlay,
.carousel-slide.is-active .carousel-slide-overlay {
  opacity: 1;
}

.carousel-slide-caption-text {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.carousel-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.carousel-zoom-btn:hover {
  background: #2d6a2d;
  border-color: #2d6a2d;
  transform: translateY(-2px);
}
.carousel-zoom-btn:active {
  transform: translateY(0);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 20, 10, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover {
  background: #2d6a2d;
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.94);
}
.carousel-arrow-prev { left: 14px; }
.carousel-arrow-next { right: 14px; }

.carousel-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 20, 10, 0.48);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  z-index: 5;
  backdrop-filter: blur(4px);
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 5;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease, transform 0.2s ease;
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.78);
  transform: scale(1.15);
}
.carousel-dot.is-active {
  background: #6fcf6f;
  width: 20px;
  border-radius: 999px;
}

/* ════════════════════════════════════════
   FULLSCREEN LIGHTBOX
════════════════════════════════════════ */

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 10, 5, 0.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay.open { opacity: 1; }

.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.lightbox-overlay.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-arrow:hover {
  background: #2d6a2d;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-arrow svg { display: block; }
.lightbox-arrow-prev { left: 24px; }
.lightbox-arrow-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .modal-carousel { height: 190px; }
  .carousel-arrow { width: 32px; height: 32px; }
  .carousel-zoom-btn span { display: none; }
  .carousel-zoom-btn { padding: 0.5rem; }
  .lightbox-arrow { width: 38px; height: 38px; }
  .lightbox-close { width: 34px; height: 34px; top: 14px; right: 14px; font-size: 18px; }
  .lightbox-arrow-prev { left: 12px; }
  .lightbox-arrow-next { right: 12px; }
}