:root {
    --green: #1A7A1A;
    --dark-green: #155215;
    --deep-green: #0D3B0D;
    --gold: #C8A200;
    --gold-light: #F5D84A;
    --yellow: #FFE600;
    --yellow-warm: #FDD835;
    --blue: #1565C0;
    --soil: #7B5B3A;
    --soil-light: #A07850;
    --white: #FAFAF5;
    --off-white: #F5F0E8;
    --text-dark: #1C1C1C;
    --text-mid: #4A4A3A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { overflow-x: hidden; width: 100%; margin: 0; padding: 0; }
  img { max-width: 100%; height: auto; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
    background: #0D3B0D;
  }

  body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }


  a{
text-decoration:none;
}

  /* ───────── NAV — transparent on hero, solid on scroll ───────── */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
    box-shadow: none;
    border-bottom: none;
    transition: background 0.35s ease, box-shadow 0.35s ease;
  }
  .topbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.10), 0 1px 0 rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .topbar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .logo-circle {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
  }
  /* .logo-circle img {
    height: 60px;
    width: auto !important;
    max-width: 180px;
    object-fit: contain;
  }
  .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark-green);
    letter-spacing: 0.05em;
  }
  .logo-tagline {
    font-size: 0.65rem;
    color: var(--soil);
    letter-spacing: 0.08em;
  } */
  .nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--yellow); }
  .topbar.scrolled .nav-links a { color: rgba(22, 78, 18, 0.8); }
  .topbar.scrolled .nav-links a:hover { color: var(--dark-green); }
  .nav-cta {
    background: var(--yellow);
    color: var(--dark-green) !important;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--deep-green) !important; }

  /* ───────── HERO ───────── */
  .hero {
    min-height: 100svh;
    height: 100svh;
    margin-top: 0;
    background:
      linear-gradient(165deg, rgba(13,59,13,0.88) 0%, rgba(21,82,21,0.72) 45%, rgba(200,162,0,0.15) 100%),
      url('../img/herobg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
  }
  /* hero bottom fade removed */
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
  padding: 6rem 2rem 3rem;   
    position: relative;
    z-index: 3;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,230,0,0.15);
    border: 1px solid rgba(255,230,0,0.4);
    color: var(--yellow);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-badge::before { content: '🌿'; font-size: 0.9rem; }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-title span { color: var(--yellow); }
  .hero-subtitle-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    animation: fadeUp 0.8s 0.25s ease both;
  }
  .hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.35s ease both;
  }
  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .btn-primary {
    background: var(--yellow);
    color: var(--dark-green);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(255,230,0,0.3);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,230,0,0.4);
  }
  .btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
  }
  .btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
  }
  .hero-stats {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeLeft 1s 0.6s ease both;
  }
  .hero-stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 150px;
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    display: block;
  }
  .hero-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ───────── COUNTER STRIP ───────── */
  .counter-strip {
    background: var(--dark-green);
    padding: 2rem 0;
    overflow: hidden;
  }
  .counter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    text-align: center;
  }
  .counter-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .counter-item:last-child { border-right: none; }
  .counter-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--yellow);
    display: block;
    transition: all 1s ease;
  }
  .counter-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
  }

  /* ───────── SECTION GENERIC ───────── */
  section { padding: 5rem 0; }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--green);
    display: inline-block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-title.light { color: var(--white); }
  .section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 600px;
  }
  .section-desc.light { color: rgba(255,255,255,0.8); }

  /* ───────── PROBLEM SECTION ───────── */
  .problem {
    background: var(--off-white);
    padding: 5rem 0;
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--green);
  }
  .problem-card:nth-child(2)::before { background: var(--gold); }
  .problem-card:nth-child(3)::before { background: var(--soil); }
  .problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }
  .problem-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .problem-card:nth-child(2) .problem-stat { color: var(--gold); }
  .problem-card:nth-child(3) .problem-stat { color: var(--soil); }
  .problem-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }
  .problem-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ───────── 3-PILLAR SOLUTION ───────── */
  .solution {
    background: var(--green);
    position: relative;
    overflow: hidden;
    --grid-x: 0px;
    --grid-y: 0px;
  }
  .solution::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    transition: transform 0.15s ease-out;
    will-change: transform;
    transform: translate(var(--grid-x), var(--grid-y));
    pointer-events: none;
  }
  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
  }
  .pillar-card {
    padding: 3rem 2.5rem;
    background: rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
    position: relative;
  }
  .pillar-card:last-child { border-right: none; }
  .pillar-card:hover { background: rgba(255,255,255,0.1); }
  .pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,230,0,0.12);
    position: absolute;
    top: 1rem; right: 1.5rem;
    line-height: 1;
  }
  .pillar-icon {
    width: 56px; height: 56px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .pillar-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
  }
  .pillar-tag {
    display: inline-block;
    margin-top: 1.5rem;
    background: rgba(255,230,0,0.15);
    border: 1px solid rgba(255,230,0,0.3);
    color: var(--yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ───────── SERVICES GRID ───────── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(26,122,26,0.12);
    border-radius: 14px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,122,26,0.12);
  }
  .service-card:hover .service-arrow { transform: translateX(4px); }
  .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }
  .service-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
  }
  .service-desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .service-arrow {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    color: var(--green);
    font-size: 1.1rem;
    transition: transform 0.2s;
  }

  /* ───────── AI BANNER ───────── */
  .ai-banner {
    background: linear-gradient(135deg, var(--blue) 0%, #0D47A1 100%);
    border-radius: 20px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin: 0 2rem;
  }
  .ai-banner::before {
    content: '🤖';
    position: absolute;
    right: 12rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.06;
  }
  .ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .ai-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .ai-desc { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 500px; }
  .ai-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .btn-white {
    background: var(--white);
    color: var(--blue);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

  /* ───────── INDIA MAP ───────── */
  .map-section {
    background: var(--off-white);
    padding: 5rem 0;
  }
  .map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }
  .map-visual {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .map-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }
  /* SVG India Map */
  .india-svg { width: 100%; max-height: 320px; }
  .map-dot {
    width: 12px; height: 12px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s infinite;
    border: 2px solid white;
    box-shadow: 0 0 0 3px rgba(26,122,26,0.3);
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26,122,26,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(26,122,26,0); }
    100% { box-shadow: 0 0 0 0 rgba(26,122,26,0); }
  }
  .state-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .state-card {
    background: var(--dark-green);
    color: white;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
  }
  .state-name { font-size: 0.72rem; font-weight: 700; color: var(--yellow); }
  .state-stat { font-size: 0.65rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
  .map-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
  }
  .reach-stat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .reach-stat-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .reach-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1;
  }
  .reach-stat-label { font-size: 0.8rem; color: var(--text-mid); margin-top: 0.2rem; }

  /* ───────── APP DOWNLOAD BANNER ───────── */
  .app-banner {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 60%, var(--gold) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  .app-banner::after {
    content: '📱';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    opacity: 0.07;
  }
  .app-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .app-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  .app-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .step-num {
    width: 32px; height: 32px;
    background: var(--yellow);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .step-text { font-size: 0.85rem; color: rgba(255,255,255,0.9); }

  /* ───────── TESTIMONIALS ───────── */
  .testimonials {
    padding: 5rem 0;
    background: var(--white);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .testimonial-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(26,122,26,0.08);
  }
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  }
  .testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--green);
    opacity: 0.12;
    position: absolute;
    top: 0.5rem; left: 1.5rem;
    line-height: 1;
  }
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-highlight {
    background: var(--dark-green);
    color: var(--yellow);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .author-avatar {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .author-name { font-weight: 700; font-size: 0.9rem; color: var(--dark-green); }
  .author-detail { font-size: 0.75rem; color: var(--text-mid); }

  /* ───────── PARTNER LOGOS ───────── */
  .partners {
    background: var(--off-white);
    padding: 3rem 0;
  }
  .partner-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 2rem;
  }
  .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .partner-logo {
    background: white;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-mid);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.2s;
  }
  .partner-logo:hover {
    color: var(--dark-green);
    border-color: var(--green);
    transform: translateY(-2px);
  }

  /* ───────── WHY WAVAR PILLARS ───────── */
  .trust-section {
    background: var(--dark-green);
    padding: 5rem 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .trust-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s;
  }
  .trust-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,230,0,0.3);
  }
  .trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }
  .trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
  }
  .trust-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
  }

  /* ───────── CONTACT ───────── */
  .contact {
    padding: 5rem 0 7rem;
    background: var(--white);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }
  .contact-form {
    background: var(--off-white);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(26,122,26,0.1);
  }
  .form-group { margin-bottom: 1.25rem; }
  .form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(26,122,26,0.2);
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,122,26,0.1);
  }
  .form-textarea { min-height: 120px; resize: vertical; }
  .btn-submit {
    width: 100%;
    background: var(--green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.05em;
  }
  .btn-submit:hover { background: var(--dark-green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,26,0.3); }
  .btn-subtext { display: none; }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
  }
  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  /* .contact-icon { font-size: 1.5rem; flex-shrink: 0; } */
.contact-icon{
font-size:22px;
display:flex;
align-items:center;
justify-content:center;
color:var(--green);
}


  .contact-item-title { font-weight: 700; font-size: 0.9rem; color: var(--dark-green); }
  .contact-item-text { font-size: 0.85rem; color: var(--text-mid); margin-top: 0.2rem; }

  /* ───────── FOOTER ───────── */
  footer {
    background: var(--white);
    padding: 4rem 0 0;
    color: rgba(0,0,0,0.6);
    border-top: 2px solid rgba(0,0,0,0.08);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr 1.1fr;
    gap: 2rem;
    padding: 0 2.5rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    align-items: stretch;
  }
  .footer-brand .logo-circle img { height: 80px !important; width: auto !important; }
  .footer-brand .topbar-logo { justify-content: flex-start; align-items: center; }
  .footer-brand p {
    font-size: 0.83rem;
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(0,0,0,0.55);
  }
  .footer-cols-wrapper {
    display: contents; /* transparent on desktop — children participate in footer-grid */
  }
  .social-btn {
    width: 36px; height: 36px;
    background: rgba(22,78,18,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .social-btn:hover { background: var(--yellow); }
  .footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a {
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--dark-green); }

  .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.83rem;
    color: rgba(0,0,0,0.5);
    line-height: 1.5;
  }
  .footer-contact-list li i {
    font-size: 1rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .footer-contact-list a {
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact-list a:hover { color: var(--dark-green); }
  .footer-phones { display: flex; flex-direction: column; gap: 0; }
  .footer-phones span { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem; font-size: 0.83rem; color: rgba(0,0,0,0.5); }
  .footer-phones span i { font-size: 1rem; color: var(--green); flex-shrink: 0; }
  .footer-phones span a { color: rgba(0,0,0,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-phones span a:hover { color: var(--dark-green); }
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(22,78,18,0.08);
    border: 1px solid rgba(22,78,18,0.2);
    color: var(--dark-green) !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    transition: background 0.2s !important;
  }
  .footer-map-link:hover { background: rgba(22,78,18,0.15) !important; }
  .footer-map-embed { margin-top: 0.75rem; list-style: none !important; }
  .footer-map-embed iframe { border-radius: 8px; display: block; width: 100%; height: 160px; border: 0; }
  .footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .badge {
    background: rgba(22,78,18,0.06);
    border: 1px solid rgba(22,78,18,0.15);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-green);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .badge::before { content: '✓'; color: var(--green); font-weight: 900; }
  .footer-bottom {
    background: rgba(0,0,0,0.04);
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-bottom-links a {
    color: rgba(0,0,0,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: var(--dark-green); }

  /* ───────── WHATSAPP FLOAT ───────── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: bounce 2s 3s ease both;
    color:#FFF;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* ───────── ANIMATIONS ───────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translate(40px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ───────── MOBILE ───────── */
  
  

  /* ═══════════════════════════════════════════
     CLASS-BASED RESPONSIVE GRID OVERRIDES
  ═══════════════════════════════════════════ */

  /* State district cards */
  

  

  

  /* ── Table responsive scrolling ── */
  .foundation-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .foundation-scroll table { min-width: 580px; }

  /* ── Mobile quick-contact icons ── */
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .mobile-quick-contact {
    display: none;
    align-items: center;
    gap: 4px;
  }
  .mqc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 1.1rem;
    transition: opacity 0.2s;
    text-decoration: none;
  }
  .topbar.scrolled .mqc-btn {
    color: var(--dark-green);
  }
  .mqc-btn:hover { opacity: 0.7; }
  .topbar.scrolled .mqc-btn:hover { opacity: 0.7; }

  /* ── Hamburger menu placeholder (shows on mobile) ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    background: transparent;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .topbar.scrolled .hamburger span { background: var(--dark-green); }
  

  /* ── Mobile nav drawer ── */
  /* .mobile-nav {
    display: none;
    position: fixed;
    top: 52px; left: 0; right: 0;
    background: var(--deep-green);
    z-index: 999;
    padding: 1rem 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 0;
  }
  .mobile-nav.open { display: flex; } */


/* mobile-nav defined once below in the media query section */



  .mobile-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--yellow); }
  .mobile-nav a.cta-mobile {
    margin-top: 1rem;
    background: var(--yellow);
    color: var(--dark-green) !important;
    font-weight: 800;
    text-align: center;
    padding: 0.9rem;
    border-radius: 8px;
    border: none;
  }

  /* ── Whatsapp float position on mobile ── */
  

  /* ── Hero on very small screens ── */
  

  /* ── MPKV efficacy grid inner 3-col ── */
  

  /* ── Pillar CTA bar ── */
  

  /* ── App banner steps ── */
  

  /* ── Foundation table ── */
  

  /* ── Hero stats cards on tablet ── */
  

  /* ── Cross-browser flex fixes ── */
  .hero-ctas, .app-steps, .footer-social, .partner-logos { 
    display: -webkit-flex; 
    display: flex; 
  }
  .topbar { display: -webkit-flex; display: flex; }


  /* ═══════════════════════════════════════════════════════
     RESPONSIVE SYSTEM — Single source of truth
     Breakpoints: 1024 | 900 | 768 | 600 | 420
  ═══════════════════════════════════════════════════════ */

  /* Global safety */
  html, body { overflow-x: hidden; width: 100%; }
  img { max-width: 100%; height: auto; display: block; }
  * { -webkit-tap-highlight-color: transparent; box-sizing: border-box; }

  /* ── 1024px: Large tablet ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1.4fr repeat(5, 1fr); gap: 1.5rem; }
    .hero-stats    { right: 1rem; }
  }

  /* ── 900px: Tablet portrait ── */
  @media (max-width: 900px) {
    /* Nav */
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    .mobile-quick-contact { display: flex; }

    /* Hero */
    .hero-stats  { display: none !important; }
    .hero-content { padding: 2rem 1.5rem 3rem; }
    .hero-ctas   { flex-direction: row; align-items: stretch; gap: 0.5rem; }
    .hero-ctas a { text-align: center; justify-content: center; flex: 1; font-size: 0.78rem !important; padding: 0.75rem 0.6rem !important; white-space: nowrap; }

    /* Counter */
    .counter-inner { grid-template-columns: repeat(3, 1fr); }

    /* Grids → single column */
    .problem-grid      { grid-template-columns: 1fr; }
    .testimonial-grid  { grid-template-columns: 1fr; }
    .contact-grid      { grid-template-columns: 1fr; }
    .app-banner-inner  { grid-template-columns: 1fr; }

    /* Pillars stack */
    .pillar-grid  { grid-template-columns: 1fr; border: none; gap: 1rem; }
    .pillar-card  { border-right: none !important; border-radius: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Trust */
    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }

    /* ── All inline multi-col grids → responsive ── */
    /* State cards 6→3 */
    .state-district-grid  { grid-template-columns: repeat(3, 1fr) !important; }
    /* Products 4→3 */
    .products-grid        { grid-template-columns: repeat(3, 1fr) !important; }
    /* AI section 2→1 */
    .ai-cards-grid        { grid-template-columns: 1fr !important; }
    /* MPKV+efficacy 2→1 */
    .mpkv-efficacy-grid   { grid-template-columns: 1fr !important; }
    /* Sugar stats 4→2 */
    .sugar-stats-grid     { grid-template-columns: repeat(2, 1fr) !important; }
    /* NGO split 2→1 */
    .ngo-main-grid        { grid-template-columns: 1fr !important; gap: 2rem !important; }
    /* Investor 3→3 (ok) */
    .investor-grid        { grid-template-columns: repeat(3, 1fr); }
    /* Pillar bottom CTA */
    .pillar-cta-bar       { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
    .pillar-cta-bar a     { width: 100% !important; text-align: center !important; justify-content: center !important; }
  }

  /* ── 768px: Large mobile ── */
  @media (max-width: 768px) {
    section { padding: 3rem 0; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }

    .counter-inner { grid-template-columns: repeat(3, 1fr); }

    /* Products 4→2 */
    .products-grid        { grid-template-columns: repeat(2, 1fr) !important; }
    /* State cards 6→3 */
    .state-district-grid  { grid-template-columns: repeat(3, 1fr) !important; }
    /* Sugar stats 4→2 */
    .sugar-stats-grid     { grid-template-columns: repeat(2, 1fr) !important; }
    /* Investor 3→1 */
    .investor-grid        { grid-template-columns: 1fr !important; }
    /* Efficacy inner 3→2 */
    .efficacy-inner-grid  { grid-template-columns: repeat(2, 1fr) !important; }
    /* Crops full-width row stays full width, image smaller */
    .efficacy-inner-grid > div[style*="grid-column"] img { height: 100px !important; }
  }

  /* ── 600px: Mobile ── */
  @media (max-width: 600px) {
    .container { padding: 0 1rem; }

    /* Nav */
    .topbar    { padding: 0 1rem; height: 70px; }
    .logo-tagline { display: none; }
    .topbar-logo { gap: 0.5rem; max-width: 55%; overflow: hidden; }
    .logo-circle img { height: 52px !important; width: auto !important; max-width: none !important; }

    /* Hero */
    .hero-content { padding: 1.5rem 1rem 2rem; }
    .hero-title   { font-size: clamp(1.7rem, 8vw, 2.8rem) !important; }
    .hero-badge   { font-size: 0.65rem; }
    .btn-primary, .btn-secondary { width: 100%; font-size: 0.88rem; padding: 0.85rem 1rem; display: flex; align-items: center; justify-content: center; }

    /* Counter 6→2×3 */
    .counter-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .counter-num   { font-size: 1.4rem; }
    .counter-label { font-size: 0.6rem; }

    /* Grids */
    .services-grid        { grid-template-columns: 1fr; }
    .trust-grid           { grid-template-columns: 1fr; }
    .footer-grid          { grid-template-columns: 1fr; gap: 0; }

    /* Brand block: full width, centered */
    .footer-brand {
      text-align: center;
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .footer-brand .topbar-logo { justify-content: center; align-items: center; display: flex; }
    .footer-brand .logo-circle { display: flex; align-items: center; justify-content: center; }
    .footer-brand .logo-circle img { height: 72px !important; }
    .footer-brand p { max-width: 340px; margin-left: auto; margin-right: auto; }
    .social-icons { justify-content: center; }

    /* Center everything in footer on mobile */
    .footer-cols-wrapper { text-align: center; }
    .footer-col h4 { font-size: 0.72rem; margin-bottom: 0.85rem; }
    .footer-col a  { font-size: 0.78rem; }
    .footer-col li { margin-bottom: 0.45rem; list-style: none; }
    .footer-col ul { padding: 0; }
    .footer-col-trust { text-align: center; }
    .footer-col-contact { text-align: center; }
    .footer-contact-list li { justify-content: center; }
    .footer-phones { justify-content: center; }
    .footer-map-embed { text-align: left; }
    /* Link columns: 3 nav cols in one row, contact + trust full-width below */
    .footer-cols-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem 0.75rem;
    }
    .footer-col { padding: 0; }
    .footer-col h4 { font-size: 0.72rem; margin-bottom: 0.85rem; }
    .footer-col a  { font-size: 0.78rem; }
    .footer-col li { margin-bottom: 0.45rem; }

    /* Contact: full width row after the 3 nav cols */
    .footer-col-contact {
      grid-column: 1 / -1;
      order: 10;
    }
    .footer-contact-list { display: flex !important; flex-direction: column !important; gap: 0.5rem; }
    .footer-contact-list li { margin-bottom: 0; font-size: 0.8rem; }
    .footer-phones { flex-direction: row !important; gap: 1rem; flex-wrap: wrap; }
    .footer-phones span { margin-bottom: 0; }
    .footer-map-embed { margin-top: 0.5rem; }
    .footer-map-embed iframe { height: 180px; }

    /* Trust & Credentials: full width, badges in 2-col grid */
    .footer-col-trust {
      grid-column: 1 / -1;
    }
    .footer-col-trust .footer-badges {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-col-trust .footer-badges .badge {
      flex: 1 1 calc(50% - 0.25rem);
      justify-content: center;
      text-align: center;
    }
    .products-grid        { grid-template-columns: repeat(2, 1fr) !important; }
    .state-district-grid  { grid-template-columns: repeat(2, 1fr) !important; }
    .sugar-stats-grid     { grid-template-columns: repeat(2, 1fr) !important; }
    .ngo-grid             { grid-template-columns: repeat(2, 1fr) !important; }
    .efficacy-inner-grid  { grid-template-columns: repeat(2, 1fr) !important; }

    /* ── Mobile CTA button sizing ── */
    .mobile-cta-group { flex-direction: row !important; align-items: center; flex-wrap: nowrap !important; }
    /* Partners: 2-col grid on mobile, no borders */
    .partners-row { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; justify-items: stretch; margin-bottom: 0.75rem !important; padding-bottom: 0 !important; }
    .partners-row > div, .partners-row > .partner-card { width: 100% !important; min-width: 0 !important; box-sizing: border-box; }
    /* Odd last card: center it spanning both columns */
    .partners-row > div:last-child:nth-child(odd),
    .partners-row > .partner-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
    .partner-card-lone { grid-column: 1 / -1 !important; max-width: 50% !important; margin: 0 auto !important; }
    .ngo-card-lone { grid-column: 1 / -1 !important; max-width: 50% !important; margin: 0 auto !important; }
    /* Download Now: auto width */
    .btn-primary[style*="var(--yellow)"] { width: auto !important; }
    /* Submit button subtext hidden on mobile */
    .btn-subtext { display: none; }
    /* We respond within 24 hours shown below instead */
    .mobile-cta-group .btn-primary { flex: 1; text-align: center; justify-content: center; white-space: nowrap; width: auto !important; font-size: 0.82rem !important; padding: 0.75rem 0.75rem !important; }
    .mobile-cta-group a:not(.btn-primary) { flex: 1; display: flex; align-items: center; justify-content: center; white-space: nowrap; font-size: 0.82rem !important; padding: 0.75rem 0.75rem !important; }
    /* Single standalone btn-primary: auto width, not full-width */
    [style*="text-align:center"] > .btn-primary:only-child,
    [style*="text-align: center"] > .btn-primary:only-child {
      display: inline-flex;
      width: auto;
      min-width: 0;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    /* App steps stack */
    .app-steps { flex-direction: column !important; gap: 1.25rem !important; }

    /* Table horizontal scroll */
    .foundation-scroll       { overflow-x: auto; -webkit-overflow-scrolling: touch; display: block; }
    .foundation-scroll table { min-width: 520px; }

    /* Footer */
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .social-btn { width: 34px; height: 34px; }

    /* Pillar section bottom bar */
    .pillar-cta-bar { padding: 1.25rem !important; }

    /* Partner logos */
    .partner-logos { gap: 0.6rem !important; }

    /* Whatsapp */
    .whatsapp-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; font-size: 1.4rem; }
    .call-float     { bottom: calc(1rem + 50px + 10px); right: 1rem; width: 50px; height: 50px; font-size: 1.3rem; }
  }

  /* ── 420px: Small mobile ── */
  @media (max-width: 420px) {
    .hero-title   { font-size: 1.6rem !important; }
    .section-title { font-size: 1.4rem !important; }
    .counter-num  { font-size: 1.2rem; }
    .logo-text    { font-size: 0.95rem; }

    /* Products 2→1 on very small */
    .products-grid       { grid-template-columns: 1fr !important; }
    .state-district-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .ngo-grid            { grid-template-columns: repeat(2, 1fr) !important; }

    /* Foundation table */
    .foundation-scroll table { min-width: 460px; }
    .foundation-scroll td,
    .foundation-scroll th { padding: 0.6rem 0.75rem !important; font-size: 0.75rem; }

    /* Pillar cards */
    .pillar-title { font-size: 1.15rem; }
    .pillar-desc  { font-size: 0.82rem; }
  }

  /* ── Hamburger & Mobile nav ── */
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 86px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 998;
    padding: 1.5rem 1.5rem 3rem;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: rgba(22,78,18,0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: block;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav a:hover  { color: var(--dark-green); padding-left: 0.5rem; }
  .mobile-nav a.cta-mobile {
    margin-top: 1.25rem;
    background: var(--yellow);
    color: var(--dark-green) !important;
    font-weight: 800;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border-bottom: none;
    font-size: 1rem;
  }

  /* ── Cross-browser flex/grid safety ── */
  .topbar, .hero-ctas, .counter-inner, .problem-grid,
  .partner-logos, .footer-bottom, .footer-bottom-links {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* ── Safe area for notched phones ── */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .whatsapp-float { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
    .call-float     { bottom: calc(1.5rem + env(safe-area-inset-bottom) + 56px + 12px); }
    .mobile-nav { padding-bottom: calc(3rem + env(safe-area-inset-bottom)); }
  }




  .social-icons{
display:flex;
gap:12px;
}

.social-icons a{
width:44px;
height:44px;
background:#1A7A1A;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:20px;
transition:0.3s;
}

.social-icons a:hover{
background:#FFE600;
color:#0D3B0D;
}


/* Base floating button style */
.floating-btn{
position:fixed;
right:2rem;
width:56px;
height:56px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#fff;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
z-index:999;
transition:all .25s ease;
}

/* Hover effect */
.floating-btn:hover{
transform:translateY(-3px);
}

/* WhatsApp */
.whatsapp-float{
bottom:2rem;
background:#25D366;
}

/* Call now */
.call-float{
bottom:calc(2rem + 56px + 12px);
background:#1565C0;
text-decoration:none;
}

/* Go top */
.go-top{
bottom:calc(2rem + 56px + 12px + 56px + 12px);
background:var(--green);
opacity:0;
pointer-events:none;
}

.go-top.show{
opacity:1;
pointer-events:auto;
}

.floating-btn i{
line-height:1;
}

.go-top:focus{
outline:none;
}

.go-top:focus-visible{
outline:none;
}




.logo-circle{
  position:relative;
}

.logo-circle img{
  height:80px;
  transition:opacity .35s ease;
}

/* default (hero section) */
.logo-color{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
}

/* on scroll */
.topbar.scrolled .logo-white{
  opacity:0;
}

.topbar.scrolled .logo-color{
  opacity:1;
}