/* ============================================================
   OKAY MILK – Premium Dairy Brand Design System
   Ludhiana Milk Foods Pvt. Ltd.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --yellow:      #FFD23F;
  --yellow-dark: #E6B800;
  --yellow-light:#FFF3B0;
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --green-pale:  #E8F5E9;
  --red:         #E53935;
  --red-light:   #FFEBEE;
  --bg-main:     #FFFDF8;
  --bg-cream:    #FFF8E8;
  --bg-card:     #FFFFFF;
  --heading:     #1E293B;
  --body-text:   #6B7280;
  --body-dark:   #374151;
  --border:      #F0EBE0;
  --shadow-sm:   0 2px 8px rgba(30,41,59,.06);
  --shadow-md:   0 8px 32px rgba(30,41,59,.10);
  --shadow-lg:   0 20px 60px rgba(30,41,59,.15);
  --shadow-glow: 0 0 40px rgba(255,210,63,.3);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   48px;
  --transition:  all .35s cubic-bezier(.4,0,.2,1);
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-alt:    'Plus Jakarta Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; position: relative; }
.site-wrapper { overflow-x: hidden; width: 100%; position: relative; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--body-text);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section { position: relative; overflow: hidden; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .6s, visibility .6s;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo-wrap {
  width: 220px;
  margin-bottom: 24px;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}
.preloader-logo {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: .85; }
}
.preloader-brand {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--body-text);
  letter-spacing: .5px;
  text-align: center;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(30,41,59,.08);
  padding: 12px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* White background logos need a slight filter tweak on dark navbars;
     the logo is red-on-white so it reads perfectly on the light glassmorphism nav */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .87rem;
  font-weight: 500;
  color: var(--heading);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .3s;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 9px 22px !important;
  box-shadow: 0 4px 16px rgba(46,125,50,.3);
}
.nav-cta:hover { background: #1b5e20 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -.5px;
}
.section-title span { color: var(--green); }
.section-title .yellow { color: var(--yellow-dark); }
.section-desc {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 12px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(46,125,50,.35);
  text-decoration: none;
}
.btn-primary:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46,125,50,.45);
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 14px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--heading);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255,210,63,.45);
  text-decoration: none;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,210,63,.6);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  text-decoration: none;
  width: max-content;
  align-self: flex-start;
}
.btn-whatsapp:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46,125,50,.45);
  color: #fff;
}

/* ── Layout Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.hero-container { width: 94%; max-width: 1700px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Section Dividers (Wave) ── */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider.top { bottom: auto; top: -1px; transform: rotate(180deg); }

/* ── ═══════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════ ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-main) 0%, #f0fdf4 50%, var(--bg-cream) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; background: var(--yellow-light); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 350px; height: 350px; background: var(--green-pale); bottom: -80px; left: -80px; animation-delay: 3s; }
.blob-3 { width: 250px; height: 250px; background: #fce4ec; top: 40%; right: 25%; animation-delay: 5s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(.95); }
}
.hero-content { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; min-height: 85vh; }
.hero-left { padding: 10px 0 100px; }

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-left > * { opacity: 0; animation: heroFadeUp 0.8s ease-out forwards; }
.hero-badge { animation-delay: 0.3s !important; }
.hero-title { animation-delay: 0.4s !important; }
.hero-subtitle { animation-delay: 0.5s !important; }
.hero-buttons { animation-delay: 0.6s !important; }
.hero-trust { animation-delay: 0.7s !important; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(46,125,50,.15);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--green); }
.hero-title .yellow-text {
  position: relative;
  display: inline-block;
}
.hero-title .yellow-text::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--body-dark);
  box-shadow: var(--shadow-sm);
}
.trust-item .check { color: var(--green); font-size: 1rem; display: flex; align-items: center; }
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-img-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 10;
}
.hero-img-badge.badge-tl { top: 24px; left: -24px; animation-delay: 1s; }
.hero-img-badge.badge-br { bottom: 32px; right: -24px; animation-delay: 2s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 1.4rem; color: var(--green); display: flex; align-items: center; }
.badge-text .num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
}
.badge-text .label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--body-text);
  margin-top: 2px;
}

/* ── Stats bar ── */
.stats-bar {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 48px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--body-text);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ── ═══════════════════════════════════════
   2. ABOUT SECTION
   ═══════════════════════════════════════ ── */
#about { background: var(--bg-main); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 48%;
  bottom: -32px;
  right: -24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 6px solid white;
}
.about-years-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(46,125,50,.4);
}
.about-years-badge .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.about-years-badge .text {
  font-family: var(--font-head);
  font-size: .58rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Timeline */
.timeline { margin-top: 40px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), var(--green));
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 28px; position: relative; }
.timeline-dot {
  width: 38px; height: 38px; min-width: 38px;
  background: white;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--green-pale);
}
.timeline-content {}
.timeline-year {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}
.timeline-desc { font-size: .9rem; color: var(--body-text); }

/* ── ═══════════════════════════════════════
   3. FOUNDERS SECTION
   ═══════════════════════════════════════ ── */
#founders { background: var(--bg-cream); }
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
.founder-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.founder-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.founder-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}
.founder-card:hover .founder-img-wrap img { transform: scale(1.06); }
.founder-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,41,59,.7) 0%, transparent 50%);
}
.founder-body { padding: 24px; }
.founder-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.founder-quote {
  font-style: italic;
  font-size: .92rem;
  color: var(--body-text);
  line-height: 1.7;
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
}
.founder-hometown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--body-text);
  margin-top: 14px;
}

/* ── ═══════════════════════════════════════
   4. PRODUCTS SECTION
   ═══════════════════════════════════════ ── */
#products { background: var(--bg-main); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(30,41,59,.14), var(--shadow-glow);
  border-color: var(--yellow);
}
.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge-top {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green);
  color: white;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-body { padding: 22px 24px; }
.product-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}
.product-desc {
  font-size: .87rem;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .5px;
}

/* ── ═══════════════════════════════════════
   5. PROCESS / HOW WE MAKE IT
   ═══════════════════════════════════════ ── */
#process { background: var(--bg-cream); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.process-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
}
.process-video-wrap iframe { width: 100%; height: 100%; border: none; }
.process-steps { margin-top: 32px; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(229,57,53,.3);
}
.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}
.step-desc { font-size: .87rem; color: var(--body-text); }

/* ── ═══════════════════════════════════════
   6. QUALITY ASSURANCE
   ═══════════════════════════════════════ ── */
#quality { background: white; }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.quality-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.quality-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0);
  transition: transform .4s ease;
}
.quality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quality-card:hover::before { transform: scaleX(1); }
.quality-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green-pale), var(--yellow-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 16px;
}
.quality-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.quality-desc { font-size: .83rem; color: var(--body-text); line-height: 1.6; }

/* ── ═══════════════════════════════════════
   7. WHY CHOOSE US
   ═══════════════════════════════════════ ── */
#why-choose { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.why-card {
  background: #fff;
  border: 1.5px solid #f0e4e4;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(229,57,53,.05);
}
.why-card:hover {
  background: #fff5f5;
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(229,57,53,.12);
}
.why-icon {
  width: 56px; height: 56px;
  background: #fff0f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 20px;
}
.why-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.why-desc { font-size: .88rem; color: var(--body-text); line-height: 1.65; }
#why-choose .section-label { background: #fff0f0; color: var(--red); }
#why-choose .section-title { color: var(--heading); }
#why-choose .section-title span { color: var(--red); }
#why-choose .section-desc { color: var(--body-text); }

/* ── ═══════════════════════════════════════
   8. GALLERY
   ═══════════════════════════════════════ ── */
#gallery { background: var(--bg-main); }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.filter-btn {
  background: white;
  border: 2px solid var(--border);
  color: var(--body-text);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,41,59,.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: white;
}

/* ── Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
#lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── ═══════════════════════════════════════
   9. DISTRIBUTION
   ═══════════════════════════════════════ ── */
#distribution { background: var(--bg-cream); }
.distribution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.distribution-map {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.map-india {
  position: relative;
  font-size: 7rem;
  line-height: 1;
  color: var(--green);
  opacity: .85;
  filter: drop-shadow(0 8px 24px rgba(46,125,50,.2));
  margin-bottom: 24px;
}
.map-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin: 4px;
  box-shadow: 0 4px 12px rgba(46,125,50,.3);
}
.coverage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.cov-stat {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cov-stat .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}
.cov-stat .lab { font-size: .82rem; color: var(--body-text); margin-top: 4px; }

/* ── ═══════════════════════════════════════
   10. TESTIMONIALS
   ═══════════════════════════════════════ ── */
#testimonials { background: white; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .5s ease; }
.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}
.testi-inner {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testi-quote {
  font-size: 4rem;
  color: var(--yellow);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 1.1rem;
  color: var(--body-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}
.testi-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
}
.testi-role { font-size: .85rem; color: var(--body-text); }
.testi-stars { display: flex; gap: 3px; margin-top: 6px; }
.testi-stars .star { color: var(--yellow); font-size: .85rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--heading);
  transition: var(--transition);
}
.slider-btn:hover { border-color: var(--green); color: var(--green); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--green); transform: scale(1.4); }

/* ── ═══════════════════════════════════════
   11. CONTACT
   ═══════════════════════════════════════ ── */
#contact { background: var(--bg-main); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info {}
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}
.contact-card-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 6px;
}
.contact-card-value {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.5;
}
.contact-card-value a { color: var(--heading); transition: color .2s; }
.contact-card-value a:hover { color: var(--green); }
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; }
.contact-cta-box {
  background: #fff;
  border: 1.5px solid #f0e4e4;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(229,57,53,.08);
}
.contact-cta-box .section-label { background: #fff0f0; color: var(--red); }
.cta-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 16px 0 12px;
}
.cta-desc { color: var(--body-text); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.contact-phones { margin: 20px 0; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: var(--transition);
}
.phone-link:hover { color: var(--red); }
.phone-link .ph-icon {
  width: 38px; height: 38px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--red);
}

.contact-directors { margin-top: 28px; }
.director-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.director-avatar {
  width: 44px; height: 44px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  border: 2px solid #f0e4e4;
}
.director-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.director-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
}
.director-title { font-size: .8rem; color: var(--body-text); }

/* ── ═══════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════ ── */
#footer {
  background: var(--heading);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-company-name {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--green); color: white; transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--yellow); font-size: 1rem; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ── AOS custom offsets ── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ ── */
@media (max-width: 1100px) {
  .hero-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  #hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
  .hero-grid { min-height: auto; align-items: flex-start; }
  .hero-grid,
  .about-grid,
  .process-grid,
  .distribution-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .founders-grid { gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 16px; padding: 32px 20px; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .container { padding: 0 32px; }
  .hero-container, #footer .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .founders-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .testi-inner { padding: 28px 20px; }
  .hero-title { font-size: 2.2rem; }
  .hero-left { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-buttons a { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 16px; gap: 12px; }
  .contact-card-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }
  .contact-card-value { font-size: .85rem; word-break: break-word; }
  .contact-cta-box { padding: 24px; }
  .cta-title { font-size: 1.5rem; }
  .phone-link { padding: 12px; font-size: .95rem; gap: 10px; }
  .phone-link .ph-icon { width: 32px; height: 32px; font-size: .9rem; }
}

/* ── Mobile nav ── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 16px 32px 40px;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
  transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav a:not(.btn-primary) {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: block;
  transition: color .2s;
}
.mobile-nav a:not(.btn-primary):hover { color: var(--green); }
.mobile-nav .btn-primary { margin-top: 32px; justify-content: center; padding: 14px; border: none; }

/* Mobile nav logo */
.mobile-nav-logo {
  padding: 10px 0 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 12px;
}
.mobile-nav-logo-img {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Sub-label in navbar (shown next to logo on desktop) */
.nav-logo-text {
  font-family: var(--font-head);
}
.nav-logo-text .brand-sub {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  color: var(--body-text);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 2px;
}
