/* ============================================================
   DIVYASHRAM — Yuva Jagran ke Sakshat Kendra
   Divine Website Stylesheet
   A Bharat Shakti Sangh Initiative
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Yatra+One&family=Tiro+Devanagari+Sanskrit:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Noto+Sans+Devanagari:wght@300;400;500;600;700&display=swap');

/* ===== DIVINE COLOR SYSTEM ===== */
:root {
  /* Core Divyashram Palette — Lotus / Dawn / Mandir */
  --lotus-gold:    #C8960C;
  --lotus-bright:  #F0B429;
  --lotus-pale:    #FBE9A0;
  --saffron:       #E8650A;
  --saffron-light: #F78C2F;
  --saffron-pale:  #FDD5A8;
  --deep-maroon:   #5C0F1A;
  --rich-maroon:   #8B1A2A;
  --cream:         #FDF8F0;
  --ivory:         #FAF4E8;
  --warm-dark:     #0E0904;
  --dark-mud:      #1A1205;
  --brown-deep:    #271507;
  --brown-mid:     #4A2E0F;
  --text-body:     #3A2410;
  --text-muted:    #7A5C30;
  --text-light:    #BF9A68;
  /* Glow */
  --glow-gold:     rgba(200,150,12,0.35);
  --glow-saffron:  rgba(232,101,10,0.3);
  --glow-lotus:    rgba(240,180,41,0.2);
  /* Gradients */
  --grad-divine:   linear-gradient(135deg, #1A0E03, #0E0904);
  --grad-gold:     linear-gradient(135deg, #C8960C, #F0B429, #C8960C);
  --grad-saffron:  linear-gradient(135deg, #E8650A, #F0B429);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--warm-dark);
  color: var(--ivory);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm-dark); }
::-webkit-scrollbar-thumb { background: var(--lotus-gold); border-radius: 3px; }

/* ===== CURSOR ===== */
.cursor {
  width: 22px; height: 22px;
  border: 1.5px solid var(--lotus-bright);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
}
.cursor-inner {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
}

/* ===== SACRED PARTICLE CANVAS ===== */
#sacred-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ===== WHATSAPP POPUP ===== */
.wa-veil {
  position: fixed; inset: 0;
  background: rgba(5,3,1,0.93);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeVeil 0.6s ease;
}
@keyframes fadeVeil { from { opacity:0; } to { opacity:1; } }
.wa-box {
  background: linear-gradient(145deg, #1C1005, #2A1A08);
  border: 1px solid var(--lotus-gold);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 500px; width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px var(--glow-gold), 0 0 160px rgba(232,101,10,0.1);
}
.wa-box::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(200,150,12,0.3), transparent, rgba(232,101,10,0.2));
  z-index: -1;
}
.wa-close {
  position: absolute; top: 16px; right: 20px;
  color: var(--lotus-gold); opacity: 0.6;
  font-size: 22px; cursor: pointer;
  transition: opacity 0.2s;
}
.wa-close:hover { opacity: 1; }
.wa-trishul { font-size: 56px; margin-bottom: 8px; display: block; animation: trishulPulse 2s ease-in-out infinite; }
@keyframes trishulPulse { 0%,100% { filter: drop-shadow(0 0 6px rgba(200,150,12,0.5)); } 50% { filter: drop-shadow(0 0 20px rgba(240,180,41,0.9)); } }
.wa-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--lotus-bright);
  margin-bottom: 10px; font-weight: 700;
}
.wa-box p {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem; color: var(--saffron-pale);
  line-height: 1.7; margin-bottom: 28px;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #1aad50);
  color: #fff; padding: 15px 36px; border-radius: 50px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.wa-btn:hover { transform: scale(1.05); box-shadow: 0 8px 35px rgba(37,211,102,0.65); }
.wa-dismiss {
  display: block; margin-top: 20px;
  color: var(--text-muted); font-size: 0.88rem; cursor: pointer;
  transition: color 0.2s;
}
.wa-dismiss:hover { color: var(--lotus-pale); }

/* ===== TOP SACRED TICKER ===== */
.sacred-ticker {
  background: linear-gradient(90deg, var(--deep-maroon), #3D0A14, var(--deep-maroon));
  border-bottom: 1px solid rgba(200,150,12,0.25);
  padding: 9px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 70px;
  animation: tickerRoll 35s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.82rem; color: var(--lotus-pale);
  white-space: nowrap; letter-spacing: 0.5px;
}
.ticker-item .t-symbol { color: var(--lotus-bright); font-size: 1rem; }
@keyframes tickerRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: all 0.35s ease;
}
/* After sacred ticker (~38px) */
.header-inner {
  background: rgba(14,9,4,0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,150,12,0.15);
  transition: all 0.35s;
}
header.scrolled .header-inner {
  background: rgba(10,6,2,0.97);
  border-bottom-color: rgba(200,150,12,0.3);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
nav {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 44px;
}
.logo-wrap {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--glow-gold));
}
.logo-text-block { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Yatra One', cursive;
  font-size: 1.3rem; color: var(--lotus-bright);
  line-height: 1; letter-spacing: 1px;
}
.logo-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.6rem; color: var(--saffron-light);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--saffron-pale);
  text-decoration: none;
  letter-spacing: 0.8px;
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--lotus-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-menu a:hover { color: var(--lotus-bright); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-join {
  background: var(--grad-saffron);
  color: var(--warm-dark) !important;
  padding: 8px 24px; border-radius: 30px;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px var(--glow-saffron);
  transition: all 0.3s !important;
}
.nav-join:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px var(--glow-saffron) !important; }
.nav-join::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--lotus-bright); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #2A1505 0%, #0E0904 55%, #060402 100%);
}

/* Mandala bg */
.hero-mandala-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
  opacity: 0.04;
}
.hero-mandala-bg svg { width: 900px; height: 900px; animation: mandalaRotate 120s linear infinite; }
@keyframes mandalaRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Light beams */
.hero-beams {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 600px 800px at 75% 50%, rgba(200,150,12,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 400px 600px at 25% 30%, rgba(232,101,10,0.06) 0%, transparent 70%);
}

.hero-content {
  max-width: 1300px; margin: 0 auto;
  padding: 160px 44px 100px;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 70px; align-items: center;
  position: relative; z-index: 2; width: 100%;
}

/* Hero Left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 40px; padding: 7px 20px;
  margin-bottom: 22px;
  animation: slideDown 0.8s ease both;
}
.hero-eyebrow .trishul { color: var(--lotus-bright); font-size: 1rem; }
.hero-eyebrow span {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.78rem; color: var(--saffron-light);
  letter-spacing: 2px;
}
@keyframes slideDown { from { opacity:0; transform: translateY(-16px); } to { opacity:1; transform: translateY(0); } }

.hero-title {
  font-family: 'Yatra One', cursive;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FDF0C0 0%, #F0B429 40%, #E8650A 80%, #FDF0C0 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: titleShimmer 4s ease-in-out infinite, slideUp 0.9s ease both;
}
@keyframes titleShimmer { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
@keyframes slideUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }

.hero-title-devanagari {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600; color: var(--saffron-light);
  letter-spacing: 1px; margin-bottom: 20px;
  animation: slideUp 1s ease 0.15s both;
}

.hero-divider {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease 0.3s both;
}
.hero-divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--lotus-gold), transparent); max-width: 120px; }
.hero-divider .lotus-icon { color: var(--lotus-bright); font-size: 22px; animation: lotusFloat 3s ease-in-out infinite; }
@keyframes lotusFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.hero-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.08rem; color: var(--text-light);
  line-height: 1.85; max-width: 540px;
  margin-bottom: 36px;
  animation: slideUp 1s ease 0.4s both;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: slideUp 1s ease 0.55s both; }

/* Hero Right — Maharaj Frame */
.hero-img-section {
  position: relative;
  animation: revealRight 1s ease 0.2s both;
}
@keyframes revealRight { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }

.maharaj-frame {
  position: relative; width: 100%; aspect-ratio: 3/4;
  border-radius: 20px; overflow: hidden;
}
.maharaj-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
/* Divine glow border */
.maharaj-frame::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(var(--warm-dark), var(--warm-dark)) padding-box,
              linear-gradient(135deg, var(--lotus-gold), var(--saffron), var(--lotus-gold)) border-box;
  pointer-events: none; z-index: 2;
}
/* Bottom fade */
.maharaj-frame::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(14,9,4,0.9) 0%, transparent 100%);
  z-index: 1;
}
/* Rotating halo rings */
.halo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.halo-1 { width: calc(100% + 30px); height: calc(100% + 30px); border-color: rgba(200,150,12,0.25); animation: haloSpin 20s linear infinite; }
.halo-2 { width: calc(100% + 55px); height: calc(100% + 55px); border-color: rgba(232,101,10,0.15); animation: haloSpin 35s linear infinite reverse; }
.halo-3 { width: calc(100% + 80px); height: calc(100% + 80px); border-color: rgba(200,150,12,0.08); animation: haloSpin 50s linear infinite; }
@keyframes haloSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Name plate below image */
.maharaj-nameplate {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(28,16,5,0.95), rgba(50,28,8,0.9));
  border: 1px solid rgba(200,150,12,0.35);
  border-radius: 14px; padding: 14px 18px;
  backdrop-filter: blur(8px);
}
.maharaj-nameplate .mn-title {
  font-family: 'Yatra One', cursive;
  font-size: 1.1rem; color: var(--lotus-bright);
  display: block; margin-bottom: 2px;
}
.maharaj-nameplate .mn-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.72rem; color: var(--saffron-light); letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn-divine {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-saffron);
  color: var(--warm-dark);
  padding: 13px 32px; border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 24px var(--glow-saffron);
  transition: all 0.3s ease;
}
.btn-divine:hover { transform: translateY(-3px); box-shadow: 0 10px 35px var(--glow-saffron); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--lotus-bright);
  padding: 13px 32px; border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid rgba(200,150,12,0.45);
  transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(200,150,12,0.1); border-color: var(--lotus-bright); transform: translateY(-3px); }

/* ===== SECTION ANATOMY ===== */
.section-kicker {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.78rem; color: var(--saffron-light);
  letter-spacing: 4px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Yatra One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--lotus-pale) 0%, var(--lotus-bright) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 16px;
}
.section-divider .sd-line { width: 70px; height: 1px; }
.section-divider .sd-line.l { background: linear-gradient(90deg, transparent, var(--lotus-gold)); }
.section-divider .sd-line.r { background: linear-gradient(90deg, var(--lotus-gold), transparent); }
.section-divider .sd-lotus { font-size: 22px; color: var(--lotus-bright); }
.section-desc { font-size: 1.08rem; color: var(--text-light); line-height: 1.85; max-width: 620px; margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 110px 44px;
  background: linear-gradient(180deg, #0E0904 0%, #130C05 100%);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lotus-gold), transparent);
}
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-prayer-img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 60px var(--glow-lotus);
  border: 1px solid rgba(200,150,12,0.2);
}
.about-badge {
  position: absolute; bottom: -24px; right: -16px;
  background: linear-gradient(135deg, #1C1005, #2E1B08);
  border: 1px solid var(--lotus-gold);
  border-radius: 18px; padding: 18px 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  text-align: center;
}
.about-badge .ab-num { font-family: 'Yatra One', cursive; font-size: 2rem; color: var(--lotus-bright); display: block; line-height: 1; }
.about-badge .ab-text { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.7rem; color: var(--saffron-pale); letter-spacing: 1px; }

.about-content-text { font-size: 1.08rem; color: var(--text-light); line-height: 1.9; margin-bottom: 18px; }
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.vm-card {
  background: rgba(200,150,12,0.07);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: 16px; padding: 22px;
}
.vm-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--lotus-bright); margin-bottom: 10px; }
.vm-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.vm-card ul li { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.88rem; color: var(--text-light); display: flex; gap: 8px; line-height: 1.5; }
.vm-card ul li::before { content: '🌸'; flex-shrink: 0; }

/* ===== PILLARS ===== */
.pillars-section {
  padding: 110px 44px;
  background: var(--warm-dark);
  position: relative;
}
.pillars-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; margin-top: 60px;
}
.pillar-card {
  background: linear-gradient(145deg, rgba(28,16,5,0.9), rgba(20,12,4,0.7));
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 20px; padding: 36px 26px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}
.pillar-card:hover { transform: translateY(-10px); border-color: rgba(200,150,12,0.45); }
.pillar-card:hover .pillar-glow { opacity: 1; }
.pillar-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(200,150,12,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.pillar-num {
  font-family: 'Yatra One', cursive;
  font-size: 4rem; color: rgba(200,150,12,0.07);
  position: absolute; top: 8px; right: 14px; line-height: 1;
}
.pillar-icon { font-size: 42px; margin-bottom: 14px; display: block; animation: pillarFloat 4s ease-in-out infinite; }
.pillar-card:nth-child(2) .pillar-icon { animation-delay: 0.5s; }
.pillar-card:nth-child(3) .pillar-icon { animation-delay: 1s; }
.pillar-card:nth-child(4) .pillar-icon { animation-delay: 1.5s; }
@keyframes pillarFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.pillar-name {
  font-family: 'Yatra One', cursive;
  font-size: 1rem; color: var(--lotus-bright);
  margin-bottom: 8px; line-height: 1.3;
}
.pillar-name-hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.82rem; color: var(--saffron-light);
  margin-bottom: 12px;
}
.pillar-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ===== JAAP SECTION ===== */
.jaap-section {
  padding: 110px 44px;
  background: linear-gradient(135deg, #0A0503 0%, var(--deep-maroon) 50%, #0A0503 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.jaap-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,150,12,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.om-mandala {
  width: 300px; height: 300px;
  margin: 0 auto 40px;
  position: relative;
}
.om-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  animation: omGlow 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes omGlow { 0%,100% { filter: drop-shadow(0 0 10px rgba(200,150,12,0.5)); transform: scale(1); } 50% { filter: drop-shadow(0 0 35px rgba(240,180,41,1)); transform: scale(1.08); } }
.om-ring {
  position: absolute; border-radius: 50%; border-style: solid; border-color: rgba(200,150,12,0.25);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.om-ring-1 { width: 110px; height: 110px; border-width: 1px; animation: ringExpand 3s ease-out infinite; }
.om-ring-2 { width: 170px; height: 170px; border-width: 1px; animation: ringExpand 3s ease-out 0.5s infinite; }
.om-ring-3 { width: 230px; height: 230px; border-width: 1px; animation: ringExpand 3s ease-out 1s infinite; }
.om-ring-4 { width: 290px; height: 290px; border-width: 1px; animation: ringExpand 3s ease-out 1.5s infinite; }
@keyframes ringExpand {
  0% { opacity: 0.8; transform: translate(-50%,-50%) scale(0.7); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.3); }
}
.jaap-title {
  font-family: 'Yatra One', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--lotus-bright);
  text-shadow: 0 0 40px var(--glow-gold);
  margin-bottom: 14px;
}
.jaap-mantra {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--saffron-light);
  letter-spacing: 3px; margin-bottom: 24px;
}
.jaap-desc {
  max-width: 700px; margin: 0 auto 36px;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.9;
}
.jaap-stats { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.jaap-stat { text-align: center; }
.jaap-stat strong {
  font-family: 'Yatra One', cursive;
  font-size: 2.2rem; color: var(--lotus-bright);
  display: block; line-height: 1;
  text-shadow: 0 0 20px var(--glow-gold);
}
.jaap-stat span { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

/* ===== LIFE AT SECTION ===== */
.life-section {
  padding: 110px 44px;
  background: linear-gradient(180deg, #130C05 0%, #0E0904 100%);
}
.life-grid {
  max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.life-card {
  background: linear-gradient(145deg, rgba(28,16,5,0.85), rgba(20,12,4,0.7));
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 20px; padding: 34px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: all 0.35s ease;
}
.life-card:hover { border-color: rgba(200,150,12,0.35); transform: translateX(6px); }
.life-time-badge {
  background: var(--grad-saffron);
  color: var(--warm-dark);
  padding: 8px 14px; border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
  align-self: center;
}
.life-content h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--lotus-bright); margin-bottom: 6px; font-weight: 700; }
.life-content p { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ===== PROGRAMS SECTION ===== */
.programs-section {
  padding: 110px 44px;
  background: var(--warm-dark);
}
.programs-grid {
  max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.program-card {
  background: linear-gradient(145deg, rgba(28,16,5,0.9), rgba(22,13,5,0.75));
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 22px; padding: 38px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.program-card:hover { border-color: rgba(232,101,10,0.4); }
.program-card:hover .prog-glow { opacity: 1; }
.prog-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(232,101,10,0.06) 0%, transparent 70%);
  opacity: 0; transition: 0.4s;
}
.prog-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.prog-title { font-family: 'Yatra One', cursive; font-size: 1.2rem; color: var(--lotus-bright); margin-bottom: 6px; }
.prog-subtitle { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.82rem; color: var(--saffron-light); margin-bottom: 14px; letter-spacing: 0.5px; }
.prog-text { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.94rem; color: var(--text-light); line-height: 1.8; }
.prog-details { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.prog-detail-item { display: flex; gap: 8px; align-items: flex-start; }
.prog-detail-item::before { content: '›'; color: var(--lotus-bright); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.prog-detail-item span { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ===== CENTERS SECTION ===== */
.centers-section {
  padding: 110px 44px;
  background: linear-gradient(180deg, #0E0904 0%, #130C05 100%);
}
.centers-grid {
  max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.center-card {
  background: linear-gradient(145deg, rgba(28,16,5,0.85), rgba(18,11,4,0.7));
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 18px; padding: 28px 22px;
  text-align: center; position: relative; overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}
.center-card:hover { border-color: rgba(200,150,12,0.45); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--glow-lotus); }
.center-card.coming-soon { opacity: 0.65; }
.center-card.coming-soon:hover { opacity: 0.85; }
.center-dome { font-size: 38px; margin-bottom: 12px; display: block; }
.center-city { font-family: 'Yatra One', cursive; font-size: 1.1rem; color: var(--lotus-bright); margin-bottom: 6px; }
.center-state { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.75rem; color: var(--saffron-light); letter-spacing: 1px; margin-bottom: 14px; }
.center-badge {
  display: inline-block;
  padding: 4px 14px; border-radius: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px;
}
.badge-active { background: rgba(37,211,102,0.15); color: #5edb8e; border: 1px solid rgba(37,211,102,0.3); }
.badge-soon { background: rgba(200,150,12,0.15); color: var(--lotus-bright); border: 1px solid rgba(200,150,12,0.25); }
.center-link {
  display: block; margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; color: var(--lotus-bright);
  text-decoration: none; font-weight: 600;
  transition: color 0.2s;
}
.center-link:hover { color: var(--lotus-pale); }

/* ===== JOIN SECTION ===== */
.join-section {
  padding: 110px 44px;
  background: var(--warm-dark);
}
.join-grid {
  max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.why-join-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(200,150,12,0.06);
  border: 1px solid rgba(200,150,12,0.1);
  border-radius: 14px; padding: 18px 20px;
  transition: all 0.3s;
}
.why-item:hover { border-color: rgba(200,150,12,0.3); background: rgba(200,150,12,0.1); }
.why-icon { font-size: 26px; flex-shrink: 0; }
.why-text h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--lotus-bright); margin-bottom: 4px; font-weight: 700; }
.why-text p { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.who-join-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.who-tag {
  background: rgba(232,101,10,0.1);
  border: 1px solid rgba(232,101,10,0.2);
  color: var(--saffron-light);
  padding: 7px 18px; border-radius: 24px;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.85rem;
}

.join-form-card {
  background: linear-gradient(145deg, rgba(28,16,5,0.9), rgba(20,12,4,0.75));
  border: 1px solid rgba(200,150,12,0.18);
  border-radius: 24px; padding: 44px;
}
.join-form-card h3 {
  font-family: 'Yatra One', cursive;
  font-size: 1.4rem; color: var(--lotus-bright);
  margin-bottom: 24px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem; color: var(--saffron-light);
  letter-spacing: 1px; margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: rgba(10,6,2,0.65);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none; transition: border-color 0.3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--lotus-gold); }
.form-row textarea { height: 100px; resize: vertical; }
.form-row select option { background: #1C1005; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 110px 44px;
  background: linear-gradient(135deg, #0A0503 0%, #1A0A04 50%, #0A0503 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,150,12,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(232,101,10,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid {
  max-width: 1000px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.testimonial-card {
  background: linear-gradient(145deg, rgba(30,18,6,0.9), rgba(22,13,5,0.75));
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 22px; padding: 36px;
  position: relative;
  transition: all 0.35s;
}
.testimonial-card:hover { border-color: rgba(200,150,12,0.35); transform: translateY(-5px); }
.quote-mark {
  font-size: 60px; color: var(--lotus-gold); opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute; top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem; color: var(--text-light);
  line-height: 1.85; font-style: italic;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.testimonial-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--lotus-bright); font-weight: 700; }
.testimonial-role { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 110px 44px;
  background: linear-gradient(180deg, #130C05 0%, var(--warm-dark) 100%);
}
.contact-grid {
  max-width: 1000px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(200,150,12,0.06);
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: 16px; padding: 20px 24px;
  text-decoration: none; transition: all 0.3s;
}
.contact-item:hover { border-color: rgba(200,150,12,0.35); transform: translateX(6px); }
.ci-icon { font-size: 28px; flex-shrink: 0; }
.ci-label { font-family: 'Playfair Display', serif; font-size: 0.72rem; color: var(--saffron-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.ci-value { font-size: 0.95rem; color: var(--lotus-bright); font-family: 'Cormorant Garamond', serif; }

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 80px 44px;
  background: var(--warm-dark);
  border-top: 1px solid rgba(200,150,12,0.08);
}
.social-title { font-family: 'Yatra One', cursive; font-size: 1.5rem; color: var(--lotus-bright); text-align: center; margin-bottom: 40px; }
.social-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(28,16,5,0.8);
  border: 1px solid rgba(200,150,12,0.18);
  border-radius: 50px; padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; color: var(--text-light);
  font-weight: 600;
}
.social-pill:hover { transform: translateY(-4px); border-color: rgba(200,150,12,0.5); color: var(--lotus-bright); }
.social-pill .sp-icon { font-size: 18px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 90px 44px;
  background: linear-gradient(135deg, #1A0803 0%, #2A1005 40%, var(--deep-maroon) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,150,12,0.15) 0%, transparent 60%);
}
.cta-banner h2 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--lotus-bright); margin-bottom: 14px;
  position: relative; z-index: 1;
  text-shadow: 0 0 40px var(--glow-gold);
}
.cta-banner p {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.05rem; color: var(--text-light);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.8; position: relative; z-index: 1;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
footer {
  background: #060301;
  border-top: 1px solid rgba(200,150,12,0.12);
  padding: 70px 44px 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand { }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { width: 44px; filter: drop-shadow(0 0 6px var(--glow-gold)); }
.footer-brand p { font-family: 'Noto Sans Devanagari', sans-serif; font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-tagline {
  font-family: 'Yatra One', cursive;
  font-size: 0.9rem; color: var(--saffron-light);
  letter-spacing: 1px;
}
.footer-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; color: var(--saffron-light);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--lotus-bright); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(200,150,12,0.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom .jai { font-family: 'Noto Sans Devanagari', sans-serif; color: var(--saffron-light); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: all 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: all 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .centers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-img-section { max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .life-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,6,2,0.98); padding: 20px; gap: 18px; border-bottom: 1px solid rgba(200,150,12,0.2); z-index: 999; }
  .hamburger { display: flex; }
  .hero-content { padding: 130px 22px 80px; }
  .about-section, .pillars-section, .jaap-section, .life-section, .programs-section, .centers-section, .join-section, .testimonials-section, .contact-section, .social-section { padding: 70px 22px; }
  .centers-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .centers-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}
