  :root{
    --renew-green:#8EC13F;
    --renew-green-dark:#4f9a2a;
    --renew-deep:#086839;
    --renew-forest:#8EC13F;
    --renew-mint:#EAF6E4;
    --sun-gold:#F7C948;
    --sun-warm:#FFB347;
    --sky-dawn:#F6FBF3;
    --chalk:#FBFDF9;
    --earth:#086839;
    --earth-mid:#414042;
    --text-dark:#10251B;
    --text-mid:#414042;
    --line-soft:rgba(115,191,68,0.16);
  }
  *{box-sizing:border-box}
  html{scroll-behavior:smooth}
  body{
    font-family:"gotham-book", sans-serif;
    background:var(--chalk);
    color:var(--text-dark);
    overflow-x:hidden;
    cursor:default;
  }

  /* ---------- Custom Cursor Dot ---------- */
  .cursor-dot{
    position:fixed; top:0; left:0; width:10px; height:10px; border-radius:50%;
    background:var(--renew-green); pointer-events:none; z-index:9999;
    transform:translate(-50%,-50%); transition:transform .12s ease-out, background .2s;
    mix-blend-mode:multiply;
  }
  .cursor-ring{
    position:fixed; top:0; left:0; width:38px; height:38px; border-radius:50%;
    border:1.5px solid rgba(115,191,68,0.55); pointer-events:none; z-index:9998;
    transform:translate(-50%,-50%);
    transition:transform .25s ease-out, width .25s, height .25s, border-color .25s;
  }
  .cursor-ring.hover{ width:60px; height:60px; border-color:var(--renew-green); }
  @media(max-width:900px){ .cursor-dot,.cursor-ring{display:none} }

  /* ---------- NAV ---------- */
  .navbar-custom{
    display:none;
    position:fixed; top:15%; left:0; right:0; z-index:1030;
    background:rgba(251,253,249,0.85);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(115,191,68,0.14);
    transition:padding .3s, background .3s;
  }
  .navbar-custom.scrolled{
    padding-top:8px; padding-bottom:8px;
    background:rgba(251,253,249,0.96);
    box-shadow:0 4px 30px rgba(0,102,58,0.06);
  }
  .logo-circle{
    width:38px; height:38px; border-radius:50%;
    background:linear-gradient(135deg,var(--renew-green),var(--sun-gold));
    box-shadow:0 0 18px rgba(115,191,68,0.45);
    animation:pulseGlow 3s ease-in-out infinite;
    display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700;
  }
  @keyframes pulseGlow{
    0%,100%{ box-shadow:0 0 18px rgba(115,191,68,0.45); }
    50%{ box-shadow:0 0 32px rgba(247,201,72,0.55), 0 0 50px rgba(115,191,68,0.4); }
  }
  .brand-text{ font-weight:700; letter-spacing:-.3px; }
  .brand-text span{ color:var(--renew-green); }
  .tagline-nav{ font-family:"gotham-book", sans-serif; font-size:12px; color:var(--renew-deep); font-weight:600; }
  .nav-link-custom{
    color:var(--text-mid) !important; font-size:18px; font-weight:500;
    position:relative; padding:8px 4px !important; margin:0 14px;text-decoration: none;
  }
  .nav-link-custom::after{
    content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
    background:var(--renew-green); transition:width .3s ease;
  }
  .nav-link-custom:hover{ color:var(--renew-green) !important; }
  .nav-link-custom:hover::after{ width:100%; }
  .btn-renew{
    background:var(--renew-green); color:#fff; border:none;
    padding:10px 22px; border-radius:100px; font-size:16px; font-weight:600;
    transition:all .25s; box-shadow:0 6px 20px rgba(115,191,68,0.35);
  }
  .btn-renew:hover{ background:var(--renew-green-dark); transform:translateY(-2px); color:#fff;
    box-shadow:0 10px 26px rgba(115,191,68,0.5); }

  /* ---------- HERO BANNER (with sun moving left → right at angle) ---------- */
  .hero{
    position:relative; min-height:100vh; overflow:hidden;
    background:linear-gradient(180deg,#F8FCF4 0%,#FBFDF9 55%,#EEF7F2 100%);
    padding:120px 0 80px;
  }
  /* sky/horizon glow */
  .hero::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 80% 40% at 50% 85%, rgba(115,191,68,0.18), transparent 70%);
    pointer-events:none;
  }
  /* layered "hills" parallax */
  .hill{
    position:absolute; left:-5%; right:-5%; bottom:0; height:240px;
    background:linear-gradient(180deg, transparent 0%, rgba(0,102,58,0.04) 100%);
    border-radius:50% 50% 0 0 / 100% 100% 0 0;
    transform-origin:center bottom;
    transition:transform .1s linear;
  }
  .hill-1{ background:linear-gradient(180deg,#C9E5B2 0%,#a8d088 100%); height:180px; bottom:-30px; z-index:1; opacity:.55; }
  .hill-2{ background:linear-gradient(180deg,#9ECF7A 0%,#8EC13F 100%); height:140px; bottom:-50px; z-index:2; opacity:.6; left:-15%; right:-15%; }
  .hill-3{ background:linear-gradient(180deg,#4f9a2a 0%,#2d6815 100%); height:90px; bottom:-30px; z-index:3; opacity:.85; left:-25%; right:-25%; }

  /* SUN — animated across the sky at an angle (one-time) */
.--sun-banner {
  position: absolute; 
  top: 0; 
  left: 0;  
  width: 140px; 
  height: 140px; 
  border-radius: 50%;  
  background: radial-gradient(circle at 35% 35%, #FFF5C4 0%, var(--sun-gold) 40%, #FF9D2E 75%, var(--renew-green-dark) 100%);  
  box-shadow:   
    0 0 60px rgba(247,201,72,0.7),   
    0 0 120px rgba(255,180,71,0.45),   
    0 0 200px rgba(115,191,68,0.3);  
  z-index: 2;  
  transform: translate(-180px, 80vh) scale(0.6);  
  
  /* Increased duration slightly to 6.5s for a more majestic, "floating" speed */
  animation: sunArc 6.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards; 
}

.--sun-banner::before {  
  content: ''; 
  position: absolute; 
  inset: -40px; 
  border-radius: 50%;  
  background: radial-gradient(circle, rgba(247,201,72,0.25), transparent 70%);  
  animation: sunHalo 4s ease-in-out infinite;  
  z-index: -1;  
}

@keyframes sunHalo {  
  0%, 100% { transform: scale(1); opacity: .8; }  
  50% { transform: scale(1.15); opacity: 1; }  
}

/* Smooth, physics-guided arc trajectory */
@keyframes sunArc {
  0% {
    transform: translate(-180px, 80vh) scale(0.55);
    opacity: 0;
    /* Custom easing: Slowly decelerates as it reaches the peak */
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  }
  12% {
    opacity: 1;
  }
  /* The Peak: The sun slows down slightly here, creating a "weightless" float */
  50% {
    transform: translate(45vw, 12vh) scale(1);
    /* Custom easing: Slowly accelerates as it descends */
    animation-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
  }
  100% {
    transform: translate(calc(100vw - 60px), 28vh) scale(0.9);
    opacity: 1;
  }
}
  /* rays around the sun (rotating) */
  .--sun-rays{
    position:absolute; inset:-50px; pointer-events:none;
    background:
      conic-gradient(from 0deg,
        transparent 0deg, rgba(247,201,72,0.45) 8deg, transparent 16deg,
        transparent 30deg, rgba(247,201,72,0.45) 38deg, transparent 46deg,
        transparent 60deg, rgba(247,201,72,0.45) 68deg, transparent 76deg,
        transparent 90deg, rgba(247,201,72,0.45) 98deg, transparent 106deg,
        transparent 120deg, rgba(247,201,72,0.45) 128deg, transparent 136deg,
        transparent 150deg, rgba(247,201,72,0.45) 158deg, transparent 166deg,
        transparent 180deg, rgba(247,201,72,0.45) 188deg, transparent 196deg,
        transparent 210deg, rgba(247,201,72,0.45) 218deg, transparent 226deg,
        transparent 240deg, rgba(247,201,72,0.45) 248deg, transparent 256deg,
        transparent 270deg, rgba(247,201,72,0.45) 278deg, transparent 286deg,
        transparent 300deg, rgba(247,201,72,0.45) 308deg, transparent 316deg,
        transparent 330deg, rgba(247,201,72,0.45) 338deg, transparent 346deg);
    mask:radial-gradient(circle, transparent 60px, #000 65px, #000 110px, transparent 115px);
    -webkit-mask:radial-gradient(circle, transparent 60px, #000 65px, #000 110px, transparent 115px);
    animation:spinSlow 28s linear infinite;
    opacity:.85;
  }
  @keyframes spinSlow{ to{ transform:rotate(360deg); } }

  /* trail/light streak left by sun */
  .sun-trail{
    position:absolute; top:0; left:0; width:100%; height:100%;
    pointer-events:none; opacity:0; animation:trailFade 4.5s ease-in 0.5s forwards;
    z-index:1;
  }
  .--sun-trail svg{ width:100%; height:100%; }
  @keyframes trailFade{
    0%{ opacity:0 } 20%{ opacity:0 } 100%{ opacity:0 }
  }

  /* floating particles in hero */
  .particle{
    position:absolute; width:6px; height:6px; border-radius:50%;
    background:var(--sun-gold); opacity:.6;
    animation:floatUp linear infinite;
  }
  @keyframes floatUp{
    0%{ transform:translateY(0) translateX(0); opacity:0 }
    10%{ opacity:.7 }
    100%{ transform:translateY(-100vh) translateX(40px); opacity:0 }
  }

  .hero-content{ position:relative; z-index:5; text-align:center; padding-top:6px; }
  .hero-hindi{
    font-family:"gotham-book", sans-serif;
    /* font-size:clamp(34px,5.5vw,62px);  */
    font-size: clamp(28px, 5vw, 52px);
    font-weight:700; line-height:1.15;
    color:var(--renew-deep);
    text-shadow:0 4px 30px rgba(0,102,58,0.18);
    opacity:0; transform:translateY(30px);
    animation:fadeUp 1s ease 0.6s forwards;
  }
  .hero-subhindi{
    font-family:"gotham-book", sans-serif;
    /* font-size:clamp(16px,2.4vw,32px);  */
        font-size: clamp(16px, 2.5vw, 22px);
    color:var(--earth-mid);
    margin-top:18px; opacity:0; transform:translateY(20px);
    animation:fadeUp 1s ease 0.9s forwards;
  }
  .hero-english{
    font-family:"gotham-book", sans-serif; font-style:italic;
    font-size:clamp(15px,1.9vw,20px); color:var(--text-mid);
    margin-top:18px; opacity:0;
    animation:fadeUp 1s ease 1.2s forwards;
  }
  @keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

  .hero-stats{ margin-top:-10px; opacity:0; animation:fadeUp 1s ease 1.5s forwards; }
  .stat-item{ text-align:center; padding:8px; }
  .stat-num{
    font-family:"gotham-book", sans-serif;
    font-size:clamp(34px,4.5vw,52px); font-weight:600; color:var(--renew-deep);
    line-height:1; display:block;
  }
  .stat-num small{ font-size:.45em; margin-left:4px; color:var(--renew-deep); }
  .stat-label{
    font-size:11px; color:var(--text-mid); font-weight:600;
    letter-spacing:1.5px; text-transform:uppercase; margin-top:6px;
  }
  .hero-cta{ margin-top:40px; opacity:0; animation:fadeUp 1s ease 1.8s forwards; }
  .btn-primary-renew{
    background:linear-gradient(135deg,var(--renew-green),var(--renew-deep));
    color:#fff; border:none; padding:14px 30px; border-radius:100px;
    font-weight:600; font-size:18px; transition:all .3s;
    box-shadow:0 10px 26px rgba(115,191,68,0.4);
    display:inline-flex; align-items:center; gap:10px;
    text-decoration: none;
  }
  .btn-primary-renew:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:0 14px 36px rgba(115,191,68,0.55); color:#fff;
  }
  .btn-outline-renew{
    background:transparent; color:var(--renew-deep);
    border:2px solid var(--renew-green); padding:12px 28px; border-radius:100px;
    font-weight:600; font-size:18px; transition:all .3s; text-decoration: none;
  }
  .btn-outline-renew:hover{
    background:var(--renew-green); color:#fff; transform:translateY(-3px);
  }

  .scroll-hint{
    position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
    color:var(--text-mid); font-size:11px; letter-spacing:2px; text-transform:uppercase;
    opacity:0; animation:fadeUp 1s ease 3.5s forwards;
    z-index:5;
  }
  .scroll-hint i{ display:block; margin-top:8px; animation:bounce 2s infinite; }
  @keyframes bounce{ 0%,100%{transform:translateY(-3px)} 50%{transform:translateY(4px)} }

  /* ---------- FILM SECTION ---------- */

  
  #film {
    margin-top: var(--banner-height);
}

  .film-section{
    background:var(--earth);
    padding:0px 0px 40px;
    margin-top:25px; 
    position:relative; 
    overflow:hidden;
    color:#fff;
  }
  .film-section::before{
    content:''; position:absolute; top:-1px; left:0; right:0; height:120px;
    background:linear-gradient(to bottom,#c7ffa58f,var(--earth));
  }
  .section-label{
    font-size:13px; letter-spacing:3px; text-transform:uppercase;
    color:var(--renew-green); font-weight:700; margin-bottom:18px;
    display:inline-flex; align-items:center; gap:12px; justify-content:center;
  }
  .section-label::before{ content:''; height:1px; width:40px; background:var(--renew-green); }
  .film-title{
    font-family:"gotham-book", sans-serif;
    font-size:clamp(32px,5vw,46px); font-weight:300; line-height:1.15;
    margin-bottom:22px;
  }
  .film-title em{ color:var(--sun-gold); font-style:italic; }
  .film-desc{ color:rgba(255,255,255,0.65); font-size:15px; max-width:560px; line-height:1.75; margin:10px 0px}

  .film-feature-pill{
    display:inline-block; background:rgba(255,255,255,0.06);
    border-radius:12px; padding:14px 20px; margin-right:14px; margin-top:10px;
    transition:all .3s;
  }
  .film-feature-pill:hover{ background:rgba(115,191,68,0.15); transform:translateY(-2px); }
  .film-feature-pill .lead{
    font-family:"gotham-book", sans-serif; font-size:16px; font-weight:700;
  }
  .film-feature-pill .sub{ color:rgba(255,255,255,0.45); font-size:15px; margin-top:1px; }

  /* .video-wrapper{
    position:relative; border-radius:20px; overflow:hidden;
    aspect-ratio:16/9; background:#0D0B08;
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:0 40px 100px rgba(0,0,0,0.7);
    cursor:pointer; transition:transform .4s;
  } */

  .video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* background: #0D0B08; */
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -11px 12px 20px 7px rgba(0, 0, 0, 0.7);
    transition: transform .4s;
    /*height: 265px;*/
    margin-top:-20px;
}
  .video-wrapper:hover{ transform:scale(1.005); }
  .video-overlay{
    position:absolute; 
    inset:0;
    /* background:linear-gradient(135deg, rgba(0,102,58,0.25), rgba(115,191,68,0.15)); */
    background:url("https://renew.com/resources/desh-ka-mukhda/desh_image.png");
    display:flex; 
    flex-direction:column;
    align-items:center; 
    justify-content:flex-end;
    gap:18px; transition:background .3s;
    background-position: center;
    background-size: cover;
    /* padding-bottom:20px; */
    
  }
  .video-wrapper:hover .video-overlay{
    /* background:linear-gradient(135deg, rgba(0,102,58,0.1), rgba(115,191,68,0.06)); */
  }
  .video-play-btn{
    width:80px; height:80px; border-radius:50%;
    background:rgba(255,255,255,0.14); backdrop-filter:blur(10px);
    border:2px solid rgba(255,255,255,0.35);
    display:flex; align-items:center; justify-content:center;
    transition:all .3s; color:#fff; font-size:25px;
    position:relative;
    /*    margin-top: 33%;*/
    /*margin-left: 73%;*/
  }
  .video-play-btn::after{
    content:''; position:absolute; inset:-8px; border-radius:50%;
    border:2px solid var(--renew-green); opacity:0;
    animation:ringPulse 2.5s ease-in-out infinite;
  }
  @keyframes ringPulse{
    0%{ transform:scale(.9); opacity:.6 }
    100%{ transform:scale(1.4); opacity:0 }
  }
  .video-wrapper:hover .video-play-btn{
    transform:scale(1.1); background:var(--renew-green);
    box-shadow:0 0 50px rgba(115,191,68,0.6);
  }
  .video-caption{
    font-family:"gotham-book", sans-serif;
    display:flex;
    justify-content:center;
    align-items:center;
    /*color: var(--renew-green);*/
    color:rgba(255,255,255,0.9); 
    font-size:24px; text-align:center;
    font-weight:800;
    z-index: 9;
  }

  .share-row{ margin-top:8px; }
  .soc-icon{
    font-size:16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .soc-btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:10px 18px; border-radius:100px;
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffffcc; 
    font-size:15px; font-weight:500;
    background:rgba(255,255,255,0.05); text-decoration:none;
    transition:all .25s;
  }
  .soc-btn:hover{ background:var(--renew-green); color:#fff; border-color:var(--renew-green); transform:translateY(-2px); }

  /* ---------- DESH KA MUKHDA ---------- */
  .desh-section{
    background:var(--sky-dawn); 
    padding:0;
    position:relative; overflow:hidden;
  }
  .desh-headline{
    font-family:"gotham-book", sans-serif;
    font-size:clamp(28px,4vw,48px); font-weight:400; line-height:1.2;
    color:var(--earth);
  }
  .desh-headline .hindi{
    font-family:"gotham-book", sans-serif;
    color:var(--renew-deep); font-weight:700;
  }
  .face-card{
    background:#fff; border-radius:20px; overflow:hidden;
    box-shadow:0 4px 30px rgba(0,0,0,0.05);
    transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    cursor:pointer; position:relative; height:100%;
  }
  .face-card:hover{ transform:translateY(-10px) rotate(-.5deg); box-shadow:0 24px 60px rgba(0,102,58,0.18); }
  .face-card-img{
    height:200px; display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden; font-size:72px;
    color:var(--renew-deep);
    background:linear-gradient(135deg,#F3FAEE,#DFF4D4);
  }
  .face-card:nth-child(2n) .face-card-img{ background:linear-gradient(135deg,#EAF6E4,#C9E5B2); }
  .face-card:nth-child(3n) .face-card-img{ background:linear-gradient(135deg,#DFF4D4,#a8d088); }
  .face-card-body{ padding:22px; }
  .face-card-role{
    font-size:10px; letter-spacing:2px; text-transform:uppercase;
    color:var(--renew-green-dark); font-weight:700; margin-bottom:6px;
  }
  .face-card-name{ font-size:18px; font-weight:600; color:var(--earth); }
  .face-card-state{ font-size:13px; color:var(--text-mid); margin-top:4px; }
  .face-card-tag{
    position:absolute; top:14px; right:14px;
    background:var(--renew-green); color:#fff;
    font-size:10px; font-weight:700; letter-spacing:1px;
    padding:5px 12px; border-radius:100px; text-transform:uppercase;
  }
  .face-card-img i{
    transition:transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .face-card:hover .face-card-img i{ transform:scale(1.15) rotate(-6deg); }

  /* share/pledge wall */
  .share-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(333deg, var(--earth) 0%, var(--renew-forest) 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
  }
  .share-prompt::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115,191,68,0.3), transparent 70%);
  }
  .share-prompt h3 {
    font-family: "gotham-book", sans-serif;
    font-size: 32px;
    margin-bottom: 8px;
  }
  .share-prompt p { color: rgba(255,255,255,0.65); margin: 0; }
  .share-prompt-text {
    flex: 1 1 320px;
    max-width: 50%;
  }
  .share-prompt-image {
    position: absolute;
    right: -46px;
    height: 100%;
    float: right;
    max-width: 50%;
  }
  .share-prompt-image img {
    object-position: center;
    height: 100%;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    display: block;
    clip-path: polygon(0% 0, 103% -6%, 101% 101%, 45% 100%);
  }

  /* Container */




/* Video Icon Wrapper */

/* Video Icon Wrapper */
.video-icon-c {
  position: absolute; /* Kept absolute, removed the duplicate 'relative' at the bottom */
  top: 50%;           /* Moves the top edge to the middle */
  left: 50%;          /* Moves the left edge to the middle */
  transform: translate(-50%, -50%); /* Shifts it back by half its size for perfect centering */
  
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari browser support */
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: #fff;
  font-size: 25px;
  cursor: pointer;   /* Makes it look clickable */
}


/* CSS Play Triangle */
.video-icon-c::after {
  content:''; position:absolute; inset:-8px; border-radius:50%;
    border:2px solid var(--renew-green); opacity:0;
    animation:ringPulse 2.5s ease-in-out infinite;
}




.video-icon-c:hover {
  transform: translate(-50%, -50%) scale(1.1); 
  background: var(--renew-green);
  box-shadow: 0 0 50px rgba(115, 191, 68, 0.6);
}


  .share-prompt-text h3 {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 26px; color: white; margin-bottom: 10px;
  }
  .share-prompt-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
  .share-btn {
    background: linear-gradient(135deg, var(--saffron), #004F2D);
    color: white; border: none; padding: 15px 32px; border-radius: 100px;
    font-size: 15px; font-weight: 600; cursor: pointer; white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,102,58,0.32); transition: all .25s;
  }
  .share-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,102,58,0.42); }



  .faces-banner {
    margin: 80px auto 60px;
    max-width: 90%;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 44px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,102,58,0.08);
  }
  .faces-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .faces-banner-caption {
    padding: 16px 22px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-mid);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,249,244,0.98) 100%);
  }
  .faces-banner-caption strong {
    color: var(--renew-green);
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  }

  /* ---------- IMPACT - Animated Counters ---------- */
  .impact-section{
    background:var(--renew-green); padding:80px 0; color:#fff;
    position:relative; overflow:hidden;
  }
  .impact-section::before{
    content:''; position:absolute; right:-60px; top:-60px;
    width:320px; height:320px; border-radius:50%;
    background:rgba(255,255,255,0.05);
  }
  .impact-section::after{
    content:''; position:absolute; left:-100px; bottom:-100px;
    width:280px; height:280px; border-radius:50%;
    background:rgba(247,201,72,0.12);
  }
  .impact-label-light{
    font-size:15px; letter-spacing:3px; text-transform:uppercase;
    color:rgba(255,255,255,0.7); font-weight:600;
    display:inline-flex; align-items:center; gap:12px;
  }
  .impact-label-light::before{ content:''; height:1px; width:40px; background:rgba(255,255,255,0.45); }
  .impact-num{
    font-family:"gotham-book", sans-serif;
    font-size:clamp(40px,5vw,60px); font-weight:600; line-height:1;
    margin-bottom:8px;
  }
  .impact-num small{ font-size:.55em; color:var(--sun-gold); margin-left:4px; }
  .impact-text{ font-size:16px; color:rgba(255,255,255,0.8); line-height:1.55; }
.impact-divider {
   height: 2px;
    background: rgb(255 255 255 / 44%);
    grid-column: 1 / -1;
    margin: 20px 0;
}
  /* ---------- JOURNEY TIMELINE (interactive) ---------- */
  /* .journey-section{ padding:100px 0; background:#fff; }
  .journey-title{
    font-family:"gotham-book", sans-serif;
    font-size:clamp(28px,4vw,48px); font-weight:400; color:var(--earth);
    max-width: 560px;
  }
  .journey-title em{ color:var(--renew-green-dark); font-style:italic; }
  .timeline-wrap{ position:relative; margin-top:50px; }
  .timeline-line{
    position:absolute; top:50px; left:0; right:0; height:2px;
    background:linear-gradient(to right, transparent, var(--renew-green) 10%, var(--renew-green) 90%, transparent);
    z-index:0;
  }
  .timeline-progress{
    position:absolute; top:50px; left:0; height:2px;
    background:linear-gradient(to right, var(--sun-gold), var(--renew-green-dark));
    width:0; z-index:1; transition:width .6s ease;
    box-shadow:0 0 12px rgba(115,191,68,0.5);
  }
  .timeline-track{
    display:flex; gap:0; overflow-x:auto; padding-bottom:30px; padding-top:20px;
    scroll-behavior:smooth; position:relative; z-index:2;
    scrollbar-width:thin; scrollbar-color:var(--renew-green) #f0f0f0;
  }
  .timeline-track::-webkit-scrollbar{ height:6px; }
  .timeline-track::-webkit-scrollbar-thumb{ background:var(--renew-green); border-radius:6px; }
  .timeline-track::-webkit-scrollbar-track{ background:#f0f0f0; border-radius:6px; }
  .timeline-item{
    flex:0 0 280px; padding:50px 24px 24px 30px; position:relative;
    cursor:pointer; transition:all .35s;
  }
  .timeline-dot{
    position:absolute; top:42px; left:6px;
    width:18px; height:18px; border-radius:50%;
    background:#fff; border:3px solid #ccc;
    transition:all .35s; z-index:3;
  }
  .timeline-item:hover .timeline-dot,
  .timeline-item.active .timeline-dot{
    background:var(--renew-green); border-color:var(--sun-gold);
    transform:scale(1.3);
    box-shadow:0 0 0 6px rgba(115,191,68,0.15), 0 0 24px rgba(115,191,68,0.5);
  }
  .timeline-year{
    font-size:13px; font-weight:700; color:var(--renew-green-dark);
    letter-spacing:1.5px; margin-bottom:10px;
  }
  .timeline-event{ font-size:16px; font-weight:600; color:var(--earth); line-height:1.4; margin-bottom:8px; }
  .timeline-detail{ font-size:13px; color:var(--text-mid); line-height:1.6; }
  .timeline-nav{ display:flex; gap:10px; margin-top:20px; }
  .timeline-nav button{
    width:44px; height:44px; border-radius:50%;
    border:1.5px solid var(--renew-green); background:#fff;
    color:var(--renew-green-dark); cursor:pointer; transition:all .25s;
    display:flex; align-items:center; justify-content:center;
  }
  .timeline-nav button:hover{ background:var(--renew-green); color:#fff; transform:scale(1.05); } */




  /* ─── JOURNEY / TIMELINE ────────────── */
  .journey-section { padding: 100px 60px; background: white; }
  .journey-inner { max-width: 1100px; margin: 0 auto; }
  .journey-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
  .journey-header-text {}
  .journey-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(26px, 4vw, 48px); font-weight: 400; color: var(--earth);
  }
  .journey-title em { color: var(--saffron); }

  /* Alternating animated timeline */
  .timeline-track {
    display: grid;
    grid-template-rows: auto 40px auto;
    grid-template-columns: repeat(8, 230px);
    column-gap: 30px;
    overflow-x: auto; overflow-y: visible;
    padding: 10px 30px 30px;
    position: relative;
    scrollbar-width: thin; scrollbar-color: var(--renew-forest) #f0f0f0;
  }
  .timeline-track::-webkit-scrollbar { height: 4px; }
  .timeline-track::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 4px; }

  .timeline-line {
    grid-row: 2; grid-column: 1 / -1; align-self: center; height: 2px;
    /* background: linear-gradient(90deg, transparent, rgba(0,102,58,0.25) 3%, rgba(0,102,58,0.25) 97%, transparent); */
    background:linear-gradient(to right, transparent, var(--renew-green) 10%, var(--renew-green) 90%, transparent);
  }
  .timeline-item {
    display: flex; flex-direction: column; align-items: center; min-width: 0;
  }
  .timeline-item--up { grid-row: 1; align-self: end; }
  .timeline-item--down { grid-row: 3; align-self: start; }

  .timeline-connector {
    width: 2px; height: 30px;
     background: var(--renew-green); 
     position: relative; flex-shrink: 0;
  }
  .timeline-connector::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 13px; height: 13px; border-radius: 50%;
    background: #73bf44;
     border: 3px solid white;
    animation: timelinePulse 2.6s ease-in-out infinite;
  }
  .timeline-item--up .timeline-connector::after { bottom: -6px; }
  .timeline-item--down .timeline-connector::after { top: -6px; }
  @keyframes timelinePulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(0,102,58,0.35), 0 0 0 0 rgba(0,102,58,0.25); }
    50% { box-shadow: 0 2px 10px rgba(0,102,58,0.35), 0 0 0 6px rgba(0,102,58,0); }
  }

  .timeline-card {
    width: 100%; background: white; border-radius: 16px; padding: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .3s, box-shadow .3s;
  }
  .timeline-item:hover .timeline-card {
    transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,102,58,0.18);
  }
  .timeline-img {
    width: 100%; aspect-ratio: 1 / 0.92; border-radius: 10px; overflow: hidden; margin-bottom: 12px;
  }
  .timeline-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .timeline-year {
    font-size: 11px; font-weight: 700; color: white; letter-spacing: 1px;
    background: var(--renew-deep); display: inline-block; padding: 3px 12px;
    border-radius: 100px; margin-bottom: 10px;
  }
  .timeline-event { font-size: 14px; font-weight: 600; color: var(--renew-green); line-height: 1.35; margin-bottom: 6px; }
  .timeline-detail { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; }

 /* --renew-green:#8EC13F;
    --renew-green-dark:#4f9a2a; */
  /* ---------- VOICES (testimonial carousel) ---------- */
  .voices-section{
    padding:100px 0; background:#F3FAEE;
    position:relative; overflow:hidden;
  }
  .voices-section::before{
    content:''; position:absolute; right:-80px; top:50%;
    transform:translateY(-50%); width:360px; height:360px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(247,201,72,0.18), rgba(115,191,68,0.06) 60%, transparent 80%);
    pointer-events:none;
  }
  .voice-card{
    background:#fff; border-radius:20px; padding:36px;
    box-shadow:0 4px 24px rgba(0,0,0,0.06);
    transition:transform .35s, box-shadow .35s;
    position:relative; height:100%;
  }
  .voice-card:hover{ transform:translateY(-6px); box-shadow:0 18px 50px rgba(0,102,58,0.14); }
  .voice-card::before{
    content:'"'; position:absolute; top:14px; left:24px;
    font-family:"gotham-book", sans-serif; font-size:90px; line-height:1;
    color:rgba(115,191,68,0.14);
  }
  .voice-text{ font-size:15px; line-height:1.75; color:var(--text-mid); margin-bottom:24px; font-style:italic; position:relative; z-index:1; }
  .voice-person{ display:flex; align-items:center; gap:14px; }
  .voice-avatar{
    width:48px; height:48px; border-radius:50%;
    background:linear-gradient(135deg,var(--renew-green),var(--sun-gold));
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:600; font-size:18px;
  }
  .voice-name{ font-weight:600; font-size:15px; color:var(--earth); }
  .voice-role{ font-size:12px; color:var(--text-mid); }

  /* ---------- PLEDGE WALL ---------- */
  .pledge-wall{
    background:var(--renew-green); border-radius:24px;
    padding:34px; margin-top:50px; position:relative; overflow:hidden;
  }
  .pledge-wall::before{
    content:''; position:absolute; right:-60px; bottom:-60px;
    width:260px; height:260px; border-radius:50%;
    background:rgba(255,255,255,0.08);
  }
  .pledge-title{ color:#fff; font-weight:700; font-size:32px; margin-bottom:6px; }
  .pledge-sub{ color:rgba(255,255,255,0.75); font-size:16px; }
  .pledge-input-area{
    background:#fff; border-radius:14px; padding:16px 18px; position:relative;
  }
  .pledge-input-area i{
    position:absolute; top:4px; left:8px;
    color:rgba(0,0,0,0.18); font-size:32px;
  }
  .pledge-input-area textarea{
    width:100%; border:none; outline:none; resize:none;
    font-family:"gotham-book", sans-serif; font-size:14px;
    color:var(--text-dark); line-height:1.6;
    min-height:54px; padding-left:30px;
  }
  .pledge-counter{ text-align:right; font-size:11px; color:rgba(0,0,0,0.4); margin-top:4px; }
  .pledge-btn{
    background:var(--earth); color:#fff; border:none;
    padding:14px 28px; border-radius:100px; font-weight:600; font-size:16px;
    transition:all .25s; white-space:nowrap;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
    z-index: 1;
  }
  .pledge-btn:hover{ background:var(--renew-deep); transform:translateY(-2px); color:#fff; }
  .pledge-btn.submitted{ background:var(--sun-gold); color:var(--earth); }
  .pledge-count-num{
    font-family:"gotham-book", sans-serif; font-size:32px; font-weight:600; color:#fff;
    line-height:1;
  }
  .pledge-count-label{ font-size:12px; color:rgba(255,255,255,0.7); margin-top:2px; }

  /* ---------- JOIN / CTA ---------- */
  .join-section{
    padding:120px 0; text-align:center; position:relative; overflow:hidden;
    background:linear-gradient(160deg, var(--earth) 0%, var(--renew-forest) 100%);
    color:#fff;
  }
  .join-section::before{
    content:''; position:absolute; bottom:-150px; left:50%; transform:translateX(-50%);
    width:800px; height:400px;
    background:radial-gradient(ellipse, rgba(115,191,68,0.3), transparent 70%);
    pointer-events:none;
  }
  .join-sun{
    position:absolute; top:60px; left:-100px;
    width:90px; height:90px; border-radius:50%;
    background:radial-gradient(circle, rgba(247,201,72,0.6), rgba(115,191,68,0.25) 60%, transparent 80%);
    filter:blur(2px);
    animation:joinSunMove 14s ease-in-out infinite;
  }
  @keyframes joinSunMove{
    0%{ left:-10%; top:15%; }
    50%{ left:60%; top:8%; }
    100%{ left:110%; top:20%; }
  }
  .join-title{
    font-family:"gotham-book", sans-serif;
    /* font-size:clamp(32px,5vw,58px); */
    font-size:24px;
    color:var(--renew-forest);
     font-weight:300; line-height:1.15;
  }
  .join-title .hindi{
    display:block; font-family:"gotham-book", sans-serif;
    font-weight:700; color:var(--renew-green); margin-top:6px;
  }
  .join-sub{ color:rgba(255,255,255,0.65); font-size:16px; margin-top:18px; line-height:1.75; }
  .hashtag-row{ color:rgba(255,255,255,0.35); font-size:13px; margin-top:24px; }

  /* ---------- FOOTER ---------- */
  footer{
    background:#0A0A0A; padding:36px 0;
    color:rgba(255,255,255,0.55);
  }
  footer a{ color:rgba(255,255,255,0.5); text-decoration:none; font-size:13px; margin:0 12px; transition:color .2s; }
  footer a:hover{ color:var(--renew-green); }

  /* ---------- Reveal-on-scroll ---------- */
  .reveal{ opacity:0; transform:translateY(40px); transition:opacity .8s ease, transform .8s ease; }
  .reveal.visible{ opacity:1; transform:translateY(0); }
  .reveal.delay-1{ transition-delay:.12s; }
  .reveal.delay-2{ transition-delay:.24s; }
  .reveal.delay-3{ transition-delay:.36s; }

  /* ─── HERO PEOPLE (Humse) ─────────────── */
  .hero-people {
    position: relative; z-index: 2;
    max-width: 980px; margin: 30px auto 20px;
  }
  .hero-people-label {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-mid); font-weight: 600; margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .hero-people-label::before, .hero-people-label::after {
    content: ''; height: 1px; width: 32px; background: rgba(0,102,58,0.25);
  }
  .hero-people-label .hindi {
    font-family: 'Noto Serif Devanagari', serif; color: var(--saffron);
    font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 14px;
  }
  .hero-people-grid {
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px 96px;
    /* display: grid; grid-template-columns: repeat(4, 1fr); */
    /* gap: 24px 14px; */
  }
  .hero-person {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(16px);
    animation: fadeUp .8s ease both;
  }
  .hero-person:nth-child(1) { animation-delay: .9s; }
  .hero-person:nth-child(2) { animation-delay: 1.02s; }
  .hero-person:nth-child(3) { animation-delay: 1.14s; }
  .hero-person:nth-child(4) { animation-delay: 1.26s; }
  .hero-person:nth-child(5) { animation-delay: 1.38s; }
  .hero-person:nth-child(6) { animation-delay: 1.5s; }
  .hero-person-photo {
    width: 76px; height: 76px; border-radius: 50%; overflow: hidden;
    border: 3px solid white; background: var(--renew-mint);
    box-shadow: 0 6px 18px rgba(0,102,58,0.22), 0 0 0 3px rgba(116,185,69,0.32);
    transition: transform .3s, box-shadow .3s;
  }
  .hero-person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-person:hover .hero-person-photo {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 26px rgba(0,102,58,0.3), 0 0 0 3px rgba(247,201,72,0.45);
  }
  .hero-person-name {
    font-size: 10.5px; color: var(--earth-mid); text-align: center; line-height: 1.3;
  }
  .hero-person-name span {
    display: block; color: var(--saffron); font-weight: 600;
    font-size: 9.5px; text-transform: uppercase; letter-spacing: .4px; margin-top: 1px;
  }
  .hero-person-caption {
    font-size: 10.5px; color: var(--text-mid); text-align: center; line-height: 1.35;
    max-width: 120px;
  }
  .hero-people-caption {
    text-align: center; font-size: 24px; color: var(--earth-mid);
    margin-top: 28px; font-style: italic;
    /* font-family: 'Cormorant Garamond', serif;  */
    line-height: 1.4;
  }
  .your-story {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
  }

  .your-pledge {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
  }
  .hero-people-caption strong { color: var(--renew-green); font-style: normal; font-weight: 600; }
  @media (max-width: 600px) {
    .hero-people-caption { font-size: 16px; }
  }
 @media (max-width: 900px) {
  .hero-people-grid {
    /*grid-template-columns: repeat(3, 1fr);*/
    gap: 20px 14px;
  }
}
  @media (max-width: 600px) {
    .hero-person-photo { width: 64px; height: 64px; }
    .hero-people-grid { gap: 18px 10px; }
  }
  
 
   
   @media (max-width: 600px) {

  .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
   }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce){
    *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width:768px){
    .hero{ padding:100px 0 60px; }
    .sun-banner{ width:100px; height:100px; }
    .timeline-item{ flex:0 0 240px; }
     .img-fluid{
         min-width:55px;
        }
        .share-prompt-image {
    position: relative;
    right: 40px;
    left: -40px;
    bottom: -40px;
    height: 100%;
    max-width:100%;
    /* float: right; */
}
.share-prompt-text{
    max-width:100%;
}
.share-prompt-image img {
    object-position: left;
    width: 122%;
    height: 100%;
    /* border-top-left-radius: 348px; */
    /* border-top-right-radius: 20px; */
    /* border-bottom-left-radius: 0px; */
    /* border-bottom-right-radius: 20px; */
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    display: block;
    clip-path: none;
}
      
  }
    /* @media only screen and (max-width: 450px) { */
    @media (width:430px){
      .navbar-custom{
        top:8%
      }
      
      .video-wrapper {
        height:auto
      }
      
  
    }
    
    @media (max-width:576px){
        
        .img-fluid{
         min-width:55px;
        }
      
      
      .video-wrapper {
        height:auto
      }
      .footer-social_wrapper.social-btns{
              flex-wrap: wrap !important;
 
      }
      .your-story{
           display:flex;
           flex-direction:column;
           gap:12px;
           align-items: center;
           width: 100%;
        }

        .your-pledge{
            display: flex;
            flex-wrap:wrap; 
            justify-content:center;
            align-items: center;
            gap:12px
       }
       .share-row{ 
           /*margin-top:8px;*/
           margin: 8px 26px;

         }
  
    }

    /*@media (830px >= width >= 440px) {*/
    /*  .navbar-custom{*/
    /*    top:6%*/
    /*  }*/
    /*}*/
      
  .share-btn {
    background: linear-gradient(135deg, var(--saffron), #004F2D);
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 1px -1px 7px 4px rgb(1 133 76 / 45%);
    transition: all .25s;
    text-decoration:none;
}

/* ---------- PLEDGE WALL ---------- */
  .pledge-wall{
    background:var(--renew-green); border-radius:24px;
    padding:34px; margin-top:50px; position:relative; overflow:hidden;
  }
  .pledge-wall::before{
    content:''; position:absolute; right:-60px; bottom:-60px;
    width:260px; height:260px; border-radius:50%;
    background:rgba(255,255,255,0.08);
  }
  .pledge-title{ color:#fff; font-weight:700; font-size:32px; margin-bottom:6px; }
  .pledge-sub{ color:rgba(255,255,255,0.75); font-size:16px; }
  .pledge-input-area{
    background:#fff; border-radius:14px; padding:16px 18px; position:relative;
  }
  .pledge-input-area i{
    position:absolute; top:4px; left:8px;
    color:rgba(0,0,0,0.18); font-size:32px;
  }
  .pledge-input-area textarea{
    width:100%; border:none; outline:none; resize:none;
    font-family:"gotham-book", sans-serif; font-size:14px;
    color:var(--text-dark); line-height:1.6;
    min-height:54px; padding-left:30px;
  }
  .pledge-counter{ text-align:right; font-size:11px; color:rgba(0,0,0,0.4); margin-top:4px; }
  .pledge-btn{
    background:var(--earth); color:#fff; border:none;
    padding:14px 28px; border-radius:100px; font-weight:600; font-size:16px;
    transition:all .25s; white-space:nowrap;
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
    z-index: 1;
  }
  .pledge-btn:hover{ background:var(--renew-deep); transform:translateY(-2px); color:#fff; }
  .pledge-btn.submitted{ background:var(--sun-gold); color:var(--earth); }
  .pledge-count-num{
    font-family:"gotham-book", sans-serif; font-size:32px; font-weight:600; color:#fff;
    line-height:1;
  }
  .pledge-count-label{ font-size:12px; color:rgba(255,255,255,0.7); margin-top:2px; }
.video-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
    padding: 10px 6px;
    position: relative;
}
.video-strip::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Reduce effect at top, stronger at bottom */
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 1) 100%
    );

    pointer-events: none;
}

    /* ─── DISTRIBUTORS & BUYERS ─────────────── */
  .distributor-section {
     padding: 100px 60px; 
     background: #F7FAF5; }
  .distributor-inner { max-width: 100%; margin: 0 auto; }
  .distributor-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: clamp(26px, 4vw, 48px); font-weight: 400; 
    color: var(--renew-green-dark);
    margin-bottom: 16px;
  }
  .distributor-title em { color: var(--renew-green); font-style: italic; }
  .distributor-sub { font-size: 16px; color: var(--text-mid); line-height: 1.7; max-width: 640px; margin-bottom: 48px; }
  .distributor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 600px) {
     .distributor-grid{ grid-template-columns:  repeat(1, 1fr);}
   }
  .distributor-card {
    position: relative; overflow: hidden;
    background: white; border-radius: 20px; padding: 34px 28px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-decoration: none; display: block; transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(0,102,58,0.08);
  }
  .distributor-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,102,58,0.14); }
  .distributor-card-num {
    position: absolute; top: -14px; right: 6px;
    /* font-family: 'Cormorant Garamond', serif;  */
    font-weight: 600; font-size: 76px;
    color: rgb(115 191 68 / 12%); line-height: 1; pointer-events: none;
  }
  .distributor-card-title { font-size: 17px; font-weight: 600; color: var(--renew-green); margin-bottom: 8px; position: relative; }
  .distributor-card-text { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; position: relative; }
  .distributor-card-link { font-size: 13px; font-weight: 600; color: var(--renew-green); position: relative; display: inline-block; }
  .distributor-card-linkrow { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
  .distributor-card--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--renew-green) 0%, var(--renew-forest)); border: none;
    padding: 40px 44px;
    display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  }
  .distributor-card--featured .distributor-card-num { color: rgba(255,255,255,0.08); }
  .distributor-card--featured .distributor-card-title { color: white; font-size: 21px; }
  .distributor-card--featured .distributor-card-text { color: rgba(255,255,255,0.6); margin-bottom: 0; max-width: 480px; }
  .distributor-card--featured .distributor-card-link {
    color: #ffffff; background: var(--earth); 
    padding: 13px 26px; border-radius: 100px;
    white-space: nowrap; flex-shrink: 0;
  }

  
             /*  drawer styling */
.drawerb {
  position: fixed;
  bottom: 10px;
  right: 0;
  width: auto; 
  height: 30vh;
  /*background-color: #ffffff;*/
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 9999; 
  border-radius:20px;
  
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawerb.open {
  transform: translateX(0);
}

.drawerb-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawerb-image {
  width: 100%;
  height: 100%;
  border-radius:20px;
  object-fit: cover;
}
.drawerb-link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slide{
    width:100% !important;
}
.img-fluid{
    width:100% !important;
}

  
        
        .section-desc {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 32px;
        }

                        /* ── VIDEO EMBED ── */
        .video-embed-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            max-height: 450px;
            overflow: hidden;
            border-radius: 14px;
            margin-bottom: 48px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            
        }
        .video-embed-wrapper iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border-radius: 14px;
        }
        .section-desc {
            font-size: 15px;
            color: var(--muted);
            margin-bottom: 32px;
        }
        
        
        
  .enquiry-sticky-btn{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:1200;
    background:var(--renew-green);
    color:#fff;
    border:none;
    border-radius:12px 0 0 12px;
    padding:14px 12px;
    writing-mode:vertical-rl;
    transform-origin:center;
    letter-spacing:.5px;
    font-weight:600;
    box-shadow:0 8px 22px rgba(115,191,68,0.35);
    transition:background .25s ease;
  }
  .enquiry-sticky-btn:hover{ background:var(--renew-green-dark); }

  .enquiry-drawer-backdrop{
    position:fixed;
    inset:0;
    background:rgba(16,37,27,0.35);
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
    z-index:1198;
  }

  .enquiry-drawer{
    position:fixed;
    top:0;
    right:0;
    width:min(460px,92vw);
    height:100vh;
    background:var(--chalk);
    border-left:1px solid var(--line-soft);
    box-shadow:-16px 0 36px rgba(0,102,58,0.15);
    transform:translateX(100%);
    transition:transform .32s ease;
    z-index:1199;
    overflow-y:auto;
  }

  .enquiry-drawer.open{ transform:translateX(0); }
  .enquiry-drawer-backdrop.open{ opacity:1; visibility:visible; }

  .enquiry-drawer-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid var(--line-soft);
    background:var(--sky-dawn);
  }
  .enquiry-drawer-title{
    margin:0;
    font-size:22px;
    color:var(--renew-deep);
    font-weight:700;
  }
  .enquiry-close-btn{
    border:none;
    background:transparent;
    color:var(--renew-deep);
    font-size:24px;
    line-height:1;
  }

  .enquiry-drawer-body{ padding:20px; }
  .enquiry-label{
    font-size:13px;
    color:var(--text-mid);
    font-weight:600;
    margin-bottom:6px;
  }
  .enquiry-control{
    border:1px solid rgba(115,191,68,0.35);
    border-radius:10px;
    min-height:44px;
    color:var(--text-dark);
    box-shadow:none !important;
  }
  .enquiry-control:focus{
    border-color:var(--renew-green);
    box-shadow:0 0 0 .2rem rgba(115,191,68,0.16) !important;
  }
  .enquiry-consent{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:var(--text-mid);
    font-size:13px;
  }


          .collage-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 60px;
          }
          
          .collage-row-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
          }
          
          .collage-row-middle {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 20px;
            align-items: center;
          }
          
          .collage-row-bottom {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
          }
          
          .collage-image {
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            background-color: #e0e0e0;
          }
          
          .collage-row-top .collage-image,
          .collage-row-bottom .collage-image {
            height: 240px;
          }
          
          .collage-row-middle .collage-image {
            height: 380px;
          }
          
          .collage-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            object-position: right;
          }
          
          .collage-center {
            display: flex;
            justify-content: center;
            align-items: center;
          }
          
          .collage-center-card {
            margin: 20px 0px;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f1e8 100%);
    padding: 23px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.30);
    max-width: 680px;
          }
          
          .collage-quote {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.4;
            font-family: 'DM Sans', sans-serif;
          }
          
          .collage-subtext {
            font-size: 15px;
            color: #555;
            margin-bottom: 24px;
            line-height: 1.6;
            font-family: 'DM Sans', sans-serif;
          }
          
          .collage-profile {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid #2d7d4a;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(45, 125, 74, 0.2);
          }
          
          .collage-profile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
          
          .collage-author {
            font-size: 15px;
            font-weight: 600;
            color: #2d7d4a;
            margin-bottom: 6px;
            font-family: 'DM Sans', sans-serif;
          }
          
          .collage-title {
            font-size: 13px;
            color: #777;
            font-family: 'DM Sans', sans-serif;
          }
          
          /* ---------------- Converted classes from HTML refactor ---------------- */
.nav-brand-icon,
.nav-toggle-icon {
  font-size: 18px;
  color: var(--renew-deep);
}

.hero-stats-row {
  max-width: 920px;
}

.video-embed-wrap {
  margin-top: 20px;
}

.desh-section-label {
  color: var(--renew-deep);
}

.desh-intro {
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 300;
  margin-top: 18px;
}

.collage-wrapper-clean {
  padding: 0;
}

.hidden-inline-row {
  display: none;
}

.join-container {
  position: relative;
  z-index: 1;
}

.join-section-label {
  color: var(--sun-gold);
}

.join-title-custom {
  max-width: 1100px;
}

.join-cta-btn {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.distributor-card-num-light {
  color: #ffffff52;
}

.footer-logo-circle {
  width: 28px;
  height: 28px;
}

.footer-logo-icon {
  font-size: 13px;
}

.footer-brand-name {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.footer-brand-accent {
  color: var(--renew-green);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.film-play-inner {
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
}

.film-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  flex-wrap: wrap;
  gap: 16px;
}

.film-share-label {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.film-share-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-story-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
}

.share-story-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-story-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 340px;
  line-height: 1.5;
}

.share-story-hash {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.pledge-card-shell {
  border-radius: 20px;
}

.pledge-aside {
  flex: 0 0 180px;
  position: relative;
  z-index: 1;
}

.pledge-input-area--compact {
  min-width: 240px;
  position: relative;
  z-index: 1;
}

.pledge-form-field {
  width: 100%;
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
}

.pledge-form-textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.03);
}

.pledge-inline-shell {
  position: relative;
  z-index: 1;
}

.impact-section--hidden {
  display: none;
}

.journey-title-legacy {
  white-space: nowrap;
}

.journey-link {
  font-size: 14px;
  color: var(--renew-green);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.timeline-item--col1 { grid-column: 1; }
.timeline-item--col2 { grid-column: 2; }
.timeline-item--col3 { grid-column: 3; }
.timeline-item--col4 { grid-column: 4; }
.timeline-item--col5 { grid-column: 5; }
.timeline-item--col6 { grid-column: 6; }
.timeline-item--col7 { grid-column: 7; }
.timeline-item--col8 { grid-column: 8; }

.timeline-card--delay-0 { transition-delay: 0s; }
.timeline-card--delay-8 { transition-delay: 0.08s; }
.timeline-card--delay-16 { transition-delay: 0.16s; }
.timeline-card--delay-24 { transition-delay: 0.24s; }
.timeline-card--delay-32 { transition-delay: 0.32s; }
.timeline-card--delay-40 { transition-delay: 0.4s; }
.timeline-card--delay-48 { transition-delay: 0.48s; }
.timeline-card--delay-56 { transition-delay: 0.56s; }

.voices-section--hidden {
  display: none;
}

.voice-avatar--rounded {
  border-radius: 30px;
}

/* ---------------- end converted classes ---------------- */

          
          @media (max-width: 1200px) {
            .collage-row-top,
            .collage-row-bottom {
              grid-template-columns: repeat(2, 1fr);
            }
            
            .collage-row-middle {
              grid-template-columns: 1fr;
            }
            
            .collage-row-middle .collage-image:nth-child(1),
            .collage-row-middle .collage-image:nth-child(3) {
              display: none;
            }
          }

          @media only screen and (max-width: 1440px) {
            /*    .copyright.copyright-new*/
            /*Specificity: (0,2,0)*/
            /*{*/
            /*        gap: 0px;*/
            /*    }*/
            }
            
            

            /* @media (min-width: 1400px) {
                 .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
              max-width: 1320px;
              padding: 0px 50px !important;
              max-width: 100% !important;
            }
          } */



