/* ==========================================================================
   Home Page
   ========================================================================== */

/* -------------------------------- Hero ----------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
}
.hero-slide.active .bg { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1.0); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
}
/* Fallback industrial gradient when images are missing */
.hero-slide .bg.placeholder {
  background: linear-gradient(120deg, #0a1a33, #12325c 45%, #1e5aa6 120%);
}
.hero-slide:nth-child(2) .bg.placeholder { background: linear-gradient(120deg, #0d1b2f, #263a52 60%, #445b78); }
.hero-slide:nth-child(3) .bg.placeholder { background: linear-gradient(130deg, #0a1a33, #37506e 80%); }
.hero-slide:nth-child(4) .bg.placeholder { background: linear-gradient(120deg, #0a1a33, #1e3a5f 50%, #2f5c8f); }
.hero-slide:nth-child(5) .bg.placeholder { background: linear-gradient(120deg, #101d30, #22415f); }
.hero-slide:nth-child(6) .bg.placeholder { background: linear-gradient(120deg, #0a1a33, #14385f 70%, #3b78c4); }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: #fff;
  padding-top: var(--header-h);
}
.hero-content .eyebrow { color: #9dc4f0; }
.hero-content .eyebrow::before { background: #9dc4f0; }
.hero h1 { color: #fff; margin: 1rem 0 1.2rem; }
.hero h1 .hl { color: #9dc4f0; }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Animate hero text per slide change */
.hero-slide.active .anim { animation: heroUp 0.9s var(--ease-out) both; }
.hero-slide.active .anim:nth-child(2) { animation-delay: 0.12s; }
.hero-slide.active .anim:nth-child(3) { animation-delay: 0.24s; }
.hero-slide.active .anim:nth-child(4) { animation-delay: 0.36s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

/* Hero controls */
.hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}
.hero-dots button {
  width: 34px; height: 4px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  transition: background var(--t);
}
.hero-dots button.active { background: #fff; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: background var(--t), transform var(--t);
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.2); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-arrow svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .hero-arrow { display: none; } }

.hero-scroll {
  position: absolute;
  bottom: 30px; right: 34px;
  z-index: 4;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.4); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(0.4);opacity:0.4} 50%{transform:scaleY(1);opacity:1} }
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* ---------------------------- Intro section ------------------------------ */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro-media { position: relative; }
.intro-media .frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: var(--grad-navy);
}
.intro-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-media .badge {
  position: absolute;
  bottom: -26px; right: -20px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.6rem;
  text-align: center;
}
.intro-media .badge .n { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--navy-700); line-height: 1; }
.intro-media .badge .l { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.06em; }
.intro-list { display: grid; gap: 0.9rem; margin: 1.6rem 0; }
.intro-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.intro-list .tick {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%;
  background: rgba(30, 90, 166, 0.12); color: var(--navy-500);
  display: grid; place-items: center;
}
.intro-list .tick svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; } .intro-media .badge { right: 20px; } }

/* ------------------------------- Stats ----------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1; }
.stat .num .plus { color: #9dc4f0; }
.stat .lbl { margin-top: 0.5rem; color: rgba(255,255,255,0.72); font-size: 0.92rem; letter-spacing: 0.03em; }
.stat { position: relative; padding: 0.5rem; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.14); }
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } .stat::after { display: none; } }

/* ---------------------------- Why choose --------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.why-card { padding: 1.9rem 1.6rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--grad-navy); color: #fff;
  box-shadow: 0 10px 22px rgba(17,48,88,0.22);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.92rem; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* --------------------------- Industries ---------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ind-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.3rem 3.6rem 1.2rem 1.3rem; min-height: 108px; justify-content: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.ind-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-navy); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ind-card:hover::before { transform: scaleX(1); }
.ind-card .ind-cat { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.ind-card .ind-title { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--navy-900); line-height: 1.28; }
.ind-card .ind-ico { position: absolute; top: 1.15rem; right: 1.15rem; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--bg-alt); color: var(--navy-600); transition: background var(--t), color var(--t); }
.ind-card .ind-ico svg { width: 20px; height: 20px; }
.ind-card:hover .ind-ico { background: var(--grad-navy); color: #fff; }
@media (max-width: 980px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-grid { grid-template-columns: 1fr; } .ind-card { padding-right: 3.4rem; } }

/* ---------------------------- Clients marquee ---------------------------- */
.marquee { overflow: hidden; padding: 0.6rem 0 1.2rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: scrollX 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-item {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 0.9rem;
  height: 80px; padding: 0 1.6rem; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.client-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-navy); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.client-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.client-item:hover::before { transform: scaleX(1); }
.client-logo { width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0; background: var(--bg-alt); }
.client-logo.media::after { font-size: 0.7rem; padding: 0.2rem; }
.client-name { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); white-space: nowrap; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------------------------- Inquiry banner ----------------------------- */
.inquiry {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-navy);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: #fff;
}
.inquiry::before, .inquiry::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.inquiry::before { width: 380px; height: 380px; background: radial-gradient(circle, rgba(59,120,196,0.4), transparent 70%); top: -140px; left: -80px; }
.inquiry::after { width: 320px; height: 320px; background: radial-gradient(circle, rgba(226,230,235,0.15), transparent 70%); bottom: -120px; right: -60px; }
.inquiry h2 { color: #fff; position: relative; }
.inquiry p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0.8rem auto 2rem; position: relative; }
.inquiry .hero-cta { justify-content: center; position: relative; }

/* --------------------------- 3D scroll showcase -------------------------- */
.showcase { padding-block: clamp(2.5rem, 6vw, 5rem); overflow: hidden; }
.showcase-head { text-align: center; max-width: 760px; margin: 0 auto clamp(1.5rem, 4vw, 3rem); }
.showcase-stage { perspective: 1300px; max-width: 1040px; margin: 0 auto; }
.showcase-card {
  --p: 0;
  transform: rotateX(calc((1 - var(--p)) * 22deg)) scale(calc(0.9 + var(--p) * 0.1));
  transform-origin: center top;
  border: 6px solid rgba(108, 108, 108, 0.35);
  border-radius: 30px;
  background: #1a2740;
  padding: clamp(8px, 1.2vw, 14px);
  box-shadow: 0 40px 90px rgba(10, 26, 51, 0.38);
  will-change: transform;
}
.showcase-card .media { aspect-ratio: 16 / 9; border-radius: 20px; }
.showcase-card .media::after { font-size: 1rem; }
@media (prefers-reduced-motion: reduce) { .showcase-card { transform: none; } }

/* -------------------------- Featured products ---------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.prod-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.prod-card .media { aspect-ratio: 4 / 3; }
.prod-card .badge-row { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; gap: 6px; }
.prod-tag { font-family: var(--font-head); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-pill); background: var(--grad-steel); color: var(--navy-900); }
.prod-tag.new { background: var(--navy-500); color: #fff; }
.prod-body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.prod-body .cat { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-500); font-weight: 600; }
.prod-body h3 { font-size: 1.08rem; margin: 0.3rem 0 0.4rem; }
.prod-body p { font-size: 0.88rem; flex: 1; }
.prod-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.prod-actions .btn { flex: 1; padding: 0.65rem 0.8rem; font-size: 0.82rem; }
@media (max-width: 1080px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prod-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Categories ------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.cat-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg); background: #fff; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); text-decoration: none;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card .cat-media { aspect-ratio: 16 / 10; }
.cat-card .cat-media::after { display: none; } /* name shown below the image instead */
.cat-card .cat-ico {
  position: absolute; left: 1.4rem; bottom: -22px; z-index: 2;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; color: var(--navy-600); box-shadow: var(--shadow-md);
  transition: background var(--t), color var(--t);
}
.cat-card .cat-ico svg { width: 22px; height: 22px; }
.cat-card:hover .cat-ico { background: var(--grad-navy); color: #fff; }
.cat-card .cat-body { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; padding: 2rem 1.5rem 1.5rem; }
.cat-card .cat-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy-900); }
.cat-card .cat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; flex: 1; }
.cat-card .cat-go { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.cat-card .cat-go svg { width: 15px; height: 15px; transition: transform var(--t) var(--ease); }
.cat-card:hover .cat-go svg { transform: translateX(4px); }
@media (max-width: 1080px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* --------------------------- Industries layout --------------------------- */
.industries-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.ind-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.8rem; height: 100%; min-height: 340px; }
.ind-collage .media { border-radius: var(--r-md); }
.ind-collage .media:first-child { grid-row: span 2; }
.industries-layout.no-collage { grid-template-columns: 1fr; }
.industries-layout.no-collage .ind-collage { display: none; }
@media (max-width: 820px) { .industries-layout { grid-template-columns: 1fr; } .ind-collage { min-height: 260px; } }

/* ----------------------------- Process timeline -------------------------- */
.timeline { position: relative; display: grid; gap: 1.4rem; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--navy-400), transparent); }
.tl-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; align-items: start; }
.tl-num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-navy); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; box-shadow: 0 10px 22px rgba(17,48,88,.22); z-index: 1; }
.tl-body { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.5rem; box-shadow: var(--shadow-sm); }
.tl-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.tl-body p { font-size: 0.9rem; }
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.process-media .media { aspect-ratio: 3 / 4; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
@media (max-width: 900px) { .process-wrap { grid-template-columns: 1fr; } .process-media { order: -1; } }

/* ----------------------------- Factory overview -------------------------- */
.factory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.factory-card { position: relative; overflow: hidden; border-radius: var(--r-lg); aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.factory-card .media { position: absolute; inset: 0; }
.factory-card .cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.4rem 1.2rem 1.1rem; background: linear-gradient(transparent, rgba(8,20,40,.88)); color: #fff; }
.factory-card .cap h3 { color: #fff; font-size: 1.1rem; }
.factory-card .cap p { color: rgba(255,255,255,.75); font-size: 0.84rem; }
@media (max-width: 820px) { .factory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .factory-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Certificates ----------------------------- */
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.cert-card {
  width: 176px; display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.1rem 1.3rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cert-card .cert-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-navy); color: #fff; flex-shrink: 0; }
.cert-card .cert-icon svg { width: 26px; height: 26px; }
.cert-card .cert-thumb { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); }
.cert-card .cert-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cert-card .cert-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--navy-800); line-height: 1.32; }
.cert-card .cert-view { font-size: 0.72rem; font-weight: 600; color: var(--accent); }
@media (max-width: 520px) { .cert-card { width: 148px; padding: 1.3rem 0.9rem 1.1rem; } }

/* ------------------------------ Testimonials ----------------------------- */
.testi-slider { position: relative; max-width: 820px; margin-inline: auto; }
.testi { display: none; text-align: center; padding: 0 1rem; }
.testi.active { display: block; animation: fadeIn 0.6s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.testi .stars { color: #f0b429; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi blockquote { font-size: clamp(1.1rem, 2vw, 1.4rem); font-family: var(--font-head); font-weight: 500; color: var(--navy-800); line-height: 1.5; margin-bottom: 1.5rem; }
.testi .who { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.testi .who .media { width: 54px; height: 54px; border-radius: 50%; }
.testi .who .n { font-family: var(--font-head); font-weight: 700; color: var(--navy-900); }
.testi .who .c { font-size: 0.85rem; color: var(--text-muted); }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.8rem; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--steel-300); transition: background var(--t), transform var(--t); }
.testi-dots button.active { background: var(--navy-500); transform: scale(1.25); }

/* ------------------------------- PAN India ------------------------------- */
.pan-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.pan-cities { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.pan-city { padding: 0.5rem 1rem; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }
.pan-map .media { aspect-ratio: 4 / 5; border-radius: var(--r-xl); }
@media (max-width: 820px) { .pan-wrap { grid-template-columns: 1fr; } }

/* ---------------------------- Animated India map -------------------------- */
.india-map {
  aspect-ratio: 4 / 5; border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(120% 100% at 30% 15%, rgba(59,120,196,0.22), transparent 55%), var(--navy-900);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-xl);
}
.india-map svg { width: 100%; height: 100%; display: block; }
.india-map .dot-grid circle { fill: rgba(255,255,255,0.08); }
.india-map .route {
  fill: none; stroke: url(#nf-route-grad); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100; opacity: 0;
  animation: nf-route-draw 6.5s ease-in-out infinite;
}
@keyframes nf-route-draw {
  0% { stroke-dashoffset: 100; opacity: 0; }
  6% { opacity: 1; }
  32%, 78% { stroke-dashoffset: 0; opacity: 1; }
  94% { opacity: 0; }
  100% { stroke-dashoffset: 100; opacity: 0; }
}
.india-map .route-dot {
  fill: #dcebff; opacity: 0;
  offset-rotate: 0deg;
  animation: nf-dot-travel 6.5s ease-in-out infinite;
}
@keyframes nf-dot-travel {
  0%, 5% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  32% { offset-distance: 100%; opacity: 1; }
  36% { opacity: 0; }
  100% { offset-distance: 100%; opacity: 0; }
}
.india-map .city-label {
  font-family: var(--font-head); font-size: 10.5px; font-weight: 600;
  fill: rgba(255,255,255,0.88); letter-spacing: 0.01em;
}
.india-map .hub-label { font-size: 12px; font-weight: 700; fill: #dcebff; }
.india-map .city-dot { fill: #9dc4f0; }
.india-map .city-ring {
  fill: none; stroke: #9dc4f0; stroke-width: 1.4; opacity: 0;
  transform-origin: center; transform-box: fill-box;
  animation: nf-ring-pulse 6.5s ease-in-out infinite;
}
.india-map .hub-dot { fill: #ffffff; }
.india-map .hub-ring {
  fill: none; stroke: rgba(255,255,255,0.7); stroke-width: 1.6; r: 6.5px;
  transform-origin: center; transform-box: fill-box;
  animation: nf-hub-pulse 2.2s ease-out infinite;
}
@keyframes nf-ring-pulse {
  0%, 28% { r: 3.2px; opacity: 0; }
  34% { opacity: 0.9; }
  55% { r: 13px; opacity: 0; }
  100% { r: 13px; opacity: 0; }
}
@keyframes nf-hub-pulse {
  0% { r: 6.5px; opacity: 0.85; }
  100% { r: 22px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .india-map .route, .india-map .route-dot, .india-map .city-ring, .india-map .hub-ring { animation: none; }
  .india-map .route { stroke-dashoffset: 0; opacity: 0.85; }
}
@media (max-width: 560px) { .india-map .city-label { font-size: 9px; } }

/* -------------------------------- Map ------------------------------------ */
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 21 / 8; background: var(--steel-100); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 720px) { .map-wrap { aspect-ratio: 4 / 3; } }
