/* ============================================================
   MAHA-SAINIK CANTEEN  —  Main Stylesheet
   Color Palette: Deep Forest Green + Bright Yellow
   Typography: DM Serif Display + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Bebas+Neue&display=swap');

/* ── TOKENS ── */
:root {
  --fg:        #1b422a;   /* darkest forest */
  --fg2:       #163b1b;   /* dark green     */
  --fg3:       #1e5226;   /* mid green      */
  --fg4:       #286b30;   /* lighter green  */
  --fg5:       #3a8042;   /* accent green   */
  --yl:        #fcdb5a;   /* pure yellow  more mosty  */  
  --yl2:       #fcdb5a;   /* bright yellow  guess hour*/
  --yl3:       #fcdb5a;   /* light yellow   */
  --yl-dark:      #fcdb5a;   /* muted yellow   */
  --cream:     #f8f6ee;
  --cream2:    #f0ede0;
  --white:     #ffffff;
  --text:      #1a1a1a;
  --text2:     #444;
  --text3:     #777;
  --ff-head:   'DM Serif Display', serif;
  --ff-body:   'DM Sans', sans-serif;
  --ff-display:'Bebas Neue', sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--fg3); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--yl); color: var(--fg); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
  background-color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 140px;
  position: relative;
  width: 140px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--yl) transparent var(--yl);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 52%;
  left: 52%;
  transform: translate(-50%, -50%);
  height: 80px;
  width: 80px;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--fg);
  padding: 9px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--yl2);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--yl2); transition: color .25s; }
.topbar a:hover { color: var(--white); }
.topbar i { margin-right: 6px; color: var(--yl); font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; justify-content: center; }
.tb-items { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.tb-divider { width: 1px; height: 14px; background: white; }

/* hide lesser items on smaller screens to avoid overflow */
@media (max-width: 1100px) {
  .tb-left span:nth-child(5),
  .tb-left span:nth-child(5) + .tb-divider { display: none; }
}
@media (max-width: 900px) {
  .tb-left span:nth-child(3),
  .tb-left span:nth-child(3) + .tb-divider { display: none; }
}
@media (max-width: 700px) {
  .tb-left { display: none; }
}
/* ── Translate button in topbar ── */
.tb-translate {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.tb-translate i {
  color: var(--yl);
  font-size: 14px;
}
.tb-translate select {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: .5px;
  padding: 3px 6px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: border-color .25s, color .25s;
}
.tb-translate select:hover {
  border-color: var(--yl);
  color: var(--yl);
}
.tb-translate select option {
  background: var(--fg);
  color: var(--white);
}

/* hide the default Google bar that appears at top */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 800;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.12); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
/* Logo */
.logo {
  line-height: 1;
}
 .logo img {
  max-height: 55px;
  max-width: 500px;
  margin-right: 8px;
}

/* Nav links */
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 13.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fg);
  padding: 6px 0; display: block;
  position: relative; transition: color .25s;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--yl);
  transition: width .35s var(--ease);
}
.nav-menu > li:hover > a { color: var(--fg4); }
.nav-menu > li:hover > a::after { width: 100%; }
.nav-menu > li.active > a { color: var(--fg4); }
.nav-menu > li.active > a::after { width: 100%; }
/* Dropdown */
.nav-menu .drop {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white);
  min-width: 200px;
  border-top: 3px solid var(--yl);
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
  border-radius: 0 0 6px 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  z-index: 100;
}
.nav-menu > li:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop li a {
  display: block; padding: 11px 18px;
  font-size: 13px; font-weight: 500; color: var(--text2);
  border-bottom: 1px solid var(--cream2);
  transition: background .2s, color .2s, padding-left .2s;
}
.drop li:last-child a { border-bottom: none; }
.drop li a:hover { background: var(--cream); color: var(--fg4); padding-left: 24px; }
/* CTA button */
.nav-cta {
  background: var(--yl); color: var(--fg) !important;
  padding: 11px 22px; border-radius: px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .3s, color .3s, transform .2s;
}
.nav-cta:hover { background: var(--fg); color: #fff !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--fg); transition: .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--yl);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  padding: 20px 24px;
  z-index: 799;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0;
  font-weight: 600; font-size: 14px; color: var(--fg);
  border-bottom: 1px solid var(--cream2);
  text-transform: uppercase; letter-spacing: 1px;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
 
.hero {
  position: relative;
  height: 94vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--fg);
}
 
/* ── SLIDES ── */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
 
/* Image fills full frame — NO brightness filter, fully visible */
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);          /* ← full brightness, no dimming */
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
 

.hero-diagonal { display: none; }
 
/* ── CONTENT WRAPPER ── */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
 
/* ── THE KEY CHANGE: frosted glass card wraps ONLY the text ── */
.hero-text {
  max-width: 620px;
  position: relative;
 
  /* Semi-transparent dark panel — only covers the text area
  background: rgba(56, 74, 58, 0.68);
 
  /* Frosted glass blur — blurs only what's behind this panel */
  /* backdrop-filter: blur(1px) saturate(1);
  -webkit-backdrop-filter: blur(1px) saturate(1); */
 
  /* Soft left border accent */
  /* border-left: 4px solid var(--yl); */
 
  /* Shape */
  /* border-radius: 0 12px 12px 0;
  padding: 48px 44px 48px 44px; */
 
  /* Subtle inner highlight on top edge */
  /* box-shadow:
    inset 0 1px 0 rgba(245, 225, 0, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.35);  */
}
 
/* Optional: very faint noise texture overlay on the card */
.hero-text::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.01'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.18;
}
 
/* ── EYEBROW LABEL ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yl);
  margin-bottom: 18px;
  animation: fadeSlideUp .65s var(--ease-out) both;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yl);
  flex-shrink: 0;
}
 
/* ── HEADLINE ── */
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeSlideUp .75s var(--ease-out) .12s both;
}
.hero-h1 em {
  color: var(--yl2);
  font-style: normal;
}
 
/* ── BODY TEXT ── */
.hero-p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.78;
  margin-bottom: 30px;
  animation: fadeSlideUp .75s var(--ease-out) .26s both;
}
 
/* ── BUTTONS ── */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideUp .75s var(--ease-out) .42s both;
}
 
.btn-yl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yl);
  color: var(--fg);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  border: 2px solid transparent;
}
.btn-yl:hover {
  background: var(--yl2);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(245, 225, 0, 0.35);
}
.btn-yl i { font-size: 11px; transition: transform .3s; }
.btn-yl:hover i { transform: translateX(4px); }
 
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all .3s var(--ease);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--yl);
  color: var(--yl);
  background: rgba(245, 225, 0, 0.06);
}
 
/* ── SLIDER DOTS ── */
.hero-dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all .3s;
}
.hero-dot.on {
  background: var(--yl);
  transform: scale(1.35);
}
 
/* ── SLIDER ARROW BUTTONS ── */
.hero-nav {
  position: absolute;
  bottom: 32px;
  right: 5%;
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 22, 10, 0.5);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.hero-nav-btn:hover {
  background: var(--yl);
  border-color: var(--yl);
  color: var(--fg);
}
 
/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: bounceDown 2.2s ease infinite;
  z-index: 2;
}
.scroll-hint i { color: var(--yl); font-size: 16px; }
 
/* ── STATS BAR ── */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 3;
}
.hstat {
  text-align: center;
  padding: 15px 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.hstat:last-child { border-right: none; }
.hstat .num {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--fg);
  display: block;
  line-height: 1;
}
.stat-card .lbl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yl) !important;
  margin-top: 6px;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-wrap {
  height: 100px; /* fixed height for all icons */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-icon {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
}
 
/* ── KEYFRAMES ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { height: 85vh; }
 
  .hero-text {
    /* On mobile: full-width card from left edge */
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 4px solid var(--yl);
    padding: 32px 20px;
    background: rgba(8, 22, 10, 0.78);
    /* Push to bottom of hero on mobile */
    position: absolute;
    bottom: 80px;
    left: 0; right: 0;
  }
 
  .hero-content {
    align-items: flex-end;
  }
 
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .hero-nav { display: none; }
}
 
@media (max-width: 480px) {
  .hero-text { padding: 24px 16px; bottom: 72px; }
  .hero-h1   { font-size: 30px; }
  .hero-p    { font-size: 14px; }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: 50px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--fg); color: var(--white); }
.section-cream { background: var(--cream); }
.section-mid { background: var(--fg2); color: var(--white); }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: var(--fg4);
  margin-bottom: 12px;
}
.s-label::before { content: ''; width: 28px; height: 2px; background: var(--yl); }
.s-label.light { color: var(--yl2); }
.s-label.light::before { background: var(--yl); }
.s-title {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--fg); line-height: 1.15; margin-bottom: 16px;
}
.s-title.light { color: var(--white); }
.s-title span { color: var(--fg4); }
.s-title.light span { color: var(--yl2); }
.s-desc { font-size: 15.5px; color: var(--text3); line-height: 1.75; max-width: 560px; }
.s-desc.light { color: rgba(255,255,255,.65); }
.s-head-center { text-align: center; }
.s-head-center .s-label { justify-content: center; }
.s-head-center .s-desc { margin: 0 auto; }

/* ============================================================
   ABOUT SECTION (home)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 12px;
}
.ac-img {
  border-radius: 6px; overflow: hidden;
  position: static;
}
.ac-img.tall { grid-row: span 2; }
.ac-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.ac-img:hover img { transform: scale(1.06); }
.ac-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--yl); color: var(--fg);
  padding: 10px 14px; border-radius: 4px; text-align: center;
}
.ac-badge .big { font-family: var(--ff-display); font-size: 28px; line-height: 1; display: block; }
.ac-badge .sm { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; }
.about-text p { font-size: 15.5px; color: var(--text2); line-height: 1.8; margin-bottom: 15px; }
.about-quote-box {
  border-left: 4px solid var(--yl);
  background: var(--white);
  padding: 18px 20px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}
.about-quote-box p {
  font-family: var(--ff-head); font-size: 17px; font-style: italic;
  color: var(--fg2); margin: 0;
}
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 10px 0; }
.feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px; background: var(--cream); border-radius: 6px;
  transition: transform .25s, background .25s;
}
.feat:hover { transform: translateY(-3px); background: var(--cream2); }
.feat-ic {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--fg); display: flex; align-items: center; justify-content: center;
}
.feat-ic i { color: var(--yl); font-size: 15px; }
.feat-txt strong { font-size: 14px; color: var(--fg); display: block; margin-bottom: 3px; }
.feat-txt small { font-size: 12.5px; color: var(--text3); }




/* ================================================================
   ECOSYSTEM SECTION — CLEAN FLAT COLORS
================================================================ */
.eco-section{
  padding:60px 0 80px;
  background:var(--white);
  position:relative;overflow:hidden;
}
.eco-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%,rgba(40,107,48,.06) 0%,transparent 70%),
    radial-gradient(ellipse 50% 40% at 100% 0%,rgba(200,168,75,.06) 0%,transparent 65%);
  pointer-events:none;
}

/* ── HEADER ── */
.eco-header{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:56px;
}
.eco-header-left h2{
  font-family:var(--ff-head);
  font-size:clamp(26px,3.2vw,44px);
  color:var(--fg);line-height:1.12;
  margin-bottom:20px;
}
.eco-header-left h2 span{color:var(--fg4);}
.eco-pill-row{display:flex;gap:10px;flex-wrap:wrap;}
.eco-pill{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--cream);border:1.5px solid var(--cream2);
  color:var(--fg3);font-size:12px;font-weight:700;
  letter-spacing:.8px;text-transform:uppercase;
  padding:7px 14px;border-radius:40px;
  transition:background .25s,border-color .25s,color .25s;
}
.eco-pill i{font-size:10px;color:var(--fg4);}
.eco-pill:hover{background:var(--fg);color:var(--yl2);border-color:var(--fg);}
.eco-header-right p{
  font-size:15.5px;color:var(--text3);
  line-height:1.8;
}

/* ── CARDS GRID ── */
.eco-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:56px;
}

/* ── BASE CARD ── */
.eco-card{
  border-radius:20px;
  overflow:hidden;
  position:relative;
  background:var(--white);
  transition:transform .4s var(--ease-out),box-shadow .4s;
  display:flex;flex-direction:column;
  border:2.5px solid transparent;
}
.eco-card:hover{
  transform:translateY(-10px);
  box-shadow:0 32px 72px rgba(11,31,14,.15);
}

/* ── CARD 1 — PARTNERS (deep green) ── */
.card-partners{
  border-color: var(--fg);
  box-shadow: 0 8px 32px rgba(11,31,14,0.10);
}
.card-partners .eco-card-topbar{
  height:6px;
  background: var(--fg);
}

/* ── CARD 2 — SUPPLIERS (gold) ── */
.card-suppliers{
  border-color: var(--yl);
  box-shadow: 0 8px 32px rgba(200,168,75,0.18);
}
.card-suppliers .eco-card-topbar{
  height:6px;
  background: var(--yl);
}

/* ── CARD 3 — CUSTOMERS (forest green) ── */
.card-customers{
  border-color: #3a8042;
  box-shadow: 0 8px 32px rgba(58,128,66,0.12);
}
.card-customers .eco-card-topbar{
  height:6px;
  background: #3a8042;
}

/* ── CARD ICON HEADER ── */
.eco-card-head{
  padding:32px 28px 20px;
  display:flex;align-items:center;gap:18px;
  position:relative;overflow:hidden;
}
.eco-card-head::after{
  content:attr(data-num);
  position:absolute;right:20px;top:50%;transform:translateY(-50%);
  font-family:var(--ff-disp);font-size:80px;
  opacity:.04;color:var(--fg);line-height:1;
  pointer-events:none;user-select:none;
}
.eco-card-icon{
  width:66px;height:66px;border-radius:16px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  transition:transform .35s var(--ease-out);
}
.eco-card:hover .eco-card-icon{transform:scale(1.08) rotate(-5deg);}

.card-partners  .eco-card-icon{
  background: var(--fg);
  color: var(--yl);
  box-shadow: 0 6px 20px rgba(11,31,14,0.20);
}
.card-suppliers .eco-card-icon{
  background: var(--yl);
  color: var(--fg);
  box-shadow: 0 6px 20px rgba(200,168,75,0.30);
}
.card-customers .eco-card-icon{
  background: #3a8042;
  color: #fff;
  box-shadow: 0 6px 20px rgba(58,128,66,0.25);
}

/* ── CARD TAG ── */
.eco-card-tag{
  font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  padding:4px 12px;border-radius:20px;display:inline-block;margin-bottom:6px;
}
.card-partners  .eco-card-tag{background:rgba(11,31,14,.08);color:var(--fg);}
.card-suppliers .eco-card-tag{background:rgba(200,168,75,.18);color:#8a6520;}
.card-customers .eco-card-tag{background:rgba(58,128,66,.1);color:#286b30;}

.eco-card-head-text h3{
  font-family:var(--ff-head);font-size:20px;color:var(--fg);line-height:1.2;
}

/* ── CARD BODY ── */
.eco-card-body{
  padding:0 28px 32px;
  flex:1;display:flex;flex-direction:column;
}
.eco-card-body::before{
  content:'';display:block;height:1.5px;
  margin-bottom:20px;
}
.card-partners  .eco-card-body::before{background:var(--fg);opacity:.12;}
.card-suppliers .eco-card-body::before{background:var(--yl);opacity:.4;}
.card-customers .eco-card-body::before{background:#3a8042;opacity:.2;}

.eco-card-body p{
  font-size:14px;color:var(--text3);
  line-height:1.75;margin-bottom:24px;flex:1;
}

/* ── CTA BUTTONS ── */
.eco-cta{
  display:inline-flex;align-items:center;gap:10px;
  font-size:13px;font-weight:700;letter-spacing:.6px;
  text-transform:uppercase;
  padding:11px 22px;
  border-radius:8px;
  border:2px solid transparent;
  cursor:pointer;
  font-family:var(--ff-body);
  transition:all .25s;
  text-decoration:none;
  width:fit-content;
}
.eco-cta i{font-size:11px;transition:transform .25s;}
.eco-cta:hover i{transform:translateX(4px);}

.card-partners  .eco-cta{background:var(--fg);color:var(--yl);border-color:var(--fg);}
.card-partners  .eco-cta:hover{background:transparent;color:var(--fg);}

.card-suppliers .eco-cta{background:var(--yl);color:var(--fg);border-color:var(--yl);}
.card-suppliers .eco-cta:hover{background:transparent;color:#8a6520;border-color:var(--yl);}

.card-customers .eco-cta{background:#3a8042;color:#fff;border-color:#3a8042;}
.card-customers .eco-cta:hover{background:transparent;color:#3a8042;}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .eco-header{grid-template-columns:1fr;}
  .eco-grid{grid-template-columns:1fr;max-width:520px;margin-left:auto;margin-right:auto;}
}
@media(max-width:600px){
  .eco-section{padding:48px 0 60px;}
  .eco-header{margin-bottom:40px;}
}











/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.svc-card {
  background: var(--white); border-radius: 10px;
  overflow: hidden; border: 1px solid var(--cream2);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 28px 64px rgba(11,31,14,.14); }
.svc-card-img { height: 210px; overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-phase {
  position: absolute; top: 14px; left: 14px;
  background: var(--yl); color: var(--fg);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
}
.svc-body { padding: 26px; }
.svc-num {
  font-family: var(--ff-display); font-size: 52px; color: var(--cream2);
  line-height: 1; margin-bottom: 6px;
}
.svc-body h3 { font-family: var(--ff-head); font-size: 21px; color: var(--fg); margin-bottom: 10px; }
.svc-body p { font-size: 14px; color: var(--text3); line-height: 1.7; margin-bottom: 18px; }
.link-arr {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fg4);
  transition: color .25s, gap .25s;
}
.link-arr:hover { color: var(--fg); gap: 11px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-band { background: var(--fg); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  text-align: center; padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-card i { font-size: 32px; color: var(--yl); margin-bottom: 12px; display: block; }
.stat-card .num {
  font-family: var(--ff-display); font-size: 52px; color: var(--white);
  line-height: 1; display: block; margin-bottom: 8px;
}
.stat-card .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-visual {
  background: var(--fg);
  border-radius: 10px; padding: 48px;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(245,225,0,.05);
}
.why-visual::after {
  content: ''; position: absolute; bottom: -50px; left: -50px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(245,225,0,.04);
}
.big-q { font-family: var(--ff-display); font-size: 120px; color: var(--yl); opacity: .15; line-height: .7; display: block; }
.why-quote { font-family: var(--ff-head); font-size: 20px; color: var(--white); font-style: italic; line-height: 1.6; margin-bottom: 28px; }
.why-attr { display: flex; align-items: center; gap: 14px; }
.why-attr-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--yl); }
.why-attr-name { font-weight: 700; color: var(--white); font-size: 15px; }
.why-attr-role { font-size: 11.5px; color: rgba(255,255,255,.5); letter-spacing: 1px; }
.why-list { list-style: none; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--cream2);
}
.why-item:last-child { border-bottom: none; }
.wi-ic {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.wi-ic i { color: var(--fg4); font-size: 18px; }
.why-item:hover .wi-ic { background: var(--fg); }
.why-item:hover .wi-ic i { color: var(--yl); }
.wi-text h4 { font-size: 15.5px; color: var(--fg); font-weight: 700; margin-bottom: 5px; }
.wi-text p { font-size: 14px; color: var(--text3); line-height: 1.65; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative; padding: 0;
  min-height: 520px; overflow: hidden;
}
.video-bg { width: 100%; height: 520px; object-fit: cover; filter: brightness(.35); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,14,.8) 0%, rgba(30,82,38,.4) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
}
.play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--yl); color: var(--fg);
  font-size: 28px; display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  box-shadow: 0 0 0 0 rgba(245,225,0,.5);
  animation: pulse-ring 2.5s ease infinite;
  padding-left: 5px;
}
.play-btn:hover { transform: scale(1.12); background: var(--yl2); }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,225,0,.5); }
  70%  { box-shadow: 0 0 0 22px rgba(245,225,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,225,0,0); }
}
.video-caption { text-align: center; }
.video-caption h3 { font-family: var(--ff-head); font-size: 32px; color: var(--white); margin-bottom: 8px; }
.video-caption p { font-size: 15px; color: rgba(255,255,255,.65); }
/* Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .35s;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner { width: 90%; max-width: 860px; position: relative; }
.video-modal-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.vm-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yl); color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: transform .25s;
}
.vm-close:hover { transform: rotate(90deg); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 240px;
  gap: 12px;
}
.g-item { border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,14,.55);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: center; justify-content: center;
}
.g-overlay i { color: var(--yl); font-size: 30px; }
.g-item:hover .g-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; object-fit: contain; }
.lb-close {
  position: fixed; top: 20px; right: 24px;
  font-size: 32px; color: var(--white); cursor: pointer;
  transition: color .2s;
}
.lb-close:hover { color: var(--yl); }

/* ============================================================
   SUPPLY CHAIN
   ============================================================ */
.chain-steps {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; margin-top: 60px;
  justify-content: space-between;
}
.chain-steps::before {
  content: ''; position: absolute; top: 36px; left: 60px; right: 60px;
  height: 2px; background: rgba(255,255,255,.12); z-index: 0;
}
.cstep { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.cs-circle {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(245,225,0,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 24px; color: var(--yl);
  transition: all .3s var(--ease);
}
.cstep:hover .cs-circle { background: var(--yl); color: var(--fg); border-color: var(--yl); }
.cs-arrow {
  position: absolute; top: 24px; right: -8px;
  color: var(--yl); opacity: .4; font-size: 14px;
}
.cstep:last-child .cs-arrow { display: none; }
.cstep h4 { font-size: 13.5px; font-weight: 700; color: var(--yl3); margin-bottom: 7px; letter-spacing: .5px; }
.cstep p { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s var(--ease-out); }
.testi-slide { min-width: 100%; }
.testi-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 50px;
  align-items: center;
  background: var(--white); border-radius: 12px;
  padding: 50px; box-shadow: 0 12px 48px rgba(0,0,0,.07);
  margin: 10px;
}
.testi-photo { text-align: center; }
.testi-photo img {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--yl);
  margin: 0 auto 14px;
}
.testi-photo .t-name { font-family: var(--ff-head); font-size: 20px; color: var(--fg); }
.testi-photo .t-role { font-size: 12px; letter-spacing: 1.5px; color: var(--text3); text-transform: uppercase; margin-top: 5px; }
.testi-photo .t-stars { color: var(--yl); font-size: 16px; letter-spacing: 2px; margin-top: 10px; }
.testi-body .big-q2 { font-family: var(--ff-display); font-size: 90px; color: var(--yl-dark); opacity: .6; line-height: .7; display: block; margin-bottom: 8px; }
.testi-body .t-text { font-family: var(--ff-head); font-size: 19px; font-style: italic; color: var(--fg2); line-height: 1.7; }
.testi-ctrls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 36px; }
.t-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--cream2);
  background: var(--white); color: var(--fg2); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.t-btn:hover { background: var(--fg); border-color: var(--fg); color: var(--yl); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream2); cursor: pointer; transition: all .3s; }
.t-dot.on { background: var(--yl); transform: scale(1.3); }

/* ============================================================
   BRANDS TICKER
   ============================================================ */
/* .brands-band { background: var(--fg2); padding: 50px 0; overflow: hidden; }
.brands-hd { text-align: center; margin-bottom: 30px; }
.brands-hd p { font-family: var(--ff-display); font-size: 16px; letter-spacing: 4px; color: var(--yl); }
.ticker-wrap { overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--fg2), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--fg2), transparent); }
.ticker-track {
  display: flex; gap: 56px; align-items: center;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.brand-nm {
  font-family: var(--ff-display); font-size: 16px; letter-spacing: 3px;
  color: rgba(255,255,255,.35); white-space: nowrap;
  transition: color .3s; padding: 0 6px;
}
.brand-nm:hover { color: var(--yl); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} } */






/* ── BRANDS ── */
.brands { padding: 70px 0; background: var(--fg2); }
.brands-header { text-align:center; margin-bottom: 40px; }
.brands-header p { font-family: var(--ff-disp), sans-serif; letter-spacing: 2px; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--yl); }
.brands-header h3 { font-family: var(--ff-head); font-size: 28px; color: var(--yl2); margin-top: 6px; }
.brands-track-wrap { overflow:hidden; }
.brands-track {
  display:flex; gap: 50px; align-items:center;
  animation: scroll 25s linear infinite;
  width: max-content;
}
.brand-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600; white-space: nowrap;
  transition: color 0.3s;
  padding: 0 8px;
}
.brand-logo:hover { color: var(--yl); }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }


/* ============================================================
   CTA REGISTER BANNER
   ============================================================ */
.cta-band {
  position: relative; padding: 96px 0;
  background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1400&q=80') center/cover no-repeat;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(11,31,14,.9) 50%, rgba(30,82,38,.7) 100%);
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { font-family: var(--ff-head); font-size: clamp(28px, 4vw, 52px); color: var(--white); margin-bottom: 14px; }
.cta-inner h2 span { color: var(--yl2); }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.cta-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.cta-form input {
  flex: 1; padding: 15px 20px; border: none;
  font-size: 14px; font-family: var(--ff-body);
  background: rgba(255,255,255,.95);
}
.cta-form input:focus { outline: none; }
.cta-form button {
  padding: 15px 22px; background: var(--yl); color: var(--fg);
  font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .3s; font-family: var(--ff-body);
}
.cta-form button:hover { background: var(--yl2); }
.cta-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 14px; }

/* ============================================================
   CONTACT INFO STRIP
   ============================================================ */
.contact-strip { padding: 64px 0; background: var(--cream); }
.contact-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ci-card {
  background: var(--white); border-radius: 8px;
  padding: 28px; display: flex; align-items: flex-start; gap: 16px;
  border-bottom: 3px solid var(--yl);
  transition: transform .3s, box-shadow .3s;
}
.ci-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.ci-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.ci-icon i { color: var(--fg4); font-size: 20px; transition: color .3s; }
.ci-card:hover .ci-icon { background: var(--fg); }
.ci-card:hover .ci-icon i { color: var(--yl); }
.ci-text h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg); margin-bottom: 8px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--text2); display: block; line-height: 1.65; text-decoration: none; }
.ci-text a:hover { color: var(--fg4); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0a1a0c; padding: 80px 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 52px; }
.foot-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin: 18px 0; }
.foot-tagline { font-family: var(--ff-head); font-style: italic; font-size: 15px; color: var(--yl2); display: block; margin-bottom: 20px; }
.foot-social { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.5); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.soc-btn:hover { background: var(--yl); border-color: var(--yl); color: var(--fg); }
.foot-col h4 {
  font-family: var(--ff-body); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--yl);
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 8px;
  transition: color .25s, padding-left .25s;
}
.foot-col ul li a::before { content: '›'; color: var(--yl); font-size: 18px; }
.foot-col ul li a:hover { color: var(--yl2); padding-left: 4px; }
.foot-hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13.5px;
}
.foot-hours li span:first-child { color: rgba(255,255,255,.4); }
.foot-hours li span:last-child { color: var(--yl2); font-weight: 600; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 10px;
}
.foot-bottom a { color: var(--yl2); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--fg);
  padding: 20px 0 70px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L1200 60L1200 0Q600 60 0 0Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom/cover;
}
.page-hero-text { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--yl2); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 { font-family: var(--ff-head); font-size: clamp(36px, 5vw, 64px); color: var(--white); line-height: 1.1; }
.page-hero h1 span { color: var(--yl2); }

/* ============================================================
   FAQ ACCORDION (about page)
   ============================================================ */




/* ── WHY INITIATIVE + FAQ — responsive fix ── */
.why-grid-section,
.faq-grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .why-grid-section,
  .faq-grid-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  @media (max-width: 768px) {
  .why-grid-section,
  .faq-grid-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    font-size: 14.5px;
    padding: 16px 0;
  }

  /* images stay visible but stack below text */
  .why-grid-section img,
  .faq-grid-section img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* on mobile right column comes after left */
  .why-grid-section .sr.right,
  .faq-grid-section .sr.left {
    order: 2;
  }

  .why-grid-section .sr.left,
  .faq-grid-section .sr.right {
    order: 1;
  }
}

  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    font-size: 14.5px;
    padding: 16px 0;
  }
}



.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--cream2); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--fg);
  background: none; border: none; cursor: pointer;
  transition: color .25s;
}
.faq-q:hover { color: var(--fg4); }
.faq-q i { font-size: 14px; color: var(--yl); transition: transform .3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s;
  font-size: 14.5px; color: var(--text2); line-height: 1.75;
}
.faq-a.open { max-height: 300px; padding-bottom: 18px; }

@media (max-width: 768px) {
  .why-grid-section,
  .faq-grid-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    font-size: 14.5px;
    padding: 16px 0;
  }

  .why-grid-section img,
  .faq-grid-section img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* WHY SECTION — image goes below text */
  .why-grid-section .sr.left  { order: 1; }
  .why-grid-section .sr.right { order: 2; }

  /* FAQ SECTION — title + image go ABOVE questions */
  .faq-grid-section .sr.left  { order: 1; }  /* title + image first */
  .faq-grid-section .sr.right { order: 2; }  /* questions below */
}
/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--cream2);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(11,31,14,.12); }
.team-card-img { height: 280px; overflow: hidden; position: relative; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-overlay {
  position: absolute; inset: 0; background: rgba(11,31,14,.6);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity .3s;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.tc-soc {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--yl); color: var(--fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: transform .25s;
}
.tc-soc:hover { transform: scale(1.15); }
.team-card-body { padding: 20px; text-align: center; }
.team-card-body h3 { font-family: var(--ff-head); font-size: 20px; color: var(--fg); margin-bottom: 4px; }
.team-card-body p { font-size: 12.5px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }

@media (max-width: 768px) {
  .team-card-img img {
    object-position: center 20%; /* shifts image down so heads are visible */
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid-pg { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: 10px; padding: 44px; box-shadow: 0 12px 48px rgba(0,0,0,.07); }
.contact-form-wrap h3 { font-family: var(--ff-head); font-size: 28px; color: var(--fg); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--fg); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--cream2); border-radius: 5px;
  font-size: 14.5px; font-family: var(--ff-body); color: var(--text);
  background: var(--cream); transition: border-color .25s, background .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--fg4); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--fg); color: var(--yl);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border: 2px solid var(--yl);
  border-radius: 4px; cursor: pointer;
  transition: background .3s, color .3s;
}
.btn-submit:hover { background: var(--yl); color: var(--fg); }
.contact-info-side {}
.contact-info-side .s-title { margin-bottom: 28px; }
.ci-big-card {
  background: var(--fg); border-radius: 10px; padding: 36px; margin-bottom: 28px;
}
.ci-big-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-big-item:last-child { margin-bottom: 0; }
.ci-big-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,225,0,.12); border: 2px solid rgba(245,225,0,.25);
  display: flex; align-items: center; justify-content: center;
}
.ci-big-icon i { color: var(--yl); font-size: 18px; }
.ci-big-text h5 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.ci-big-text p, .ci-big-text a { font-size: 15px; color: var(--white); display: block; line-height: 1.6; text-decoration: none; }
.ci-big-text a:hover { color: var(--yl2); }
.eligi-box { background: var(--cream); border-radius: 10px; padding: 28px; border-left: 4px solid var(--yl); }
.eligi-box h4 { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 14px; }
.eligi-box ul li { font-size: 14px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid var(--cream2); display: flex; gap: 10px; align-items: flex-start; }
.eligi-box ul li::before { content: '✓'; color: var(--fg4); font-weight: 700; flex-shrink: 0; }
.eligi-box ul li:last-child { border-bottom: none; }

/* ============================================================
   FOUNDER PAGE
   ============================================================ */
.founder-hero-section { padding: 30px 0; background: var(--cream); }
.founder-hero-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: center; }
.founder-portrait {
  position: relative;
}
.founder-portrait-img {
  width: 100%; border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
  object-fit: cover; height: 600px;
}
.founder-tag {
  position: absolute; bottom: -1px; left: 0; right: 0;
  background: var(--fg); padding: 20px 24px;
  border-radius: 0 0 10px 10px; text-align: center;
}
.founder-tag .fn { font-family: var(--ff-head); font-size: 22px; color: var(--white); }
.founder-tag .ft { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--yl2); margin-top: 4px; }
.founder-content p { font-size: 15.5px; color: var(--text2); line-height: 1.85; margin-bottom: 18px; }
.f-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.f-stat-box {
  background: var(--white); border-radius: 8px;
  padding: 20px 14px; text-align: center;
  border-top: 3px solid var(--yl);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}


/* ── TIMELINE SECTION ── */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* remove sticky on mobile */
  .timeline-grid .sr.right > div {
    position: static !important;
  }

  /* image full width */
  .timeline-grid .sr.right img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 16px;
  }

  /* why he is different box */
  .timeline-grid .sr.right > div > div {
    padding: 24px;
  }

  .timeline {
    padding-left: 24px;
  }

  .tl-dot {
    left: -20px;
  }

  .tl-item h4 {
    font-size: 14.5px;
  }

  .tl-item p {
    font-size: 13.5px;
  }

  /* values grid */
  .values-grid {
    grid-template-columns: 1fr;
  }
}


.f-stat-box .n { font-family: var(--ff-display); font-size: 32px; color: var(--fg); display: block; }
.f-stat-box .l { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--cream2); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -28px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yl); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--yl);
}
.tl-item h4 { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.tl-item .tl-year { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; color: var(--fg4); text-transform: uppercase; display: block; margin-bottom: 8px; }
.tl-item p { font-size: 14.5px; color: var(--text2); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.val-card {
  background: var(--white); border-radius: 10px; padding: 28px;
  text-align: center; border-bottom: 3px solid var(--yl);
  transition: transform .3s, box-shadow .3s;
}
.val-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.val-card i { font-size: 28px; color: var(--fg4); margin-bottom: 12px; display: block; }
.val-card h4 { font-family: var(--ff-head); font-size: 19px; color: var(--fg); margin-bottom: 8px; }
.val-card p { font-size: 13.5px; color: var(--text3); line-height: 1.65; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 4px;
  background: var(--fg); border: 2px solid var(--yl);
  color: var(--yl); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 700;
  opacity: 0; visibility: hidden;
  transition: all .3s var(--ease);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { background: var(--yl); color: var(--fg); transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.sr { opacity: 0; transform: translateY(36px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.sr.left { transform: translateX(-36px); }
.sr.right { transform: translateX(36px); }
.sr.scale { transform: scale(.94); }
.sr.vis { opacity: 1; transform: none; }
.sr-d1 { transition-delay: .1s; }
.sr-d2 { transition-delay: .2s; }
.sr-d3 { transition-delay: .3s; }
.sr-d4 { transition-delay: .4s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .about-collage { height: 360px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-hero-grid, .contact-grid-pg { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.tall, .g-item.wide { grid-row: unset; grid-column: unset; }
  .testi-card { grid-template-columns: 1fr; text-align: center; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .chain-steps { flex-direction: column; align-items: center; }
  .chain-steps::before { display: none; }
  .f-stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .f-stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}



/* ================================================================
   SECTION 1 — MAHARASHTRA MAP & STORE NETWORK
================================================================ */
.map-section {
  background: var(--fg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* subtle grid texture */
.map-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,225,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,225,0,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* decorative big circle */
.map-section::after {
  content: '';
  position: absolute; right: -160px; top: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  border: 1px solid rgba(245,225,0,.06);
  pointer-events: none;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ── LEFT TEXT PANEL ── */
.map-text-col {}
.map-text-col .s-label { color: var(--yl2); }
.map-text-col .s-label::before { background: var(--yl); }
.map-intro {
  font-size: 15.5px; color: rgba(255,255,255,.62);
  line-height: 1.8; margin-bottom: 36px; max-width: 420px;
}

/* District pills row */
.district-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.dtag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,225,0,.18);
  color: rgba(255,255,255,.78);
  font-size: 12.5px; font-weight: 600; letter-spacing: .5px;
  padding: 7px 14px; border-radius: 40px;
  transition: background .25s, border-color .25s, color .25s;
  cursor: default;
}
.dtag i { color: var(--yl); font-size: 10px; }
.dtag:hover {
  background: rgba(245,225,0,.1);
  border-color: var(--yl);
  color: var(--yl2);
}
.dtag.phase1 { border-color: rgba(245,225,0,.4); color: var(--yl2); background: rgba(245,225,0,.07); }

/* Rollout timeline strip */
.rollout-strip {
  background: rgba(255,255,255,.04);
  border: 2px solid var(--yl);
  border-radius: 10px;
  padding: 24px 22px;
  margin-bottom: 32px;
}
.rollout-strip h4 {
  font-family: var(--ff-disp); font-size: 15px; letter-spacing: 2.5px;
  color: var(--yl); margin-bottom: 18px;
  text-transform: uppercase;
}
.rollout-phases { display: flex; gap: 0; position: relative; }
.rollout-phases::before {
  content: '';
  position: absolute; top: 17px; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.08); z-index: 0;
}
.rph { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 6px; }
.rph-dot {
  width: 34px; height: 34px; border-radius: 50%;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: var(--ff-disp); letter-spacing: 1px;
  transition: transform .3s var(--ease);
}
.rph-dot.done  { background: var(--yl); color: var(--fg); }
.rph-dot.active{ background: var(--fg4); color: #fff; border: 2px solid var(--yl); animation: rpulse 1.8s ease infinite; }
.rph-dot.soon  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.12); }
@keyframes rpulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,225,0,.4)} 50%{box-shadow:0 0 0 8px rgba(245,225,0,0)} }
.rph-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; color: rgba(255,255,255,.45); }
.rph-label.bright { color: var(--yl2); }
.rph-sub { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 2px; }

/* Network stats row */
.net-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nstat {
  background: rgba(255,255,255,.04);
  
  border: 1px solid var(--yl);
  border-radius: 8px; padding: 18px 14px; text-align: center;
  transition: background .3s, border-top-color .3s;
}
.nstat:hover { background: rgba(245,225,0,.06); }
.nstat .nn {
  font-family: var(--ff-disp); font-size: 34px; color: var(--white);
  line-height: 1; display: block; margin-bottom: 5px;
}
.nstat .nl { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }

/* ── RIGHT MAP PANEL ── */
.map-visual-col {
  position: relative;
}
.map-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(245,225,0,.12);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.map-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(11,31,14,.85) 100%);
  pointer-events: none;
}
.maha-map-img {
  width: 100%;
  display: block;
  filter: brightness(.55) saturate(.4) sepia(.3) hue-rotate(60deg);
  transition: filter .5s;
}
.map-frame:hover .maha-map-img { filter: brightness(.65) saturate(.6) sepia(.2) hue-rotate(60deg); }

/* Floating location pins on map */
.map-pins {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
}
/* Each pin is absolutely positioned as % of map dimensions */
.mpin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: all;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: transform .25s var(--ease);
}
.mpin:hover { transform: translate(-50%, -100%) scale(1.15); z-index: 10; }
.mpin-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yl);
  box-shadow: 0 0 0 3px rgba(245,225,0,.25);
  border: 2px solid var(--fg);
  position: relative;
}
.mpin-dot::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--yl);
  animation: pinping 2s ease-out infinite;
}
@keyframes pinping {
  0%   { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;  transform: translate(-50%,-50%) scale(3.2); }
}
.mpin-line { width: 1px; height: 16px; background: var(--yl); opacity: .6; }
.mpin-label {
  background: var(--fg); color: var(--yl2);
  font-size: 9.5px; font-weight: 700; letter-spacing: .8px;
  padding: 3px 8px; border-radius: 3px;
  border: 1px solid rgba(245,225,0,.3);
  white-space: nowrap;
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.mpin:hover .mpin-label { opacity: 1; transform: translateY(0); }
/* Phase-2 pins slightly different colour */
.mpin.p2 .mpin-dot { background: var(--fg5); box-shadow: 0 0 0 3px rgba(58,128,66,.3); }
.mpin.p2 .mpin-dot::after { background: var(--fg5); }
.mpin.p2 .mpin-label { color: rgba(255,255,255,.8); }
/* Phase-3 faint */
.mpin.p3 .mpin-dot { background: rgba(255,255,255,.35); box-shadow: none; border-color: rgba(255,255,255,.4); }
.mpin.p3 .mpin-dot::after { display: none; }

/* Map bottom caption bar */
.map-caption-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  background: rgba(11,31,14,.88);
  backdrop-filter: blur(6px);
  padding: 14px 14px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.mcb-left { font-size: 13px; color: rgba(255,255,255,.65); }
.mcb-left strong { color: var(--yl2); }
.mcb-legend { display: flex; gap: 16px; }
.leg-item { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .5px; color: rgba(255,255,255,.5); text-transform: uppercase; }
.leg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Floating badge top-right of map */
.map-badge {
  position: absolute; top: -18px; right: -14px; z-index: 5;
  background: var(--yl); color: var(--fg);
  border-radius: 50%; width: 88px; height: 88px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(245,225,0,.35);
  animation: badgefloat 3s ease-in-out infinite;
}
@keyframes badgefloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.map-badge .big { font-family: var(--ff-disp); font-size: 26px; color: var(--fg); line-height: 1; }
.map-badge .sm  { font-size: 9.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--fg3); line-height: 1.2; text-align: center; }

/* ── RESPONSIVE MAP ── */
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; gap: 44px; }
  .net-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .net-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .rollout-phases { gap: 0; }
}


/* ================================================================
   SECTION 2 — COMPANY STRENGTH GRAPH / COMPETITIVE EDGE
================================================================ */
 
/* ================================================================
   STRENGTH SECTION — FIXED
================================================================ */
.strength-section{
  background:var(--cream);
  padding:70px 0;               /* reduced from 100px */
  position:relative;overflow:hidden;
}
.strength-section::before{
  content:'';position:absolute;left:-120px;bottom:-120px;
  width:440px;height:440px;border-radius:50%;
  background:rgba(40,107,48,.06);pointer-events:none;
}
 
/* ── SECTION HEADER — tighter bottom margin ── */
.strength-header{
  margin-bottom:32px;           /* reduced from 52px */
}
 
/* ── MAIN LAYOUT: left = right col content, right = table ── */
/* Now a 3-column layout: metrics+adv | table */
.strength-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
 
/* ── LEFT COLUMN ── */
.strength-text-col{}
.strength-intro{
  font-size:15px;color:var(--text2);line-height:1.8;
  margin-bottom:24px;           /* reduced from 32px */
}
 
/* Metric cards — only 2, side by side */
.metric-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:28px;           /* reduced from 32px */
}
.metric-card{
  background:var(--white);
  border-radius:10px;padding:22px 18px;
  border-left:4px solid var(--yl);
  box-shadow:0 4px 20px rgba(0,0,0,.05);
  transition:transform .3s var(--ease),box-shadow .3s;
  position:relative;overflow:hidden;
}
.metric-card::after{
  content:'';position:absolute;top:-20px;right:-20px;
  width:70px;height:70px;border-radius:50%;
  background:rgba(245,225,0,.08);
}
.metric-card:hover{transform:translateY(-4px);box-shadow:0 14px 40px rgba(0,0,0,.1);}
.metric-card i{font-size:22px;color:var(--fg4);margin-bottom:10px;display:block;}
.metric-card .mv{
  font-family:var(--ff-disp);font-size:32px;color:var(--fg);
  line-height:1;display:block;margin-bottom:5px;
}
.metric-card .ml{
  font-size:11px;font-weight:700;letter-spacing:1px;
  text-transform:uppercase;color:var(--text3);margin-bottom:6px;display:block;
}
.metric-card .md{font-size:12.5px;color:var(--text3);line-height:1.55;}
 
/* Advantage checklist */
.adv-list{list-style:none;}
.adv-item{
  display:flex;align-items:flex-start;gap:13px;
  padding:13px 0;border-bottom:1px solid var(--cream2);
}
.adv-item:last-child{border-bottom:none;}
.adv-icon{
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  background:var(--fg);display:flex;align-items:center;justify-content:center;
  transition:background .3s;
}
.adv-icon i{color:var(--yl);font-size:14px;}
.adv-item:hover .adv-icon{background:var(--fg3);}
.adv-text strong{font-size:14px;color:var(--fg);display:block;margin-bottom:3px;}
.adv-text span{font-size:13px;color:var(--text3);line-height:1.55;}
 
/* ── RIGHT COLUMN — table ── */
.strength-chart-col{
  position:relative;
  /* table sits naturally here, no margin-top needed */
}
 
/* Comparison table — NO margin-top, sits at top of column */
.comp-table-wrap{
  background:var(--white);border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 36px rgba(0,0,0,.07);
  /* removed margin-top:48px */
}
.comp-table-head{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  background:var(--fg);padding:14px 20px;
}
.comp-table-head span{
  font-size:11px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;color:rgba(255,255,255,.5);text-align:center;
}
.comp-table-head span:first-child{text-align:left;color:rgba(255,255,255,.7);}
.comp-table-head .highlight{color:var(--yl);}
.comp-row{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  padding:13px 20px;border-bottom:1px solid var(--cream2);
  align-items:center;transition:background .2s;
}
.comp-row:last-child{border-bottom:none;}
.comp-row:hover{background:var(--cream);}
.comp-row .cr-label{font-size:13px;font-weight:600;color:var(--fg);}
.cr-cell{text-align:center;font-size:18px;}
.cr-cell.yes{color:var(--fg4);}
.cr-cell.no{color:#ccc;}
.cr-cell.yl{
  color:var(--fg);font-size:11px;font-weight:700;
  background:var(--yl);border-radius:4px;padding:3px 8px;
}
.cr-cell.part{color:#e8a800;}
 
/* ── RESPONSIVE ── */
@media(max-width:900px){
  .strength-layout{grid-template-columns:1fr;gap:36px;}
  .metric-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:540px){
  .metric-grid{grid-template-columns:1fr;}
  .comp-table-head,.comp-row{grid-template-columns:2fr 1fr 1fr;font-size:11px;}
  .comp-table-head span:nth-child(4),.comp-row .cr-cell:last-child{display:none;}
}




/* ================================================================
   CAREER FORM SECTION
================================================================ */
.career-form-section{
  padding:70px 0;
  background:var(--cream);
  position:relative;overflow:hidden;
}
.career-form-section::before{
  content:'';position:absolute;right:-100px;top:-100px;
  width:340px;height:340px;border-radius:50%;
  background:rgba(40,107,48,.04);pointer-events:none;
}
 
/* header row */
.cf-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:40px;
}
.cf-header-left h2{
  font-family:var(--ff-head);
  font-size:clamp(24px,2.8vw,38px);
  color:var(--fg);line-height:1.15;
}
.cf-header-left h2 span{color:var(--fg4);}
.cf-header-right{
  font-size:14px;color:var(--text3);
  line-height:1.7;max-width:340px;text-align:right;
}
 
/* form card */
.cf-card{
  background:var(--white);
  border-radius:12px;
  padding:40px 44px;
  box-shadow:0 8px 40px rgba(0,0,0,.07);
  border:1.5px solid var(--cream2);
  position:relative;overflow:hidden;
}
/* yellow top accent */
.cf-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--yl);
}
 
/* form grid */
.cf-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:16px;
}
.cf-row-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
.cf-group label{
  display:block;font-size:11px;font-weight:700;
  letter-spacing:1.2px;text-transform:uppercase;
  color:var(--fg);margin-bottom:7px;
}
.cf-group input,
.cf-group select{
  width:100%;padding:11px 14px;
  border:1.5px solid var(--cream2);border-radius:6px;
  font-size:14px;font-family:var(--ff-body);color:var(--text2);
  background:var(--cream);
  transition:border-color .25s,background .25s;
}
.cf-group input:focus,
.cf-group select:focus{
  outline:none;border-color:var(--fg4);background:var(--white);
}
 
/* file upload */
.cf-upload-row{
  display:grid;grid-template-columns:1fr auto;
  gap:16px;align-items:end;
  margin-bottom:16px;
}
.cf-file-label{
  display:flex;align-items:center;gap:12px;
  background:var(--cream);border:1.5px dashed var(--cream2);
  border-radius:6px;padding:11px 16px;cursor:pointer;
  transition:border-color .25s,background .25s;
}
.cf-file-label:hover{border-color:var(--fg4);background:var(--white);}
.cf-file-label i{color:var(--fg4);font-size:16px;flex-shrink:0;}
.cf-file-label span{font-size:13.5px;color:var(--text3);}
.cf-file-label input{display:none;}
#cfFileName{
  font-size:12px;color:var(--fg4);font-weight:600;
  margin-top:5px;display:none;
}
 
/* bottom row — note + submit */
.cf-bottom{
  display:flex;align-items:center;
  justify-content:space-between;
  gap:20px;flex-wrap:wrap;
  margin-top:8px;
}
.cf-note{
  font-size:12px;color:var(--text3);line-height:1.6;max-width:440px;
}
.cf-note i{color:var(--fg4);margin-right:4px;}
.cf-submit{
  flex-shrink:0;
  padding:13px 36px;
  background:var(--fg);color:var(--yl);
  font-size:12.5px;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;border:2px solid var(--yl);
  border-radius:5px;cursor:pointer;
  font-family:var(--ff-body);
  transition:background .3s,color .3s,transform .2s;
  display:inline-flex;align-items:center;gap:8px;
}
.cf-submit:hover{background:var(--yl);color:var(--fg);transform:translateY(-2px);}
.cf-submit i{font-size:11px;}
 
/* responsive */
@media(max-width:820px){
  .cf-row{grid-template-columns:1fr 1fr;}
  .cf-card{padding:28px 24px;}
  .cf-header-right{text-align:left;}
}
@media(max-width:540px){
  .cf-row,.cf-row-2{grid-template-columns:1fr;}
  .cf-upload-row{grid-template-columns:1fr;}
  .cf-bottom{flex-direction:column;align-items:flex-start;}
  .cf-submit{width:100%;justify-content:center;}
}













/* ── VIDEO SECTION ── */
.vid-section {
  padding: 0;
  background: var(--fg);
}
.vid-header {
  text-align: center;
  padding: 0px 0 40px;
  margin-bottom: 0;
}
.vid-header .s-label {
  justify-content: center;
}

/* dark full-width band */
.vid-frame-wrap {
  width: 100%;
  position: relative;
  background: var(--fg);
  padding: 48px 0;
}

/* full cinematic video frame */
.vid-frame {
  position: relative;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
.vid-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* section below video */
.vid-after {
  padding: 60px 0 80px;
  background: var(--white);
}


/* responsive */
@media (max-width: 768px) {
  .vid-section { padding: 60px 0 0; }
  .vid-frame {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .vid-frame-wrap::before,
  .vid-frame-wrap::after { display: none; }
  .vid-frame-wrap { padding: 0; }
  .vid-header { margin-bottom: 32px; }
}