:root {
  --blue: rgb(11, 125, 194);
  --blue-dk: rgb(8, 95, 148);
  --blue-lt: rgb(40, 155, 220);
  --blue-bg: rgba(11, 125, 194, 0.07);
  --gold: rgb(254, 175, 28);
  --gold-dk: rgb(210, 140, 10);
  --gold-lt: rgb(255, 200, 80);
  --gold-bg: rgba(254, 175, 28, 0.10);
  --deep: #0A0F1A;
  --deep2: #0E1624;
  --deep3: #111C2C;
  --cream: #FBF8F2;
  --warm: #F5EDD8;
  --text: #1A1A2E;
  --muted: #6B7280;
  --white: #FFFFFF;
  --border: rgba(254, 175, 28, 0.18);
  --border-b: rgba(255, 255, 255, 0.07);
  --serif: 'PT Sans', sans-serif;
  --em-serif: 'Cormorant Garamond', sans-serif;
  --body-serif: 'Nunito', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--deep);
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--sans)
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center
}

.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
  width: max-content
}

.ticker-track:hover {
  animation-play-state: paused
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0
}

.ticker-om {
  font-size: 17px;
  color: var(--blue);
  font-family: var(--body-serif)
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 15, 26, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(254, 175, 28, 0.15);
  transition: all 0.3s
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4)
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 120px;
}

.nav-logo img {
  width: 100%;
}

.nav-logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(254, 175, 28, 0.4);
  flex-shrink: 0
}

.nav-logo-txt b {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em
}

.nav-logo-txt small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links>li {
  position: relative
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition: all 0.2s
}

.nav-links>li>a svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  opacity: 0.5
}

.nav-links>li>a:hover,
.nav-links>li>a.act {
  color: var(--gold);
  background: rgba(254, 175, 28, 0.08)
}

.drop {
  position: absolute;
  top: calc(100%+8px);
  left: 0;
  min-width: 200px;
  background: var(--deep2);
  border: 1px solid rgba(254, 175, 28, 0.2);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s;
  z-index: 200
}

.nav-links>li:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop li a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.15s
}

.drop li a:hover {
  background: rgba(254, 175, 28, 0.1);
  color: var(--gold)
}

.nav-darshan {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(254, 175, 28, 0.4);
  padding: 7px 14px;
  border-radius: 20px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-darshan:hover {
  background: rgba(254, 175, 28, 0.1);
  border-color: var(--gold)
}

.nav-darshan-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.nav-donate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block
}

.nav-donate:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 175, 28, 0.4)
}

.nav-back {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px
}

.nav-back:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding: 88px 0 0
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 15% 20%, rgba(254, 175, 28, 0.6), transparent), radial-gradient(1px 1px at 30% 10%, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1.5px 1.5px at 50% 5%, rgba(254, 175, 28, 0.5), transparent), radial-gradient(1px 1px at 70% 15%, rgba(255, 255, 255, 0.3), transparent), radial-gradient(1.5px 1.5px at 85% 25%, rgba(254, 175, 28, 0.6), transparent), radial-gradient(1px 1px at 10% 50%, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 90% 40%, rgba(254, 175, 28, 0.4), transparent), radial-gradient(1px 1px at 25% 70%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
  z-index: 0
}

.hero-mandala-bg {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.05;
  z-index: 0;
  animation: spin-slow 80s linear infinite
}

@keyframes spin-slow {
  to {
    transform: translateY(-50%) rotate(360deg)
  }
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.hero-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue), var(--gold), transparent)
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.breadcrumb a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb s {
  color: rgba(255, 255, 255, 0.2);
  font-style: normal;
  padding: 0 2px
}

.breadcrumb strong {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-end
}

.hero-left {
  padding-bottom: 64px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero-eyebrow span {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase
}

.hero-om {
  font-family: var(--body-serif);
  font-size: 61px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(254, 175, 28, 0.5));
  animation: om-glow 4s ease-in-out infinite
}

@keyframes om-glow {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(254, 175, 28, 0.5))
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(254, 175, 28, 0.9))
  }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5)
}

.hero-h1 span {
  color: var(--gold);
  display: block
}

.hero-subtitle {
  font-family: var(--body-serif);
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-style: italic
}

.hero-verse {
  font-family: var(--body-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(254, 175, 28, 0.8);
  letter-spacing: 0.03em;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  line-height: 1.9;
  margin-bottom: 36px
}

.hero-verse cite {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 28px
}

.hstat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.10)
}

.hstat:first-child {
  padding-left: 0
}

.hstat:last-child {
  border-right: none
}

.hstat-n {
  font-family: var(--body-serif);
  font-size: 33px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px
}

.hstat-l {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.hero-img-col {
  align-self: flex-end;
  position: relative
}

.hero-img-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  opacity: 0.75
}

.hero-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 26, 0.7) 0%, rgba(10, 15, 26, 0.1) 60%, transparent 100%);
  border-radius: 12px 12px 0 0
}

.hero-img-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--deep);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(254, 175, 28, 0.4)
}

.hero-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-lt), var(--gold))
}

/* ── IMPACT STRIP ── */
.impact-strip {
  background: var(--deep2);
  border-bottom: 1px solid var(--border-b)
}

.impact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.ic-cell {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border-b);
  transition: background 0.2s;
  cursor: default
}

.ic-cell:last-child {
  border-right: none
}

.ic-cell:hover {
  background: rgba(255, 255, 255, 0.02)
}

.ic-n {
  font-family: var(--body-serif);
  font-size: 31px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px
}

.ic-n.blue {
  color: var(--blue-lt)
}

.ic-n.green {
  color: #4ade80
}

.ic-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.ic-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 2px
}

/* ── MAIN LAYOUT ── */
.main-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
  padding: 60px 0 80px
}

/* ── SECTION HELPERS ── */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.eyebrow-tag-line {
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.eyebrow-tag span {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase
}

.eyebrow-tag.blue .eyebrow-tag-line {
  background: var(--blue-lt)
}

.eyebrow-tag.blue span {
  color: var(--blue-lt)
}

.sec-h {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 37px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 14px;
  letter-spacing: 0.01em
}

.sec-h em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

.sec-p {
  font-family: var(--body-serif);
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.5)
}

.section-block {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-b);
  margin-bottom: 52px
}

.section-block:last-child {
  border-bottom: none;
  margin-bottom: 0
}

/* ── INFO CARDS ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.25s
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 175, 28, 0.25)
}

.info-card:nth-child(odd) {
  border-top: 2px solid var(--gold)
}

.info-card:nth-child(even) {
  border-top: 2px solid var(--blue-lt)
}

.ic-ico {
  font-size: 23px;
  margin-bottom: 8px
}

.ic-lbl {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px
}

.ic-val {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3
}

.ic-sub2 {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px
}

/* ── VERSE BOX ── */
.verse-box {
  background: linear-gradient(135deg, rgba(11, 125, 194, 0.12), rgba(11, 125, 194, 0.06));
  border-left: 3px solid var(--blue-lt);
  border-radius: 0 10px 10px 0;
  padding: 26px 28px;
  margin: 22px 0
}

.vb-deva {
  font-family: var(--body-serif);
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.95;
  margin-bottom: 10px
}

.vb-eng {
  font-family: var(--body-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(254, 175, 28, 0.7);
  line-height: 1.78;
  margin-bottom: 8px
}

.vb-ref {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em
}

/* ── SIGNIFICANCE ── */
.sig-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px
}

.sig-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.sig-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(254, 175, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
  border: 1px solid rgba(254, 175, 28, 0.2)
}

.sig-ico.blue {
  background: rgba(11, 125, 194, 0.12);
  border-color: rgba(11, 125, 194, 0.3)
}

.sig-txt b {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.04em
}

.sig-txt span {
  font-family: var(--body-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75
}

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.25s
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(254, 175, 28, 0.2)
}

.menu-emo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(254, 175, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0
}

.menu-item:nth-child(even) .menu-emo {
  background: rgba(11, 125, 194, 0.12)
}

.menu-txt b {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.03em
}

.menu-txt span {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38)
}

/* ── JOURNEY ── */
.journey {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 22px;
  padding-left: 52px
}

.journey::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--blue-lt))
}

.j-step {
  position: relative;
  padding-bottom: 32px
}

.j-step:last-child {
  padding-bottom: 0
}

.j-dot {
  position: absolute;
  left: -52px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  z-index: 1
}

.j-step:nth-child(even) .j-dot {
  border-color: var(--blue-lt);
  color: var(--blue-lt)
}

.j-txt b {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.04em
}

.j-txt span {
  font-family: var(--body-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75
}

.j-time {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(254, 175, 28, 0.1);
  border: 1px solid rgba(254, 175, 28, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.j-step:nth-child(even) .j-time {
  color: var(--blue-lt);
  background: rgba(40, 155, 220, 0.1);
  border-color: rgba(40, 155, 220, 0.2)
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 188px 188px;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 22px
}

.gal-item {
  overflow: hidden;
  position: relative
}

.gal-item:first-child {
  grid-column: span 2;
  grid-row: span 2
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.82)
}

.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.9)
}

.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(10, 15, 26, 0.9));
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase
}

/* ── TESTIMONIALS ── */
.testi-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 175, 28, 0.2)
}

.testi-card:nth-child(2) {
  border-color: rgba(40, 155, 220, 0.15)
}

.testi-card:nth-child(2):hover {
  border-color: rgba(40, 155, 220, 0.35)
}

.tq {
  font-family: var(--body-serif);
  font-size: 53px;
  color: var(--gold);
  line-height: 0.8;
  flex-shrink: 0;
  margin-top: -4px
}

.testi-card:nth-child(2) .tq {
  color: var(--blue-lt)
}

.testi-txt {
  font-family: var(--body-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
  margin-bottom: 14px
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 10px
}

.testi-person img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  opacity: 0.9
}

.testi-card:nth-child(2) .testi-person img {
  border-color: var(--blue-lt)
}

.testi-person b {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em
}

.testi-person span {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35)
}

/* ── BANK CARDS ── */
.bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px
}

.bank-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px
}

.bank-card h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px
}

.bank-row {
  margin-bottom: 9px
}

.bl {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px
}

.bv {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72)
}

.tax-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: #4ade80
}

/* ── STICKY FORM ── */
.form-col {
  position: sticky;
  top: 92px
}

.form-card {
  background: rgba(14, 22, 36, 0.98);
  border: 1px solid rgba(254, 175, 28, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5)
}

.fhdr {
  background: linear-gradient(135deg, rgba(8, 95, 148, 0.7), rgba(11, 125, 194, 0.5));
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(254, 175, 28, 0.15)
}

.fhdr::after {
  content: 'ॐ';
  font-family: var(--body-serif);
  font-size: 121px;
  position: absolute;
  right: -10px;
  top: -10px;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none
}

.fhdr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.fhdr-eyebrow-line {
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.fhdr-eyebrow span {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase
}

.fhdr h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.04em
}

.fhdr p {
  font-family: var(--body-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-style: italic
}

.fhdr-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 9px;
  padding: 4px 12px;
  margin-top: 10px
}

.fhdr-live span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82)
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0
}

.prog-wrap {
  padding: 16px 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2)
}

.prog-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 12px
}

.prog-raised {
  color: var(--gold);
  font-weight: 600
}

.prog-goal {
  color: rgba(255, 255, 255, 0.35)
}

.prog-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden
}

.prog-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  border-radius: 3px;
  animation: fillup 1.2s ease-out
}

@keyframes fillup {
  from {
    width: 0
  }

  to {
    width: 68%
  }
}

.prog-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 6px;
  padding-bottom: 14px
}

.fbody {
  padding: 20px 26px 22px
}

.field-label {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.seva-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px
}

.stab {
  padding: 9px 6px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer
}

.stab:hover {
  border-color: rgba(254, 175, 28, 0.35);
  color: rgba(255, 255, 255, 0.8)
}

.stab.on {
  background: rgba(254, 175, 28, 0.15);
  border-color: var(--gold);
  color: var(--gold)
}

.stab-ico {
  display: block;
  font-size: 15px;
  margin-bottom: 3px
}

.occ-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  scrollbar-width: thin
}

.occ-strip::-webkit-scrollbar {
  display: none
}

.occ {
  padding: 5px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s
}

.occ:hover,
.occ.on {
  background: rgba(254, 175, 28, 0.1);
  border-color: rgba(254, 175, 28, 0.4);
  color: var(--gold)
}

.amt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px
}

.amt {
  padding: 10px 5px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s
}

.amt:hover {
  border-color: rgba(254, 175, 28, 0.35)
}

.amt.on {
  background: rgba(254, 175, 28, 0.12);
  border-color: var(--gold)
}

.amt b {
  display: block;
  font-family: var(--body-serif);
  font-size: 18px;
  color: var(--white);
  line-height: 1
}

.amt.on b {
  color: var(--gold)
}

.amt small {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  display: block
}

.cust-wrap {
  position: relative;
  margin-bottom: 12px
}

.cust-pre {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--body-serif);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4)
}

.cust-inp {
  width: 100%;
  padding: 11px 13px 11px 30px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--body-serif);
  font-size: 17px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s
}

.cust-inp:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07)
}

.cust-inp::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-family: var(--sans)
}

.feed-box {
  background: rgba(11, 125, 194, 0.1);
  border: 1px solid rgba(11, 125, 194, 0.25);
  border-radius: 8px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.feed-box .f-ico {
  font-size: 21px;
  flex-shrink: 0
}

.feed-box p {
  font-family: var(--body-serif);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  font-style: italic
}

.feed-box p b {
  color: var(--gold);
  font-style: normal;
  font-weight: 600
}

.f-grp {
  margin-bottom: 11px
}

.f-grp label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px
}

.f-grp input,
.f-grp select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s
}

.f-grp input:focus,
.f-grp select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08)
}

.f-grp input::placeholder {
  color: rgba(255, 255, 255, 0.22)
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 11px
}

.f-row .f-grp {
  margin-bottom: 0
}

.ded-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 12px
}

.ded-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s
}

.ded-check.on {
  background: var(--gold);
  border-color: var(--gold)
}

.ded-check.on::after {
  content: '✓';
  font-size: 11px;
  color: var(--deep);
  font-weight: 700
}

.ded-toggle p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5)
}

.ded-fields {
  display: none;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  margin-bottom: 12px
}

.ded-fields.show {
  display: block
}

.ded-fields input {
  width: 100%;
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  margin-bottom: 8px
}

.ded-fields input:last-child {
  margin-bottom: 0
}

.ded-fields input:focus {
  border-color: var(--gold)
}

.ded-fields input::placeholder {
  color: rgba(255, 255, 255, 0.2)
}

.f-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--deep);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  padding: 15px;
  border-radius: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-bottom: 12px
}

.f-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(254, 175, 28, 0.45)
}

.f-submit:active {
  transform: translateY(0)
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07)
}

.tr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38)
}

.tr-ico {
  font-size: 14px
}

.pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px
}

.pay-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4)
}

.pay-chip.upi {
  color: #a78bfa
}

.pay-chip.visa {
  color: #93c5fd
}

.form-success {
  display: none;
  text-align: center;
  padding: 44px 26px
}

.form-success.on {
  display: block
}

.succ-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 33px;
  animation: pop 0.5s ease
}

@keyframes pop {
  0% {
    transform: scale(0)
  }

  80% {
    transform: scale(1.12)
  }

  100% {
    transform: scale(1)
  }
}

.succ-h {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.06em
}

.succ-p {
  font-family: var(--body-serif);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-style: italic
}

.container-box {
  display: none;
  /* hide by default */

}

.donateactive {
  display: block;
  /* show when active */
}

.error {
  font-size: 10px !important;
  color: red !important;
  padding-top: 3px;
}

.contact-form select option {
  background: #0b1321;
}

/* ── BELOW FORM CARDS ── */
.below-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px
}

.bc-card {
  background: rgba(14, 22, 36, 0.9);
  border: 1px solid rgba(254, 175, 28, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.bc-card.blue-card {
  border-color: rgba(40, 155, 220, 0.2)
}

.bc-ico {
  font-size: 21px;
  flex-shrink: 0;
  margin-top: 2px
}

.bc-txt b {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.04em
}

.bc-txt span {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6
}

.share-strip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  margin-top: 10px
}

.share-lbl {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 9px
}

.share-btns {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  flex: 1;
  min-width: 80px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.55);
      cursor: pointer;
      display: block;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white)
}

/* ── OTHER SEVA ── */
.other-seva {
  background: var(--deep2);
  border-top: 1px solid var(--border-b);
  padding: 72px 0
}

.os-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.os-head {
  text-align: center;
  margin-bottom: 44px
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.os-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s;
  border-top: 2px solid transparent
}

.os-card:nth-child(1) {
  border-top-color: var(--gold)
}

.os-card:nth-child(2) {
  border-top-color: var(--blue-lt)
}

.os-card:nth-child(3) {
  border-top-color: var(--gold)
}

.os-card:nth-child(4) {
  border-top-color: var(--blue-lt)
}

.os-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3)
}

.os-ico {
  font-size: 33px;
  margin-bottom: 12px
}

.os-card h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 7px;
  letter-spacing: 0.04em
}

.os-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  margin-bottom: 14px
}

.os-link {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s
}

.os-card:hover .os-link {
  gap: 8px
}

.os-card:nth-child(even) .os-link {
  color: var(--blue-lt)
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--deep2), var(--deep3));
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-b)
}

.cta-strip::before {
  content: '🙏';
  font-size: 241px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1
}

.cta-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.cta-txt h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 35px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  position: relative
}

.cta-txt h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

.cta-txt p {
  font-family: var(--body-serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  position: relative
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--deep);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.25s;
      cursor: pointer;
      border: none;}

.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(254, 175, 28, 0.45)
}

.btn-ghost-gold {
  border: 1px solid rgba(254, 175, 28, 0.4);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.25s
}

 .btn-ghost-gold:hover {
      background: rgba(254, 175, 28, 0.1);
      border-color: var(--gold);
    }

    /* ══════════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════════ */
    [data-r] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    [data-r].on {
      opacity: 1;
      transform: none;
    }

    [data-r][data-d="1"] {
      transition-delay: 0.1s;
    }

    [data-r][data-d="2"] {
      transition-delay: 0.2s;
    }

    [data-r][data-d="3"] {
      transition-delay: 0.3s;
    }

    /* ══════════════════════════════════════════════════════
   TABLET — ≤ 1100px
══════════════════════════════════════════════════════ */
    @media(max-width:1100px) {
      .page-hero-inner {
        padding: 0 32px;
      }

      .main-wrap {
        padding: 0 32px;
      }

      .os-inner {
        padding: 0 32px;
      }

      .cta-strip {
        padding: 56px 32px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .hero-img-col {
        display: none;
      }

      .hero-left {
        padding-bottom: 48px;
      }

      .impact-inner {
        padding: 0 32px;
      }

      .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0 60px;
      }

      .form-col {
        position: static;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
      }

      .os-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ══════════════════════════════════════════════════════
   MOBILE — ≤ 768px  (KEY FIX ZONE)
══════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Global: kill any overflow */
      * {
        max-width: 100%;
      }

      img {
        height: auto;
      }

      /* Hero */
      .page-hero {
        padding-top: 64px;
      }

      .page-hero-inner {
        padding: 0 16px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-img-col {
        display: none;
      }

      .hero-left {
        padding-bottom: 32px;
      }

      .hero-om {
        font-size: 44px;
      }

      .hero-h1 {
        font-size: clamp(28px, 8vw, 40px);
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .hero-verse {
        font-size: 14px;
        margin-bottom: 24px;
      }

      .hero-stats {
        flex-wrap: wrap;
        padding-top: 20px;
      }

      .hstat {
        flex: 0 0 33.33%;
        padding: 0 10px;
        border-right: none;
        border-bottom: none;
      }

      .hstat:first-child {
        padding-left: 0;
      }

      .hstat-n {
        font-size: 22px;
      }

      .hstat-l {
        font-size: 10px;
      }

      /* Impact strip — 3-col stays but smaller */
      .impact-inner {
        padding: 0 16px;
      }

      .ic-cell {
        padding: 14px 8px;
      }

      .ic-n {
        font-size: 22px;
      }

      .ic-label {
        font-size: 10px;
      }

      .ic-sub {
        display: none;
      }

      /* Main wrap */
      .main-wrap {
        padding: 0 16px;
      }

      /* TWO-COL: fully single column, form never sticky */
      .two-col {
        display: flex !important;
        flex-direction: column-reverse !important;
        width: 100% !important;
        padding: 28px 0 48px;
        gap: 28px;
      }

      /* LEFT COLUMN */
      .two-col>div:first-child {
        width: 100%;
        min-width: 0;
        overflow: hidden;
      }

      /* FORM COLUMN — critical fixes */
      .form-col {
        position: static !important;
        top: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
      }

      .form-card {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 10px;
        overflow: hidden;
      }

      .fhdr {
        padding: 18px 16px 14px;
      }

      .fhdr::after {
        font-size: 80px;
      }

      .fhdr h3 {
        font-size: 19px;
      }

      .fhdr p {
        font-size: 13px;
      }

      .prog-wrap {
        padding: 12px 16px 0;
      }

      .prog-labels {
        font-size: 11px;
      }

      .fbody {
        padding: 14px 16px 16px;
      }

      /* Seva tabs: 2 cols */
      .seva-tabs {
        grid-template-columns: 1fr 1fr;
      }

      /* Amount grid: 2 cols */
      .amt-grid {
        grid-template-columns: 1fr 1fr;
      }

      .amt b {
        font-size: 16px;
      }

      .amt small {
        font-size: 10px;
      }

      /* Occasion strip: horizontal scroll */
      .occ-strip {
        flex-wrap: nowrap;
        overflow-x: auto;
      }

      /* Form row: single column */
      .f-row {
        grid-template-columns: 1fr !important;
        gap: 0;
      }

      .f-row .f-grp {
        margin-bottom: 11px;
      }

      /* Inputs: bump font size to prevent iOS zoom */
      .f-grp input,
      .f-grp select,
      .cust-inp {
        font-size: 16px !important;
        min-height: 44px;
      }

      .f-submit {
        padding: 14px;
        font-size: 13px;
        letter-spacing: 0.07em;
      }

      .trust-row {
        gap: 10px;
      }

      .pay-chip {
        font-size: 10px;
        padding: 3px 7px;
      }

      /* Feed box */
      .feed-box {
        align-items: flex-start;
      }

      .feed-box p {
        font-size: 13px;
      }

      /* Below form */
      .below-cards {
        margin-top: 10px;
      }

      /* Section blocks */
      .section-block {
        padding-bottom: 36px;
        margin-bottom: 36px;
      }

      /* Info grid: 1 col */
      .info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .info-card {
        padding: 14px 16px;
      }

      /* Menu grid: 1 col */
      .menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      /* Verse box */
      .verse-box {
        padding: 16px;
      }

      .vb-deva {
        font-size: 15px;
      }

      .vb-eng {
        font-size: 14px;
      }

      /* Journey */
      .journey {
        padding-left: 40px;
      }

      .journey::before {
        left: 14px;
      }

      .j-dot {
        width: 30px;
        height: 30px;
        left: -40px;
        font-size: 11px;
      }

      /* Gallery: 2-col simple grid */
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
      }

      .gal-item {
        aspect-ratio: 1 / 1;
      }

      .gal-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
      }

      .gal-item img {
        height: 100%;
      }

      /* Other seva */
      .os-inner {
        padding: 0 16px;
      }

      .os-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .other-seva {
        padding: 48px 0;
      }

      .os-card {
        padding: 18px 14px;
      }

      .os-card h4 {
        font-size: 13px;
      }

      .os-card p {
        font-size: 12px;
      }

      /* CTA */
      .cta-strip {
        padding: 40px 16px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .cta-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
      }

      .btn-gold-solid,
      .btn-ghost-gold {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
      }

      /* Sig list */
      .sig-ico {
        width: 36px;
        height: 36px;
        font-size: 17px;
      }

      .sig-txt b {
        font-size: 13px;
      }

      .sig-txt span {
        font-size: 14px;
      }
    }


   /* ══════════════════════════════════════════════════════
   SMALL MOBILE — ≤ 480px
══════════════════════════════════════════════════════ */
    @media (max-width: 480px) {

      .page-hero-inner,
      .main-wrap,
      .os-inner {
        padding-left: 14px;
        padding-right: 14px;
      }

      .impact-inner {
        padding: 0 14px;
      }

      .hero-h1 {
        font-size: clamp(26px, 9vw, 34px);
      }

      .hero-om {
        font-size: 38px;
      }

      /* Stats: 3-up still works, just tighter */
      .hstat {
        flex: 0 0 33.33%;
      }

      .hstat-n {
        font-size: 20px;
      }

      /* Impact: 3-col still */
      .impact-inner {
        grid-template-columns: repeat(3, 1fr);
      }

      .ic-n {
        font-size: 18px;
      }

      /* Amount grid: 2-col */
      .amt-grid {
        grid-template-columns: 1fr 1fr;
      }

      /* Other seva: single col */
      .os-grid {
        grid-template-columns: 1fr;
      }

      /* Gallery: single col */
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gal-item {
        aspect-ratio: 4/3;
      }

      .gal-item:first-child {
        grid-column: span 1;
        aspect-ratio: 4/3;
      }

      /* Share btns: wrap naturally */
      .share-btns {
        gap: 6px;
      }

      .share-btn {
        flex: 1;
        min-width: 80px;
      }

      .fbody {
        padding: 12px 14px 14px;
      }

      .fhdr {
        padding: 16px 14px 12px;
      }

      .prog-wrap {
        padding: 10px 14px 0;
      }

      .info-grid {
        grid-template-columns: 1fr;
      }
    }

  /* ══════════════════════════════════════════════════════
   TOUCH DEVICES — better tap targets
══════════════════════════════════════════════════════ */
    @media (hover: none) and (pointer: coarse) {
      .amt {
        min-height: 54px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .stab {
        min-height: 46px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .occ {
        padding: 8px 14px;
        min-height: 36px;
      }

      .f-grp input,
      .f-grp select,
      .cust-inp {
        min-height: 48px;
        font-size: 16px !important;
      }

      .f-submit {
        min-height: 52px;
      }

      .os-card:hover {
        transform: none;
        box-shadow: none;
      }

      .f-submit:hover {
        transform: none;
        box-shadow: none;
      }
    }

  /* ══════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {

      .hero-mandala-bg,
      .hero-om,
      .live-dot,
      .prog-fill {
        animation: none !important;
      }

      [data-r] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
    }