:root {
  --teal:    #0097A7;
  --teal-d:  #006D7A;
  --teal-l:  #E0F7FA;
  --amber:   #FF8F00;
  --amber-l: #FFF8E1;
  --green:   #43A047;
  --white:   #FFFFFF;
  --off:     #F8FBFC;
  --dark:    #0D2B2F;
  --mid:     #3E6568;
  --light:   #B2DFDB;
  --radius:  14px;
  --shadow:  0 8px 40px rgba(0,151,167,0.13);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; }
.hindi { font-family: 'Noto Sans Devanagari', sans-serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 80px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--light);
  box-shadow: 0 2px 20px rgba(0,151,167,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none;padding: 5px 0; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; color: white; font-size: 18px;
  letter-spacing: -1px; box-shadow: 0 4px 14px rgba(0,151,167,0.35);
}
.logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--teal-d); letter-spacing: -0.5px; }
.logo-text span { color: var(--amber); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul a { text-decoration: none; color: var(--mid); font-weight: 500; font-size: 15px; transition: color .2s; }
nav ul a:hover { color: var(--teal); }
.nav-cta {
  background: var(--amber); color: white; padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none; letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(255,143,0,0.3); transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,143,0,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal-d); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #E0F7FA 0%, #ffffff 55%, #FFF8E1 100%);
  display: flex; align-items: center;
  padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-bg-circle.c1 {
  width: 600px; height: 600px; right: -150px; top: -80px;
  background: radial-gradient(circle, rgba(0,151,167,0.08) 0%, transparent 70%);
}
.hero-bg-circle.c2 {
  width: 400px; height: 400px; left: -100px; bottom: 0;
  background: radial-gradient(circle, rgba(255,143,0,0.07) 0%, transparent 70%);
}
.hero-inner { max-width: 1200px; margin: auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-l); color: var(--teal-d); border-radius: 50px;
  padding: 7px 16px; font-size: 13px; font-weight: 600; margin-bottom: 20px;
  border: 1.5px solid rgba(0,151,167,0.2);
}
.hero-badge::before { content: '●'; font-size: 10px; color: var(--green); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.1; color: var(--dark); margin-bottom: 12px; }
.hero-h1 span { color: var(--teal); }
.hero-hindi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 20px; color: var(--mid); margin-bottom: 20px; font-weight: 600; }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--mid); max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  color: white; padding: 15px 32px; border-radius: 50px; font-weight: 700;
  font-size: 16px; text-decoration: none; box-shadow: 0 6px 24px rgba(0,151,167,0.4);
  transition: transform .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,151,167,0.5); }
.btn-secondary {
  border: 2px solid var(--teal); color: var(--teal); padding: 14px 28px;
  border-radius: 50px; font-weight: 600; font-size: 16px; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--teal); color: white; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--teal); }
.stat-label { font-size: 13px; color: var(--mid); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.pod-card {
  background: white; border-radius: 24px; padding: 28px;
  box-shadow: 0 20px 80px rgba(0,151,167,0.18), 0 4px 20px rgba(0,0,0,0.06);
  width: 340px; position: relative;
}
.pod-img-placeholder {
  background: linear-gradient(135deg, var(--teal-l) 0%, #b2ebf2 100%);
  border-radius: 16px; height: 200px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.pod-svg { width: 140px; opacity: .85; }
.pod-status {
  position: absolute; top: 14px; right: 14px;
  background: #E8F5E9; color: var(--green); border-radius: 50px;
  padding: 5px 12px; font-size: 12px; font-weight: 700;
  border: 1.5px solid rgba(67,160,71,0.25);
}
.pod-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--dark); margin-bottom: 4px; }
.pod-loc { font-size: 13px; color: var(--mid); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }
.pod-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--teal-l); color: var(--teal-d); border-radius: 50px;
  padding: 5px 12px; font-size: 12px; font-weight: 600;
}
.tag.amber { background: var(--amber-l); color: var(--amber); }
.float-badge {
  position: absolute;
  background: white; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-size: 13px; font-weight: 600;
}
.float-badge.left { left: -60px; top: 60px; display: flex; align-items: center; gap: 8px; }
.float-badge.right { right: -50px; bottom: 80px; display: flex; align-items: center; gap: 8px; }
.fb-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.fb-icon.teal { background: var(--teal-l); }
.fb-icon.amber { background: var(--amber-l); }

/* ── HOW IT WORKS ── */
#how { padding: 90px 5vw; background: var(--off); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: var(--teal-l); color: var(--teal-d);
  border-radius: 50px; padding: 6px 18px; font-size: 13px; font-weight: 700;
  margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase;
}
.section-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--mid); max-width: 560px; margin: auto; }
.steps-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: white; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow); position: relative;
  border-top: 4px solid var(--teal); transition: transform .2s;
}
.step-card:hover { transform: translateY(-6px); }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal);
  color: white; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,151,167,0.4);
}
.step-icon { font-size: 42px; margin-bottom: 16px; margin-top: 10px; }
.step-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }
.step-hindi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 13px; color: var(--teal-d); margin-top: 8px; font-weight: 600; }

/* ── SERVICES ── */
#services { padding: 90px 5vw; background: white; }
.services-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s;
  border: 1.5px solid rgba(0,151,167,0.1);
}
.service-card:hover { transform: translateY(-6px); }
.service-header { padding: 36px 32px 28px; }
.service-header.teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%); }
.service-header.amber { background: linear-gradient(135deg, var(--amber) 0%, #E65100 100%); }
.service-icon-big { font-size: 52px; margin-bottom: 16px; }
.service-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; color: white; margin-bottom: 6px; }
.service-title-hindi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 17px; color: rgba(255,255,255,0.8); font-weight: 600; }
.service-body { padding: 28px 32px; background: white; }
.service-features { list-style: none; }
.service-features li {
  padding: 10px 0; border-bottom: 1px solid #F0F9FA; font-size: 15px; color: var(--mid);
  display: flex; align-items: center; gap: 12px;
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 16px; }
.price-badge {
  margin-top: 20px; background: var(--teal-l); color: var(--teal-d); border-radius: 12px;
  padding: 14px 18px; font-size: 14px;
}
.price-badge strong { font-family: 'Sora', sans-serif; font-size: 22px; color: var(--teal); }
.price-badge.amber-bg { background: var(--amber-l); color: #E65100; }
.price-badge.amber-bg strong { color: var(--amber); }

/* ── LOCATIONS ── */
#locations { padding: 90px 5vw; background: var(--dark); }
#locations .section-h2 { color: white; }
#locations .section-sub { color: rgba(255,255,255,0.6); }
#locations .section-tag { background: rgba(0,151,167,0.2); color: var(--light); }
.locations-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc-card {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(0,151,167,0.2);
  border-radius: var(--radius); padding: 28px 24px;
  transition: background .2s, border-color .2s;
}
.loc-card:hover { background: rgba(0,151,167,0.12); border-color: var(--teal); }
.loc-route { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: white; margin-bottom: 4px; }
.loc-highway { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.loc-spots { display: flex; flex-direction: column; gap: 6px; }
.loc-spot { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }
.loc-spot::before { content: '📍'; font-size: 12px; }
.loc-coming {
  margin-top: 12px; background: rgba(255,143,0,0.15); color: var(--amber);
  border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 700;
  display: inline-block;
}

/* ── MISSION ── */
#mission { padding: 90px 5vw; background: white; }
.mission-inner { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-visual {
  background: linear-gradient(160deg, var(--teal-l) 0%, #b2ebf2 100%);
  border-radius: 24px; padding: 50px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.mission-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(0,151,167,0.12);
}
.mission-quote {
  font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--teal-d); line-height: 1.3; margin-bottom: 16px;
}
.mission-quote-hindi { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 18px; color: var(--mid); font-weight: 600; }
.values-list { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.value-icon.teal { background: var(--teal-l); }
.value-icon.amber { background: var(--amber-l); }
.value-icon.green { background: #E8F5E9; }
.value-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 4px; }
.value-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── STORY ── */
#story { padding: 90px 5vw; background: linear-gradient(160deg, #E0F7FA 0%, var(--off) 100%); }
.story-inner { max-width: 780px; margin: auto; text-align: center; }
.story-inner p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.story-inner p strong { color: var(--dark); }
.story-hindi-block {
  background: white; border-radius: 16px; padding: 28px 32px;
  border-left: 4px solid var(--teal); margin-top: 32px; text-align: left;
  box-shadow: var(--shadow);
}
.story-hindi-block p { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 16px; color: var(--mid); line-height: 1.8; }

/* ── SECURITY ── */
#security { padding: 90px 5vw; background: white; }
.security-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sec-card {
  background: var(--off); border-radius: var(--radius); padding: 32px 26px;
  border: 1.5px solid #E0F7FA; transition: box-shadow .2s;
}
.sec-card:hover { box-shadow: var(--shadow); }
.sec-icon { font-size: 40px; margin-bottom: 16px; }
.sec-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.sec-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── FAQ ── */
#faq { padding: 90px 5vw; background: var(--off); }
.faq-inner { max-width: 760px; margin: auto; }
.faq-item { border-bottom: 1.5px solid #E0F2F1; overflow: hidden; }
.faq-q {
  padding: 22px 0; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q .arrow { transition: transform .3s; color: var(--teal); font-size: 20px; }
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }

/* ── CTA STRIP ── */
#cta-strip {
  padding: 80px 5vw;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-d) 100%);
  text-align: center;
}
#cta-strip h2 { font-family: 'Sora', sans-serif; font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: white; margin-bottom: 10px; }
#cta-strip p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: white; color: var(--teal); padding: 15px 36px; border-radius: 50px;
  font-weight: 800; font-size: 16px; text-decoration: none; display: inline-block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15); transition: transform .2s;
}
.btn-white:hover { transform: translateY(-3px); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 5vw 30px; }
.footer-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: var(--amber); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: white; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.qr-placeholder {
  width: 80px; height: 80px; background: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  color: var(--mid); text-align: center; margin-top: 16px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .float-badge { display: none; }
}
/* Mobile nav */
nav ul.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px 5vw; gap: 16px; border-bottom: 1.5px solid var(--light); }