/* ==========================================================================
   Lalan Kumar | Indian National Congress — Portfolio Website
   Design system: tricolor-accented light theme, modern & bilingual (EN/HI)
   ========================================================================== */

/* Google Fonts are preconnected + loaded via <link> tags in each page <head> for performance */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; color: var(--navy); }
p { line-height: 1.75; }
svg { display: block; }
.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 2. Design tokens ---------- */
:root {
  /* Tricolor + brand palette */
  --saffron: #FF9933;
  --saffron-deep: #E85D04;
  --white: #FFFFFF;
  --green: #128807;
  --green-deep: #0A6B2E;
  --navy: #0B2545;
  --navy-2: #123A6B;
  --chakra: #0D2C8C;

  /* Light, appealing neutrals */
  --cream: #FFFAF2;
  --cream-2: #FFF3DF;
  --sand: #FDF6E8;
  --ink: #23262B;
  --muted: #6B7280;
  --muted-2: #97A1AD;
  --border: #EFE4CE;
  --border-soft: #F0EBDD;

  --grad-brand: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  --grad-green: linear-gradient(135deg, #1EA80A 0%, var(--green-deep) 100%);
  --grad-tricolor: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 33%, #ffffff 33%, #ffffff 66%, var(--green) 66%, var(--green) 100%);
  --grad-navy: linear-gradient(160deg, #0D2C57 0%, var(--navy) 60%, #081A34 100%);
  --grad-radial-soft: radial-gradient(60% 60% at 50% 40%, rgba(255,153,51,.10), rgba(255,255,255,0) 70%);

  --shadow-sm: 0 2px 10px rgba(11,37,69,.06);
  --shadow-md: 0 10px 30px rgba(11,37,69,.10);
  --shadow-lg: 0 20px 55px rgba(11,37,69,.16);
  --shadow-brand: 0 12px 28px rgba(232,93,4,.28);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-head: 'Poppins', 'Hind', 'Noto Sans Devanagari', sans-serif;
  --font-body: 'Inter', 'Hind', 'Noto Sans Devanagari', sans-serif;

  --container: 1240px;
  --header-h: 76px;
  --topbar-h: 40px;

  --ease: cubic-bezier(.22,.9,.32,1.14);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- 3. Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--grad-navy); color: #fff; }
.bg-white { background: #fff; }
.overflow-clip { overflow: hidden; }
.relative { position: relative; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--saffron-deep);
  margin-bottom: 14px;
}
.kicker::before {
  content: ''; width: 28px; height: 3px; border-radius: 2px;
  background: var(--grad-brand);
}
.section-head.center .kicker { justify-content: center; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-title .accent { color: var(--saffron-deep); }
.section-sub { color: var(--muted); font-size: 17px; max-width: 62ch; }
.section-head.center .section-sub { margin-inline: auto; }

.divider-tricolor { height: 4px; width: 72px; border-radius: 3px; background: var(--grad-tricolor); margin: 18px 0; }
.section-head.center .divider-tricolor { margin-inline: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill); font-family: var(--font-head);
  font-weight: 600; font-size: 15px; white-space: nowrap; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  isolation: isolate; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(232,93,4,.36); }
.btn-green { background: var(--grad-green); color: #fff; box-shadow: 0 12px 28px rgba(10,107,46,.28); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(10,107,46,.34); }
.btn-outline { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--border); }
.btn-outline:hover { box-shadow: inset 0 0 0 2px var(--saffron); color: var(--saffron-deep); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2);
  color: var(--navy); transition: all .3s var(--ease-soft);
}
.icon-btn:hover { background: var(--grad-brand); color: #fff; transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }

/* ---------- 5. Top utility bar ---------- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.88); font-size: 13.5px;
  position: relative; z-index: 60;
}
.topbar::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:4px; background: var(--grad-tricolor); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: var(--topbar-h); gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 7px; opacity: .92; transition: opacity .25s, color .25s; }
.topbar-left a:hover { opacity: 1; color: var(--saffron); }
.topbar-left svg { width: 14px; height: 14px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .3s, transform .3s; }
.topbar-social a:hover { background: var(--saffron); transform: translateY(-2px); }
.topbar-social svg { width: 13px; height: 13px; }

.lang-toggle {
  display: inline-flex; align-items: center; background: rgba(255,255,255,.12); border-radius: var(--radius-pill);
  padding: 3px; gap: 2px;
}
.lang-toggle button {
  padding: 5px 12px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  color: rgba(255,255,255,.75); transition: all .3s var(--ease-soft);
}
.lang-toggle button.active { background: var(--saffron); color: #fff; }
.header .lang-toggle { background: var(--cream-2); }
.header .lang-toggle button { color: var(--navy-2); }
.header .lang-toggle button.active { background: var(--grad-brand); color: #fff; }

/* ---------- 6. Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft); transition: box-shadow .3s, padding .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; border: 2px solid var(--saffron); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: -.01em; }
.brand-tag { font-size: 11.5px; color: var(--saffron-deep); font-weight: 600; letter-spacing: .03em; }

.header-cta { flex-shrink: 0; }
.nav-main { display: flex; align-items: center; gap: 6px; }
.nav-main a {
  position: relative; padding: 10px 16px; border-radius: var(--radius-pill); font-family: var(--font-head);
  font-weight: 600; font-size: 15px; color: var(--navy-2); transition: color .25s, background .25s;
}
.nav-main a:hover { color: var(--saffron-deep); background: var(--cream-2); }
.nav-main a.active { color: var(--saffron-deep); background: var(--cream-2); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border-radius: 50%; }
.hamburger span { width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: all .35s var(--ease-soft); margin-inline: auto; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 900; visibility: hidden; pointer-events: none;
}
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(11,37,69,.5); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s; }
.mobile-drawer.is-open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 84vw); background: #fff;
  box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; padding: 28px 26px; overflow-y: auto;
}
.mobile-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer-close { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.drawer-nav a { padding: 14px 6px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--navy); border-bottom: 1px solid var(--border-soft); opacity: 0; transform: translateX(16px); transition: all .4s var(--ease-soft); }
.mobile-drawer.is-open .drawer-nav a { opacity: 1; transform: translateX(0); }
.drawer-nav a.active { color: var(--saffron-deep); }
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 18px; }
.drawer-social { display: flex; gap: 10px; }

/* ---------- 7. Hero Carousel ---------- */
.hero { position: relative; height: min(92vh, 780px); min-height: 480px; overflow: hidden; background: var(--navy); }
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease-soft);
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.08); transition: transform 7s linear;
}
.hero-slide.is-active img { transform: scale(1); }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,20,40,.88) 0%, rgba(8,20,40,.42) 42%, rgba(8,20,40,.28) 65%, rgba(8,20,40,.55) 100%);
}
.hero-chakra {
  position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; opacity: .1;
  animation: spin 60s linear infinite; z-index: 3; pointer-events: none;
}
.hero-content { position: relative; z-index: 5; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 90px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 13px; letter-spacing: .05em; padding: 8px 18px 8px 8px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.hero-eyebrow img { width: 26px; height: 26px; border-radius: 50%; background: #fff; padding: 2px; object-fit: cover; }

.slide-caption { display: flex; flex-direction: column; gap: 6px; color: #fff; margin-bottom: 16px; min-height: 2.4em; }
.slide-caption .tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); }
.slide-caption .tag::before { content: ''; width: 18px; height: 2px; background: var(--saffron); border-radius: 2px; }
.slide-caption .cap-title {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px); transition: opacity .5s var(--ease-soft), transform .5s var(--ease-soft);
}

.hero-title {
  color: #fff; font-size: clamp(32px, 5vw, 60px); font-weight: 800; max-width: 900px; letter-spacing: -.01em;
  text-shadow: 0 6px 30px rgba(0,0,0,.25);
}
.hero-tagline { color: rgba(255,255,255,.92); font-size: clamp(16px, 2vw, 20px); max-width: 620px; margin-top: 18px; font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-nav { position: absolute; z-index: 8; bottom: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
.hero-nav:hover { background: var(--saffron); transform: scale(1.08); }
.hero-nav.prev { left: 22px; }
.hero-nav.next { left: 78px; }
.hero-nav svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .hero-nav { display: none; } }

.hero-dots { position: absolute; z-index: 8; bottom: 40px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; }
@media (max-width: 640px) { .hero-dots { right: 68px; gap: 7px; } .hero-dot { width: 22px; } }
.hero-dot { width: 34px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.35); overflow: hidden; position: relative; transition: background .3s; }
.hero-dot span { position: absolute; inset: 0; background: var(--saffron); transform-origin: left; transform: scaleX(0); }
.hero-dot.is-active span { animation: hero-progress 5.6s linear forwards; }
.hero-counter { position: absolute; z-index: 8; top: 26px; right: 26px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px; opacity: .85; letter-spacing: .05em; }

@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue { position: absolute; z-index: 7; left: 50%; bottom: 14px; transform: translateX(-50%); display: none; }
@media (min-width: 640px) { .scroll-cue { display: flex; } }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-cue .mouse::before { content: ''; width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scroll-cue 1.8s infinite; }
@keyframes scroll-cue { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- 7b. Header responsive override (must follow header/nav/hamburger/drawer rules above so it wins the cascade at narrow widths) ---------- */
@media (max-width: 900px) {
  .nav-main { display: none; }
  .header .lang-toggle { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
}

/* ---------- 8. Decorative blobs & motifs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.blob-saffron { background: rgba(255,153,51,.28); }
.blob-green { background: rgba(18,136,7,.22); }
.chakra-watermark { position: absolute; opacity: .05; pointer-events: none; z-index: 0; animation: spin 90s linear infinite; }
.dot-grid { position: absolute; width: 140px; height: 140px; background-image: radial-gradient(circle, var(--saffron) 1.6px, transparent 1.6px); background-size: 16px 16px; opacity: .25; z-index: 0; }

/* ---------- 9. Marquee strip ---------- */
.marquee-strip { background: var(--navy); overflow: hidden; padding: 14px 0; position: relative; }
.marquee-strip::before, .marquee-strip::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; }
.marquee-strip::before { left:0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee-strip::after { right:0; background: linear-gradient(-90deg, var(--navy), transparent); }
.marquee-track { display: flex; width: max-content; gap: 40px; animation: marquee 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-family: var(--font-head); font-weight: 600; font-size: 15px; white-space: nowrap; }
.marquee-track span svg { width: 16px; height: 16px; color: var(--saffron); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 10. About teaser (home) ---------- */
.about-teaser { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 940px) { .about-teaser { grid-template-columns: 1fr; gap: 40px; } }
@media (min-width: 941px) { .about-sticky-col { position: sticky; top: 110px; } }
.teaser-media { position: relative; }
.teaser-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; max-width: 420px;
}
.teaser-frame img { width: 100%; height: 100%; object-fit: cover; }
.teaser-badge {
  position: absolute; bottom: -26px; left: -26px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.teaser-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--saffron-deep); }
.teaser-badge .lbl { font-size: 12.5px; color: var(--muted); font-weight: 600; line-height: 1.3; }
.teaser-ring { position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; border: 3px dashed var(--saffron); border-radius: 50%; opacity: .5; animation: spin 40s linear infinite; }

.about-content .position-chip {
  display: inline-flex; align-items: center; gap: 10px; background: var(--cream-2); color: var(--saffron-deep);
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 32px; }
.about-facts .fact { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--cream); border-radius: var(--radius-sm); border: 1px solid var(--border-soft); }
.about-facts .fact svg { width: 20px; height: 20px; color: var(--saffron-deep); flex-shrink: 0; margin-top: 2px; }
.about-facts .fact .flbl { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.about-facts .fact .fval { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--navy); margin-top: 2px; }

/* ---------- 11. Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stat-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.stat-icon svg { width: 26px; height: 26px; color: #fff; }
.stat-card:nth-child(4n+1) .stat-icon { background: var(--grad-brand); }
.stat-card:nth-child(4n+2) .stat-icon { background: var(--grad-green); }
.stat-card:nth-child(4n+3) .stat-icon { background: linear-gradient(135deg, var(--navy-2), var(--navy)); }
.stat-card:nth-child(4n+4) .stat-icon { background: linear-gradient(135deg, #E85D04, var(--green-deep)); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.4vw, 38px); color: var(--navy); display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.stat-label { color: var(--muted); font-size: 14px; font-weight: 500; margin-top: 6px; }

/* ---------- 12. Initiative cards ---------- */
.initiative-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .initiative-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .initiative-grid { grid-template-columns: 1fr; } }
.init-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column;
}
.init-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.init-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.init-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-soft); }
.init-card:hover .init-media img { transform: scale(1.09); }
.init-media::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(11,37,69,.55), transparent 55%); }
.init-icon-badge {
  position: absolute; bottom: -22px; left: 22px; width: 52px; height: 52px; border-radius: 15px; background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-brand); z-index: 2;
}
.init-icon-badge svg { width: 24px; height: 24px; color: #fff; }
.init-body { padding: 34px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.init-body h3 { font-size: 19px; margin-bottom: 10px; }
.init-body p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.init-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--saffron-deep); }
.init-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-soft); }
.init-card:hover .init-link svg { transform: translateX(5px); }

/* ---------- 13. Poster / graphic design showcase ---------- */
.poster-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .poster-section { grid-template-columns: 1fr; gap: 40px; } }
.poster-showcase { position: relative; display: flex; justify-content: center; padding: 30px 0; }
.poster-card {
  position: relative; width: min(320px, 80%); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  transform: rotate(-4deg); transition: transform .5s var(--ease);
  border: 6px solid #fff;
}
.poster-card:hover { transform: rotate(0deg) scale(1.03); }
.poster-card img { width: 100%; display: block; }
.poster-tape { position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 90px; height: 30px; background: rgba(255,153,51,.35); border: 1px solid rgba(255,153,51,.5); z-index: 3; }
.poster-glow { position: absolute; inset: 0; background: var(--grad-radial-soft); z-index: 0; }
.poster-chip2 {
  position: absolute; bottom: 6px; right: 4%; background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-sm);
  padding: 14px 18px; display: flex; align-items: center; gap: 10px; transform: rotate(3deg);
}
.poster-chip2 svg { width: 22px; height: 22px; color: var(--green-deep); }
.poster-chip2 span { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--navy); }

/* ---------- 14. Gallery preview (home) + full gallery ---------- */
.gallery-masonry { columns: 4 220px; column-gap: 18px; }
@media (max-width: 720px) { .gallery-masonry { columns: 2 160px; } }
.gallery-masonry .g-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-masonry .g-item img { width: 100%; transition: transform .5s var(--ease-soft); }
.gallery-masonry .g-item:hover img { transform: scale(1.06); }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--cream); border: 1px solid var(--border); color: var(--navy-2); transition: all .3s var(--ease-soft);
}
.chip:hover { border-color: var(--saffron); color: var(--saffron-deep); }
.chip.active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.gallery-card {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: opacity .4s, transform .4s var(--ease);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-card.hide { display: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
.gallery-card:hover img { transform: scale(1.1); }
.gallery-card .g-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,37,69,.85) 0%, rgba(11,37,69,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; opacity: 0; transition: opacity .35s;
}
.gallery-card:hover .g-overlay { opacity: 1; }
.g-overlay .g-cat { font-size: 10.5px; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.g-overlay .g-title { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.g-zoom { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.7); transition: all .3s var(--ease-soft); }
.gallery-card:hover .g-zoom { opacity: 1; transform: scale(1); }
.g-zoom svg { width: 15px; height: 15px; color: var(--navy); }

.gallery-empty { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }
.gallery-empty.show { display: block; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity .35s var(--ease-soft), visibility .35s; }
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(6,14,28,.92); backdrop-filter: blur(6px); }
.lightbox-inner { position: relative; z-index: 2; max-width: min(88vw, 980px); max-height: 86vh; display: flex; flex-direction: column; align-items: center; transform: scale(.94); transition: transform .35s var(--ease); }
.lightbox.is-open .lightbox-inner { transform: scale(1); }
.lightbox-inner img { max-width: 100%; max-height: 68vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; background: #0b1526; }
.lightbox-caption { color: #fff; text-align: center; margin-top: 18px; max-width: 640px; }
.lightbox-caption .lb-cat { color: var(--saffron); font-family: var(--font-head); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.lightbox-caption .lb-title { font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--saffron); }
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-count { position: absolute; top: -56px; left: 0; color: rgba(255,255,255,.7); font-family: var(--font-head); font-weight: 600; font-size: 13px; }
@media (max-width: 720px) {
  .lightbox-prev { left: 6px; background: rgba(6,14,28,.55); }
  .lightbox-next { right: 6px; background: rgba(6,14,28,.55); }
  .lightbox-close { top: 10px; right: 10px; background: rgba(6,14,28,.55); }
  .lightbox-count { top: 10px; left: 10px; }
}

/* ---------- 15. Quote / manifesto banner ---------- */
.manifesto {
  position: relative; background: var(--grad-navy); border-radius: var(--radius-lg); padding: 70px 50px; overflow: hidden;
  text-align: center; color: #fff;
}
@media (max-width: 640px) { .manifesto { padding: 50px 24px; } }
.manifesto-quote-icon { width: 44px; height: 44px; color: var(--saffron); margin: 0 auto 22px; opacity: .9; }
.manifesto-text { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 3.4vw, 36px); max-width: 900px; margin: 0 auto 20px; line-height: 1.35; }
.manifesto-sub { color: rgba(255,255,255,.7); font-size: 15px; max-width: 60ch; margin: 0 auto; }
.manifesto .chakra-watermark { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 480px; height: 480px; opacity: .06; }

/* ---------- 16. Timeline (About page) ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content:''; position:absolute; left: 24px; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--saffron), var(--green)); border-radius: 3px; }
@media (min-width: 800px) { .timeline::before { left: 50%; margin-left: -1.5px; } }
.tl-item { position: relative; padding-left: 64px; margin-bottom: 44px; }
@media (min-width: 800px) {
  .tl-item { width: 50%; padding-left: 0; padding-right: 50px; margin-bottom: 56px; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 50px; }
}
.tl-dot { position: absolute; left: 14px; top: 4px; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--saffron); z-index: 2; }
@media (min-width: 800px) {
  .tl-item:nth-child(even) .tl-dot { left: -11px; }
  .tl-item:nth-child(odd) .tl-dot { right: -11px; left: auto; }
}
.tl-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.tl-year { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 12.5px; color: #fff; background: var(--grad-brand); padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.tl-card h4 { font-size: 17px; margin-bottom: 8px; }
.tl-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- 17. Values grid ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 34px 22px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--border-soft); transition: all .4s var(--ease); }
.value-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value-icon { width: 62px; height: 62px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-icon svg { width: 28px; height: 28px; color: var(--saffron-deep); }
.value-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- 18. Page header (inner pages) ---------- */
.page-header { position: relative; padding: 68px 0 56px; background: var(--grad-navy); overflow: hidden; color: #fff; }
.page-header .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.65); margin-bottom: 16px; font-weight: 500; }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb svg { width: 13px; height: 13px; }
.page-header h1 { color: #fff; font-size: clamp(30px, 4.6vw, 48px); }
.page-header p { color: rgba(255,255,255,.72); max-width: 640px; margin-top: 14px; font-size: 16px; }
.page-header .chakra-watermark { top: -80px; right: -80px; width: 340px; height: 340px; }

/* ---------- 19. Initiatives page (zig-zag detail sections) ---------- */
.init-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--border-soft); }
.init-detail:last-child { border-bottom: none; }
@media (max-width: 900px) { .init-detail { grid-template-columns: 1fr; gap: 34px; padding: 44px 0; } }
.init-detail.reverse .id-media { order: 2; }
.init-detail.reverse .id-text { order: 1; }
@media (max-width: 900px) { .init-detail.reverse .id-media, .init-detail.reverse .id-text { order: initial; } }
.id-media { position: relative; }
.id-gallery { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 380px; }
.id-gallery a:first-child { grid-row: 1 / 3; }
.id-gallery.two-up { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.id-gallery.two-up a:first-child { grid-row: auto; }
.id-gallery a { position: relative; border-radius: var(--radius-sm); overflow: hidden; display: block; box-shadow: var(--shadow-sm); }
.id-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-soft); }
.id-gallery a:hover img { transform: scale(1.08); }
.id-gallery .more-overlay { position: absolute; inset: 0; background: rgba(11,37,69,.72); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; }
@media (max-width: 560px) { .id-gallery { height: 300px; } }
.id-number { position: absolute; top: -34px; left: -6px; font-family: var(--font-head); font-weight: 800; font-size: 90px; color: var(--cream-2); z-index: -1; line-height: 1; }
.id-text .init-icon-badge { position: static; margin-bottom: 18px; box-shadow: none; }
.id-text h3 { font-size: 26px; margin-bottom: 16px; }
.id-text p { color: var(--muted); margin-bottom: 14px; }
.id-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.id-tags span { font-size: 12.5px; font-weight: 600; font-family: var(--font-head); padding: 7px 14px; border-radius: var(--radius-pill); background: var(--cream-2); color: var(--navy-2); }

/* ---------- 20. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 30px; }
@media (max-width: 560px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm); transition: all .35s var(--ease); display: flex; flex-direction: column; gap: 14px;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .cc-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.contact-card .cc-icon svg { width: 23px; height: 23px; color: #fff; }
.contact-card.whatsapp .cc-icon { background: linear-gradient(135deg,#25D366,#128C42); }
.contact-card.email .cc-icon { background: var(--grad-brand); }
.contact-card.fb .cc-icon { background: linear-gradient(135deg,#1877F2,#0E4FA5); }
.contact-card.ig .cc-icon { background: linear-gradient(135deg,#F58529,#DD2A7B 40%,#8134AF 70%,#515BD4); }
.contact-card.x .cc-icon { background: linear-gradient(135deg,#111,#3a3a3a); }
.contact-card.phone .cc-icon { background: var(--grad-green); }
.contact-card h4 { font-size: 15.5px; }
.contact-card .cc-val { color: var(--muted); font-size: 14px; word-break: break-word; }
.contact-card .cc-go { font-size: 13px; font-weight: 700; font-family: var(--font-head); color: var(--saffron-deep); display: inline-flex; align-items: center; gap: 6px; }

.office-block { background: var(--cream); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border-soft); }
.office-block h4 { font-size: 16px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.office-block h4 svg { width: 20px; height: 20px; color: var(--saffron-deep); }
.office-block p { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.office-map { border-radius: var(--radius); overflow: hidden; margin-top: 18px; height: 240px; border: 1px solid var(--border-soft); filter: grayscale(.15) contrast(1.05); }
.office-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-soft); padding: 40px; }
@media (max-width: 560px) { .contact-form-card { padding: 26px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 600; font-family: var(--font-head); color: var(--navy); }
.field input, .field textarea, .field select {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--cream);
  font-size: 14.5px; transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--saffron); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; flex-shrink: 0; }
.form-success { display: none; align-items: center; gap: 12px; background: #EEFBF0; border: 1px solid #C9EFCE; color: var(--green-deep); padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- 21. Footer ---------- */
.footer { background: var(--grad-navy); color: rgba(255,255,255,.75); position: relative; overflow: hidden; }
.footer::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; background: var(--grad-tricolor); }
.footer-top { padding: 76px 0 48px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; position: relative; z-index: 2; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 50%; border: 2px solid var(--saffron); }
.footer-brand .fb-name { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 18px; }
.footer-brand .fb-tag { font-size: 12px; color: var(--saffron); font-weight: 600; }
.footer-col h5 { color: #fff; font-family: var(--font-head); font-size: 15px; margin-bottom: 20px; letter-spacing: .02em; }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14.5px; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact a, .footer-contact div { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--saffron); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease-soft); }
.footer-social a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; position: relative; z-index: 2; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 18px; }

/* ---------- 22. Floating buttons ---------- */
.floating-stack { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.fab-whatsapp {
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg,#25D366,#128C42);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(18,140,66,.4);
  position: relative;
}
.fab-whatsapp svg { width: 28px; height: 28px; color: #fff; }
.fab-whatsapp::before { content:''; position:absolute; inset:0; border-radius:50%; background: rgba(37,211,102,.55); animation: pulse-ring 2.4s infinite; z-index: -1; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }
.fab-top {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); color: var(--navy);
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .35s var(--ease-soft);
}
.fab-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top svg { width: 18px; height: 18px; }

/* ---------- 23. Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="left"].in-view { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].in-view { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal="zoom"].in-view { transform: scale(1); }

/* Stagger children helper */
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft); }
.stagger.in-view > *:nth-child(1) { transition-delay: .05s; }
.stagger.in-view > *:nth-child(2) { transition-delay: .14s; }
.stagger.in-view > *:nth-child(3) { transition-delay: .23s; }
.stagger.in-view > *:nth-child(4) { transition-delay: .32s; }
.stagger.in-view > *:nth-child(5) { transition-delay: .41s; }
.stagger.in-view > *:nth-child(6) { transition-delay: .5s; }
.stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* ---------- 24. Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 3000; background: #fff; display: flex; align-items: center; justify-content: center; transition: opacity .5s var(--ease-soft), visibility .5s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader img { width: 64px; height: 64px; animation: pulse-logo 1.3s ease-in-out infinite; }
@keyframes pulse-logo { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.86); opacity: .6; } }

/* ---------- 25. Misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.flag-strip { height: 6px; width: 100%; background: var(--grad-tricolor); }
::selection { background: var(--saffron); color: #fff; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; z-index: 5000; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--saffron), var(--green)); border-radius: 10px; border: 2px solid var(--cream); }

/* Language visibility helper (used sparingly for elements needing structural HTML) */
[data-hi-only] { display: none; }
html[lang="hi"] [data-hi-only] { display: revert; }
html[lang="hi"] [data-en-only] { display: none; }
