@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-blue: #10b981; /* Vibrant emerald green for highlights and active items */
  --primary-green: #15803d; /* Rich forest green for main branding and primary actions */
  --primary-orange: #f97316; /* Warm orange accent for sustainability leaf details */
  --dark: #07120a; /* Ultra-premium deep forest-black */
  --dark-accent: #0f2516; /* Premium forest-green dark accent */
  --light: #f4f9f5; /* Soft, organic green-tinted light background */
  --white: #ffffff;
  --text-dark: #111d15; /* Forest-black for high text contrast */
  --text-muted: #4b5c51; /* Muted forest-gray for supporting copy */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(21, 128, 61, 0.15);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(21, 128, 61, 0.05), 0 4px 6px -4px rgba(21, 128, 61, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(21, 128, 61, 0.08), 0 8px 10px -6px rgba(21, 128, 61, 0.08);
  --shadow-glow-blue: 0 0 25px rgba(16, 185, 129, 0.25);
  --shadow-glow-green: 0 0 25px rgba(21, 128, 61, 0.2);
  --shadow-glow-orange: 0 0 25px rgba(249, 115, 22, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}



.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(46, 204, 113, 0) 0%, 
    rgba(46, 204, 113, 0.6) 20%, 
    rgba(52, 152, 219, 0.6) 50%, 
    rgba(46, 204, 113, 0.6) 80%, 
    rgba(46, 204, 113, 0) 100%
  );
  margin: 0;
  border: none;
}

/* Header & Nav */
/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR — 3-column: Logo | Frosted-pill links | CTA + Hamburger
   ═══════════════════════════════════════════════════════════════════════ */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Nav Container ───────────────────────────────────────────────────── */
.nav-container {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(21, 128, 61, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1001;
}

/* Floating pill effect on scroll — desktop only */
@media (min-width: 769px) {
  header.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }
}

/* ── Nav Row ─────────────────────────────────────────────────────────── */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 16px;
}

/* ── Logo ────────────────────────────────────────────────────────────── */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}

.logo-container img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(21, 128, 61, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease;
}

.logo-container:hover img {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.2);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span { color: var(--primary-green); }

/* ── Center Pill ─────────────────────────────────────────────────────── */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.12);
  border-radius: 100px;
  padding: 5px;
}

.nav-pill a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.nav-pill a:hover {
  background: rgba(21, 128, 61, 0.08);
  color: var(--primary-green);
}

.nav-pill a.nav-active {
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(21, 128, 61, 0.3);
}

.nav-pill a:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* ── Right Side: CTA + Hamburger ─────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* ── Contact CTA Button ──────────────────────────────────────────────── */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #18a34a 100%);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-nav i {
  font-size: 0.78rem;
  transition: transform 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(21, 128, 61, 0.38);
  color: #fff !important;
}

.btn-nav:hover i { transform: translateX(3px); }

.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.6s ease;
}

.btn-nav:hover::before { transform: translateX(150%) skewX(-20deg); }

.btn-nav::after { display: none !important; }

.btn-nav:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
}

/* ── Hamburger Button ────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(21, 128, 61, 0.07);
  border: 1px solid rgba(21, 128, 61, 0.15);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.nav-toggle:hover { background: rgba(21, 128, 61, 0.12); }

/* Animate to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1049;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.active {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.nav-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
}

.nav-drawer.active::before {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
}

/* Slide-down panel from top */
.nav-drawer-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 28px 28px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.active .nav-drawer-inner {
  transform: translateY(0);
}

.nav-drawer-inner a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 14px;
  transition: all 0.2s ease;
  outline: none;
}

.nav-drawer-inner a:hover {
  background: rgba(21, 128, 61, 0.06);
  color: var(--primary-green);
}

.nav-drawer-inner a.nav-active {
  background: rgba(21, 128, 61, 0.08);
  color: var(--primary-green);
  font-weight: 700;
}

.nav-drawer-inner .btn-nav {
  margin-top: 12px;
  justify-content: center;
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 1rem;
}



/* Global Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Styles */
.section {
  padding: 100px 0;
}

/* ── Logo Watermark — appears in every section background ────────────── */
.section,
.pillars-section,
.vision,
.work-model,
.page-banner {
  position: relative;
  overflow: hidden;
}

/* Base watermark pseudo-element */
.section::after,
.pillars-section::after,
.vision::after,
.page-banner::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: url('assets/logo.jpeg') center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  /* default: bottom-right corner */
  right: -60px;
  bottom: -60px;
}

/* Alternate: even-index sections → bottom-left */
.pillars-section::after,
.standards-section::after,
.gallery::after,
.contact-section::after {
  right: auto;
  left: -60px;
  bottom: -60px;
}

/* Vision section: large centred watermark */
.vision::after {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  opacity: 0.04;
}

/* Page banner: top-right */
.page-banner::after {
  right: -40px;
  top: -40px;
  bottom: auto;
  opacity: 0.05;
  width: 300px;
  height: 300px;
}

/* Ensure all inner content renders above the watermark */
.section > .container,
.pillars-section > .container,
.vision > .container,
.work-model > .container,
.page-banner > .container {
  position: relative;
  z-index: 1;
}



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

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--dark), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), #22c55e);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(21, 128, 61, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-blue), #059669);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(11, 19, 41, 0.15);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-3px);
}

/* Hero Section */
/* Hero Section */
/* ── Active Nav Link ─────────────────────────────────────────────────── */
.nav-links a.nav-active:not(.btn-nav) {
  color: var(--primary-green);
  font-weight: 700;
}

.nav-links a.nav-active:not(.btn-nav)::after {
  width: 100% !important;
}

/* ── Inner Page Banner ───────────────────────────────────────────────── */
.page-banner {
  padding: 120px 0 60px;
  background: radial-gradient(circle at 20% 50%, rgba(21, 128, 61, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(2, 132, 199, 0.05) 0%, transparent 60%),
              var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 128, 61, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0 12px;
  color: var(--dark);
}

.page-banner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services home grid — limit to 3 columns */
.services-home {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
  .services-home {
    grid-template-columns: 1fr !important;
  }
  .page-banner {
    padding: 100px 0 40px;
  }
}

/* ── Hero Split Layout (Option A: Immersive Edge-to-Edge) ─────────────── */
.hero {
  padding: 0;
  background: #f8faf9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 128, 61, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 40%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  top: -100px;
  left: -50px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
  bottom: -50px;
  left: 200px;
  animation-delay: -6s;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

/* Split container — full viewport width, no padding */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Left: content panel */
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 7vw;
  position: relative;
  z-index: 3;
}

/* Right: full-bleed image panel */
.hero-split-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8faf9;
}

.hero-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Left-edge gradient — disabled, image shown fully */
.hero-image-overlay {
  display: none;
}

/* Pill badge pinned on image */
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 128, 61, 0.15);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.1); }
}

/* Hero typography */
.hero-title {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span.blue-text {
  background: linear-gradient(135deg, var(--primary-blue), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.green-text {
  background: linear-gradient(135deg, var(--primary-green), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 128, 61, 0.1);
}

.trust-stars {
  color: #ffc107;
  display: flex;
  gap: 4px;
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-text strong {
  color: var(--dark);
}

/* Responsive: Stack on tablet/mobile */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-content {
    padding: 120px 32px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-split-image {
    height: 55vw;
    min-height: 320px;
    max-height: 500px;
  }

  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      #f8faf9 0%,
      rgba(248, 250, 249, 0.2) 20%,
      transparent 60%
    );
  }

  .hero-badge {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .hero-split-content {
    padding: 100px 24px 48px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 8px 16px;
  }
}

/* Floating Widgets Base */
.floating-widget {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(7, 18, 10, 0.08), 
              0 1px 3px rgba(7, 18, 10, 0.03), 
              inset 0 1px 2px rgba(255, 255, 255, 0.5);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.floating-widget:hover {
  transform: scale(1.05) translateY(-5px) !important;
  background: var(--white);
  border-color: rgba(21, 128, 61, 0.2);
  box-shadow: 0 30px 60px rgba(7, 18, 10, 0.12),
              0 0 0 1px rgba(21, 128, 61, 0.05);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.widget-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.widget-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-blue);
}

.widget-icon.blue {
  background: rgba(21, 128, 61, 0.1);
  color: var(--primary-green);
}

.widget-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-orange);
}

.widget-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.2px;
}

/* Widget A: IoT Bins */
.widget-bin {
  width: 220px;
  top: 10%;
  left: -60px;
  animation: floatWidgetY 6s ease-in-out infinite alternate;
}

.bin-item {
  margin-bottom: 10px;
}

.bin-item:last-child {
  margin-bottom: 0;
}

.bin-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.fill-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(7, 18, 10, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
}

.fill-danger {
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.fill-success {
  background: linear-gradient(90deg, #10b981, #059669);
}

/* Widget B: Green Impact */
.widget-impact {
  width: 200px;
  bottom: 8%;
  right: -50px;
  animation: floatWidgetY 7s ease-in-out infinite alternate-reverse;
  animation-delay: -2s;
}

.widget-stats {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-circle {
  width: 50px;
  height: 50px;
}

.circular-chart {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(7, 18, 10, 0.05);
  stroke-width: 3;
}

.circle {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  animation: progressChart 2s ease-out forwards;
}

.percentage {
  fill: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-anchor: middle;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Widget C: Live Audit */
.widget-audit {
  width: 190px;
  bottom: -30px;
  left: 20px;
  animation: floatWidgetX 8s ease-in-out infinite alternate;
  animation-delay: -1s;
}

.audit-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.score-display {
  display: flex;
  align-items: baseline;
}

.score-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
}

.score-max {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Float Keyframe Animations */
@keyframes floatWidgetY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes floatWidgetX {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-10px) translateX(10px);
  }
}



/* Three Pillars Concept Section */
.pillars-section {
  padding: 80px 0;
  background: var(--white);
}

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

.pillar-card {
  background: var(--light);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: transform 0.4s ease;
  transform: scaleX(0);
}

.pillar-card.blue::before { background: var(--primary-blue); }
.pillar-card.green::before { background: var(--primary-green); }
.pillar-card.orange::before { background: var(--primary-orange); }

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  transform: translateY(-10px);
  background: var(--white);
}

.pillar-card.blue:hover { 
  box-shadow: 0 30px 60px rgba(16, 185, 129, 0.12); 
  border-color: rgba(16, 185, 129, 0.2);
}
.pillar-card.green:hover { 
  box-shadow: 0 30px 60px rgba(21, 128, 61, 0.12); 
  border-color: rgba(21, 128, 61, 0.2);
}
.pillar-card.orange:hover { 
  box-shadow: 0 30px 60px rgba(230, 126, 34, 0.12); 
  border-color: rgba(230, 126, 34, 0.2);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.pillar-icon i {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 1px dashed rgba(21, 128, 61, 0.2);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.pillar-card.blue .pillar-icon::after { border-color: rgba(16, 185, 129, 0.3); }
.pillar-card.green .pillar-icon::after { border-color: rgba(21, 128, 61, 0.3); }
.pillar-card.orange .pillar-icon::after { border-color: rgba(249, 115, 22, 0.3); }

.pillar-card.blue .pillar-icon { background: rgba(16, 185, 129, 0.08); color: var(--primary-blue); }
.pillar-card.green .pillar-icon { background: rgba(21, 128, 61, 0.08); color: var(--primary-green); }
.pillar-card.orange .pillar-icon { background: rgba(230, 126, 34, 0.08); color: var(--primary-orange); }

.pillar-card.blue:hover .pillar-icon { 
  background: var(--primary-blue); 
  color: var(--white); 
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.25);
}
.pillar-card.blue:hover .pillar-icon::after {
  inset: -8px;
  transform: rotate(45deg);
  opacity: 1;
}

.pillar-card.green:hover .pillar-icon { 
  background: var(--primary-green); 
  color: var(--white); 
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.25);
}
.pillar-card.green:hover .pillar-icon::after {
  inset: -8px;
  transform: rotate(45deg);
  opacity: 1;
}

.pillar-card.orange:hover .pillar-icon { 
  background: var(--primary-orange); 
  color: var(--white); 
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
}
.pillar-card.orange:hover .pillar-icon::after {
  inset: -8px;
  transform: rotate(45deg);
  opacity: 1;
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card .pillar-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About Section */
.about {
  background: var(--light);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-container {
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-image-container img {
  width: 100%;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.about-experience-badge p {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-future-highlight {
  background: rgba(2, 132, 199, 0.05);
  border-left: 4px solid var(--primary-blue);
  padding: 16px 24px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--dark-accent);
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.focus-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.focus-bullet i {
  color: var(--primary-green);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(21, 128, 61, 0.25));
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, var(--white) 0%, rgba(244, 249, 250, 0.4) 100%);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(21, 128, 61, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(21, 128, 61, 0.04));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card::after {
  content: '\f06c'; /* FontAwesome leaf icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: -24px;
  right: -24px;
  font-size: 6rem;
  color: rgba(21, 128, 61, 0.025);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: -1;
  transform: rotate(-15deg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  color: rgba(21, 128, 61, 0.06);
  transform: scale(1.15) rotate(15deg) translate(-5px, -5px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(21, 128, 61, 0.15), 0 0 0 1px rgba(21, 128, 61, 0.15);
  border-color: transparent;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(21, 128, 61, 0.06);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 6px 12px rgba(21, 128, 61, 0.04);
}

.service-card-icon i {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
  transition: all 0.4s ease;
}

.service-card-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px dashed rgba(21, 128, 61, 0.2);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 16px rgba(21, 128, 61, 0.25);
}

.service-card:hover .service-card-icon::after {
  inset: -6px;
  transform: rotate(5deg);
  opacity: 1;
  border-color: var(--primary-blue);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-green);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--text-dark);
}



/* Work Model */
.work-model {
  background: var(--light);
}

.workflow-container {
  margin-top: 60px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.workflow-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(21, 128, 61, 0.15);
  z-index: 1;
}

.workflow-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.workflow-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(21, 128, 61, 0.2);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.workflow-item:hover .workflow-number {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-green);
}

.workflow-item h4 {
  font-size: 1rem;
  font-weight: 700;
}

/* Vision */
.vision {
  position: relative;
  background: linear-gradient(rgba(7, 18, 10, 0.92), rgba(7, 18, 10, 0.92)), url('assets/clean-classroom.png') center/cover no-repeat fixed;
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid rgba(21, 128, 61, 0.1);
  border-bottom: 1px solid rgba(21, 128, 61, 0.1);
}

.vision h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.vision-text {
  font-size: 2rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.vision-text .typo-highlight {
  font-weight: 700;
  display: inline;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-text .typo-highlight.green-gradient {
  background-image: linear-gradient(135deg, #a3e635 0%, #10b981 100%);
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.vision-text .typo-highlight.blue-gradient {
  background-image: linear-gradient(135deg, #6ee7b7 0%, #2dd4bf 100%);
  text-shadow: 0 0 40px rgba(45, 212, 191, 0.15);
}

.vision-text .typo-badge {
  display: inline-block;
  padding: 2px 16px;
  border-radius: 50px;
  background: rgba(21, 128, 61, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
  font-weight: 700;
  letter-spacing: -0.2px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  font-size: 1.8rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .vision-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .vision-text .typo-badge {
    font-size: 1.3rem;
    padding: 2px 12px;
  }
}



/* Gallery Section */
.gallery {
  background: var(--white);
}

/* ── Premium Masonry Gallery ─────────────────────────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

/* Large featured card spans 2 rows */
.gallery-item--large {
  grid-row: 1 / 3;
}

/* Each gallery item */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #e8efe9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Dark overlay revealed on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 25, 14, 0.88) 0%,
    rgba(7, 25, 14, 0.4) 50%,
    rgba(7, 25, 14, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Category tag top-left */
.gallery-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Info block slides up from bottom */
.gallery-info {
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

@media (max-width: 580px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery-item--large {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Why Choose Us Section */
.why-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 20px;
  position: relative;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(21, 128, 61, 0.06);
  border-color: rgba(21, 128, 61, 0.15);
}

.why-card i {
  width: 54px;
  height: 54px;
  background: rgba(21, 128, 61, 0.06);
  color: var(--primary-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(21, 128, 61, 0.08);
}

.why-card:hover i {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25);
}

.why-card-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer Section */
footer {
  background: #050b14;
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ── Footer Logo Lockup ──────────────────────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  text-decoration: none;
}

.footer-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-logo-text span {
  color: var(--primary-green);
}

.footer-tagline {
  color: var(--primary-green);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 10px;
}


.footer-links h3, .footer-contact h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-green);
}

.footer-contact p {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact p a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: var(--primary-green);
}

.footer-contact p i {
  color: var(--primary-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-socials a i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.footer-socials a:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-accent));
  color: var(--white);
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: var(--primary-green);
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.info-header h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.info-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.info-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-blue);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.info-item:hover .info-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.info-text span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.info-text a, .info-text p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--primary-green);
}

.info-socials {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.info-socials > span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.info-socials .social-links {
  display: flex;
  gap: 12px;
}

.info-socials .social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-socials .social-links a i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.info-socials .social-links a:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.contact-form-card {
  background: var(--light);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-top: 10px;
}

/* Form Success Animation */
.form-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  animation: successFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: var(--primary-green);
  stroke-miterlimit: 10;
  animation: scaleCheckmark .3s ease-in-out .9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: var(--primary-green);
  fill: none;
  animation: strokeCircle .6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 4;
  stroke: var(--primary-green);
  animation: strokeCheck .3s cubic-bezier(0.16, 1, 0.3, 1) .8s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}



@keyframes scaleCheckmark {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.form-success-container h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.form-success-container p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 30px;
}

.btn-reset-form {
  padding: 12px 30px;
  font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .workflow-grid::before {
    display: none;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .contact-form-card {
    padding: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ── Mobile Nav: hide pill, show hamburger ── */
  .nav-pill { display: none; }

  .nav-toggle { display: flex; }

  /* Hide desktop CTA on very small screens, show in drawer only */
  .nav-right .btn-nav { display: none; }

  /* Tighten nav grid to 2-col on mobile */
  nav {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    height: 64px;
  }



  .section-title h2 {
    font-size: 2.1rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 30px;
  }
  .floating-widget {
    display: none;
  }
  .hero-image-wrapper {
    padding: 0;
    margin-top: 30px;
  }
  .hero-image-container {
    transform: none;
  }
  .hero-image-wrapper:hover .hero-image-container {
    transform: none;
  }

  /* Reduce watermark size on mobile */
  .section::after,
  .pillars-section::after,
  .vision::after,
  .page-banner::after {
    width: 200px;
    height: 200px;
    right: -30px;
    bottom: -30px;
  }

  .vision::after {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .about-experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
    max-width: 220px;
  }
}

/* Stats Strip Section */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-accent) 100%);
  padding: 40px 0;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, 
    rgba(46, 204, 113, 0) 0%, 
    rgba(46, 204, 113, 0.8) 20%, 
    rgba(52, 152, 219, 0.8) 50%, 
    rgba(46, 204, 113, 0.8) 80%, 
    rgba(46, 204, 113, 0) 100%
  ) 1;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 30%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Operational Standards Section */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.standard-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.standard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 204, 113, 0.3);
}

.standard-card:hover::before {
  opacity: 1;
}

.standard-icon {
  width: 60px;
  height: 60px;
  background: rgba(21, 128, 61, 0.08);
  color: var(--primary-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3), 0 6px 12px rgba(21, 128, 61, 0.04);
}

.standard-icon i {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
  transition: all 0.4s ease;
}

.standard-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 1px dashed rgba(21, 128, 61, 0.2);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.standard-card:hover .standard-icon {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 16px rgba(21, 128, 61, 0.25);
}

.standard-card:hover .standard-icon::after {
  inset: -6px;
  transform: rotate(5deg);
  opacity: 1;
}

.standard-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.standard-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light);
  padding-bottom: 100px;
  overflow: hidden;    /* clip marquee at section edges */
}

/* ── Marquee Wrapper ─────────────────────────────────────────────────── */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade-out edges left & right */
  -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%
  );
}

/* Pause when user hovers anywhere on the wrapper */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Marquee Track — the scrolling strip ─────────────────────────────── */
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeLeft 35s linear infinite;
}

.marquee-reverse .marquee-track {
  animation: marqueeRight 38s linear infinite;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Testimonial Card ────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  padding: 28px 26px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 320px;
  max-width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(21, 128, 61, 0.12);
  border-color: rgba(21, 128, 61, 0.2);
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
  filter: drop-shadow(0 1px 3px rgba(245, 158, 11, 0.4));
}

.testimonial-text {
  color: var(--dark);
  font-size: 0.93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.user-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(21,128,61,0.08), rgba(21,128,61,0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-green);
  border: 1px solid rgba(21, 128, 61, 0.15);
  flex-shrink: 0;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}



/* ── Team Section ────────────────────────────────────────────────────── */
.team-section {
  background: var(--white);
}

.team-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 16px;           /* room for scrollbar */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar visually but keep it functional */
  scrollbar-width: thin;
  scrollbar-color: rgba(21,128,61,0.25) transparent;
}

.team-grid::-webkit-scrollbar {
  height: 4px;
}
.team-grid::-webkit-scrollbar-track { background: transparent; }
.team-grid::-webkit-scrollbar-thumb {
  background: rgba(21,128,61,0.25);
  border-radius: 4px;
}

/* ── Team Card ───────────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  /* Fixed comfortable width — never thin */
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(21, 128, 61, 0.18);
}

/* Founder card — premium green accent */
.team-card--founder {
  border: 2px solid rgba(21, 128, 61, 0.25);
  background: linear-gradient(160deg, #fff 0%, rgba(21, 128, 61, 0.03) 100%);
  box-shadow: 0 4px 24px rgba(21, 128, 61, 0.1);
}

.team-card--founder:hover {
  border-color: rgba(21, 128, 61, 0.45);
  box-shadow: 0 24px 56px rgba(21, 128, 61, 0.14);
}

/* ── Card Top: Avatar + Badge ────────────────────────────────────────── */
.team-card-top {
  padding: 28px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Avatar circle with CSS-variable colour */
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--av-bg);
  border: 2px solid var(--av-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.team-avatar span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--av-color);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

/* Subtle radial glow behind initials */
.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, var(--av-bg), transparent 70%);
}

/* Role badge pill */
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(21, 128, 61, 0.08);
  color: var(--primary-green);
  border: 1px solid rgba(21, 128, 61, 0.15);
  white-space: nowrap;
}

.founder-badge {
  background: linear-gradient(135deg, rgba(21,128,61,0.12), rgba(21,128,61,0.06));
  color: var(--primary-green);
  border-color: rgba(21, 128, 61, 0.25);
}

.founder-badge i { color: #f59e0b; }

/* ── Card Body ───────────────────────────────────────────────────────── */
.team-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.3px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 4px 0 0;
  flex: 1;
}

/* Skill tag pills */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.team-tags span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Card Footer: Social Icons ───────────────────────────────────────── */
.team-card-footer {
  padding: 16px 24px 22px;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.team-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.25s ease;
  outline: none;
}

.team-social:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
/* ── Responsive — cards always scroll, just fewer visible ── */
@media (max-width: 768px) {
  .team-grid {
    gap: 14px;
  }
  .team-card {
    min-width: 230px;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .team-card {
    min-width: 85vw;
    max-width: 90vw;
  }
}

/* FAQ Section */

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--light);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.active {
  background: var(--white);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  outline: none;
}

.faq-question i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(21, 128, 61, 0.08);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Overrides for New Sections */
@media (max-width: 1024px) {
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-num {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .standards-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* Floating Leaf Decorations */
.floating-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  animation: floatLeaf 8s ease-in-out infinite;
}

.leaf-1 {
  top: 12%;
  left: 3%;
  width: 70px;
  height: 70px;
  transform: rotate(-15deg);
}

.leaf-2 {
  bottom: 15%;
  right: 5%;
  width: 90px;
  height: 90px;
  transform: rotate(45deg);
  animation-delay: -4s;
}

.leaf-3 {
  top: 8%;
  right: 4%;
  width: 60px;
  height: 60px;
  transform: rotate(105deg);
  animation-delay: -2s;
}

@keyframes floatLeaf {
  0%, 100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-15px) rotate(15deg);
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float i {
  transition: transform 0.4s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.whatsapp-float:hover i {
  transform: rotate(360deg);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on touch screens to save space */
  }
}
