
:root {
  --saffron:      #D4610A;
  --saffron-mid:  #E8842A;
  --saffron-soft: #F5A957;
  --saffron-pale: #FDE8CB;
  --gold:         #B8892A;
  --gold-bright:  #D4A843;
  --gold-glow:    rgba(212,168,67,0.18);
  --deep-blue:    #0D1B2E;
  --navy:         #152339;
  --navy-mid:     #1E3050;
  --cream:        #FDFAF4;
  --ivory:        #FAF5E9;
  --beige:        #F2E8D0;
  --warm-white:   #FFFCF5;
  --text:         #1C1208;
  --text-mid:     #4A3520;
  --text-muted:   #7A6545;
  --border:       rgba(212,168,67,0.22);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   AMBIENT BACKGROUND LAYER
═══════════════════════════════════════ */
.ambient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(212,97,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 85% 80%, rgba(184,137,42,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 50%, rgba(212,168,67,0.03) 0%, transparent 70%);
}
.ambient::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(120vw, 1100px); height: min(120vw, 1100px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='%23D4A843' stroke-width='0.4' opacity='0.1'/%3E%3Ccircle cx='200' cy='200' r='155' fill='none' stroke='%23D4A843' stroke-width='0.4' opacity='0.08'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%23D4A843' stroke-width='0.4' opacity='0.07'/%3E%3Ccircle cx='200' cy='200' r='85' fill='none' stroke='%23D4A843' stroke-width='0.4' opacity='0.06'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='%23D4A843' stroke-width='0.4' opacity='0.05'/%3E%3Cline x1='200' y1='10' x2='200' y2='390' stroke='%23D4A843' stroke-width='0.3' opacity='0.06'/%3E%3Cline x1='10' y1='200' x2='390' y2='200' stroke='%23D4A843' stroke-width='0.3' opacity='0.06'/%3E%3Cline x1='55' y1='55' x2='345' y2='345' stroke='%23D4A843' stroke-width='0.3' opacity='0.05'/%3E%3Cline x1='345' y1='55' x2='55' y2='345' stroke='%23D4A843' stroke-width='0.3' opacity='0.05'/%3E%3Cline x1='200' y1='10' x2='390' y2='300' stroke='%23D4A843' stroke-width='0.2' opacity='0.04'/%3E%3Cline x1='200' y1='10' x2='10' y2='300' stroke='%23D4A843' stroke-width='0.2' opacity='0.04'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: spinMandala 160s linear infinite;
  opacity: 0.5;
}
@keyframes spinMandala { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ═══════════════════════════════════════
   STICKY DONATE BAR
═══════════════════════════════════════ */
.donate-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(90deg, var(--deep-blue), var(--navy-mid));
  padding: 8px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(212,168,67,0.25);
}
.donate-bar-text {
  font-size: 0.75rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.donate-bar-text span { color: var(--saffron-soft); font-weight: 500; }
.donate-bar-btn {
  padding: 6px 20px; border-radius: 3px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.donate-bar-btn:hover { opacity: 0.88; }

.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.badge { background: #FDE8CB; color: #D4610A; padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.75rem; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
/*nav {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 150;
  padding: 0 50px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: rgba(253,250,244,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
.nav-brand {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand .name {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem; font-weight: 600;
  color: var(--deep-blue); letter-spacing: 0.5px;
}
.nav-brand .tagline { font-size: 0.62rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  transition: color 0.25s; padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--saffron); border-bottom-color: var(--saffron); }

/*



/* ========== MAIN NAVIGATION (RESPONSIVE + SUBMENU) ========== */
.main-nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 150;
  background: rgba(253,250,244,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.2s;
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); background: rgba(253,250,244,0.98); }
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 20px 40px 5px;
  display: flex; align-items: center; justify-content: space-between;
  height: auto;
}
/* Logo */
.logo-area {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.logo-area .logoimg{width: 220px; height: auto;}
.logo-icon {
  font-size: 2rem; line-height: 1; filter: drop-shadow(0 2px 4px rgba(212,97,10,0.2));
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700; color: var(--deep-blue);
  line-height: 1.2;
}
.logo-text .main { font-size: 1rem; letter-spacing: 1px; }
.logo-text .sub { font-size: 0.6rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 2px; display: block; }

/* Desktop Menu */
.nav-menu {
  display: flex; gap: 1rem; list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  font-size: 1rem; text-transform: capitalize;
  font-weight: 500; color: var(--text-muted); text-decoration: none;
  padding: 8px 0; transition: color 0.25s; display: inline-block;
  border-bottom: 1.5px solid transparent;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--saffron); border-bottom-color: var(--saffron); }

/* DROPDOWN (DESKTOP) */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: rgba(255,252,245,0.98); backdrop-filter: blur(12px);
  border-radius: 12px; border: 1px solid var(--border);
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 200; padding: 8px 0;
}
.nav-item.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block; padding: 8px 20px; font-size: 0.75rem;
  color: var(--text-mid); text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.dropdown-menu a:hover { background: var(--saffron-pale); color: var(--saffron); padding-left: 24px; }

/* Mobile Toggle */
.mobile-toggle {
  display: none; font-size: 1.6rem; background: none; border: none;
  color: var(--deep-blue); cursor: pointer; transition: color 0.2s;
}
.mobile-toggle:hover { color: var(--saffron); }

/* Mobile Menu Panel */
.mobile-menu-panel {
  position: fixed; top: 108px; left: 0; right: 0; bottom: 0;
  background: rgba(253,250,244,0.98); backdrop-filter: blur(20px);
  z-index: 140; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.2,0.9,0.4,1.1);
  overflow-y: auto; padding: 1.5rem 1.5rem 2rem; border-top: 1px solid var(--border);
}
.mobile-menu-panel.open { transform: translateX(0); }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-item { border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav-link {
  font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; color: var(--text-mid); text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
}
.mobile-dropdown-toggle { font-size: 0.7rem; transition: transform 0.2s; color: var(--gold); }
.mobile-submenu {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding-left: 1rem; display: flex; flex-direction: column; gap: 10px;
}
.mobile-submenu.open { max-height: 300px; margin-bottom: 12px; }
.mobile-submenu a {
  text-decoration: none; font-size: 1rem; color: var(--text-muted);
  padding: 6px 0; display: block; letter-spacing: 0.5px;
}
.mobile-submenu a:hover { color: var(--saffron); }


@media(max-width:768px){ .donate-bar{padding:6px 20px;} .main-nav{top:36px;} .banner-slider{margin-top:106px;} .mobile-toggle{display:block;} .nav-menu{display:none;} section{padding:70px 24px;} .logo-text .main{font-size:0.8rem;} .logo-icon{font-size:1.6rem;}
 .footer{padding:50px 24px 30px;} }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 60px 30px;
  overflow: hidden;
  background: linear-gradient(150deg, #FDFAF4 0%, #F8F0DC 40%, #F2E4C0 80%, #EDD8A2 100%);
}
.hero-sunrise {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(212,97,10,0.06) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.hero-text { animation: heroFadeUp 1.1s cubic-bezier(.2,.8,.3,1) both; }
.hero-om {
  font-size: 2.2rem; line-height: 1; color: var(--saffron); margin-bottom: 16px;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{text-shadow:0 0 15px rgba(212,97,10,0.3)} 50%{text-shadow:0 0 40px rgba(212,97,10,0.6)} }
.hero-foundation {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.7rem, 1vw, 1rem);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 10px; display: block;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.12; font-weight: 700;
  color: var(--deep-blue); margin-bottom: 12px;
}
.hero-title span { color: var(--saffron); }
.hero-sanskrit {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic; color: var(--gold);
  margin-bottom: 8px; line-height: 1.5;
}
.hero-meaning {
  font-size: 1rem; color: var(--text-muted); letter-spacing: 0.5px;
  margin-bottom: 24px; font-style: italic;
}
.hero-line { width: 60px; height: 1.5px; background: linear-gradient(90deg, var(--saffron), var(--gold)); margin-bottom: 20px; }
.hero-desc {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 36px; font-weight: 300;
  max-width: 500px;
}
.hero-trust {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,27,46,0.06); border: 1px solid rgba(13,27,46,0.12);
  border-radius: 100px; padding: 5px 14px 5px 8px;
  font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.8px;
  margin-bottom: 32px;
}
.hero-trust-dot { width:8px; height:8px; border-radius:50%; background:var(--saffron); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-saffron {
  padding: 14px 30px; border-radius: 4px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 8px 28px rgba(212,97,10,0.32);
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-saffron:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,97,10,0.45); }

.btn-glass {
  padding: 14px 30px; border-radius: 4px;
  background: transparent; color: var(--deep-blue);
  color: white; border: 1px solid #999; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 8px 28px rgba(212,97,10,0.32);
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-glass:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,97,10,0.45); }



.btn-outline-dark {
  padding: 14px 30px; border-radius: 4px;
  background: transparent; color: var(--deep-blue);
  border: 1.5px solid rgba(13,27,46,0.3);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--deep-blue); background: rgba(13,27,46,0.05); }

.btn-outline-gold {
  padding: 14px 30px; border-radius: 4px;
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(184,137,42,0.45);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(184,137,42,0.08); }

/* Hero Right - Photo Cards */
.hero-right {
  display: flex; flex-direction: column; gap: 20px;
  animation: heroFadeUp 1.1s 0.25s cubic-bezier(.2,.8,.3,1) both;
}
.hero-photos-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.guru-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(212,168,67,0.28);
  background: linear-gradient(160deg, rgba(253,250,244,0.9), rgba(242,232,208,0.9));
  backdrop-filter: blur(8px);
  padding: 32px 20px 24px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; transition: all 0.4s;
}
.guru-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(212,97,10,0.15); }
.guru-card .glow-ring {
  position: absolute; inset: -1px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,97,10,0.15), rgba(212,168,67,0.1), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.guru-card:hover .glow-ring { opacity: 1; }
.guru-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--saffron-soft), var(--gold-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  box-shadow: 0 0 0 4px rgba(212,168,67,0.2), 0 0 30px rgba(212,97,10,0.2);
  position: relative; z-index: 1;
}
.guru-card h3 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 600;
  color: var(--deep-blue); text-align: center; margin-bottom: 5px;
  position: relative; z-index: 1;
}
.guru-card .role {
  font-size: 0.68rem; color: var(--saffron); letter-spacing: 1.2px;
  text-transform: uppercase; text-align: center;
  position: relative; z-index: 1;
}
.dhaam-card {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  border: 1px solid rgba(212,168,67,0.2);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
}
.dhaam-icon { font-size: 2.2rem; flex-shrink: 0; }
.dhaam-card h4 {
  font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--gold-bright); margin-bottom: 4px; font-weight: 600;
}
.dhaam-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.dhaam-card .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; color: #4ADE80; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 6px;
}
.live-dot::before { content:''; width:6px; height:6px; border-radius:50%; background:#4ADE80; animation: livePulse 1.5s ease infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

@keyframes heroFadeUp { from{opacity:0;transform:translateY(50px)} to{opacity:1;transform:translateY(0)} }

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 10%;
    filter: brightness(0.82) contrast(1.05);
    transition: transform 2s ease;
  }
  .slide.active .slide-img {
    transform: scale(1.04);
  }
  .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(98deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 70%);
    z-index: 2;
    pointer-events: none;
  }
  .slide-content {
    z-index: 12;
  }
  @media (max-width: 680px) {
    .slide-title {
      font-size: 1.9rem;
    }
    .slide-btns .btn-saffron, .slide-btns .btn-glass {
      padding: 8px 20px;
      font-size: 0.85rem;
    }
    .slider-arrows {
      padding: 0 12px;
    }
    .sarrow {
      width: 38px;
      height: 38px;
      font-size: 1.5rem;
    }
  }
  /* Ensure all slides have background consistency */
  .banner-slider {
    background: #2c1e12;
  }




/* ═══════════════════════════════════════
   SECTION BASE STYLES
═══════════════════════════════════════ */
section { position: relative; z-index: 1; padding: 100px 60px; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }
.section-eyebrow {
  display: inline-block; font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--saffron); font-weight: 500; margin-bottom: 10px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; color: var(--deep-blue);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--saffron); font-family: 'Crimson Pro', serif; }
.section-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; max-width: 600px; }
.divider-om {
  display: flex; align-items: center; gap: 16px; margin: 0 auto 60px;
  max-width: 300px; justify-content: center;
}
.divider-om::before, .divider-om::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-om span { color: var(--saffron); font-size: 1.2rem; }

/* FADE IN */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about { background: var(--ivory); }
.about-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.about-left { }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,27,46,0.06); border: 1px solid rgba(13,27,46,0.12);
  border-radius: 6px; padding: 8px 16px;
  font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.8px;
  margin-bottom: 32px;
}
.about-quote-block {
  margin: 32px 0; padding: 28px 32px;
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  border-radius: 12px; position: relative;
  border-left: 3px solid var(--saffron);
}
.about-quote-block .devanagari {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem; color: var(--gold-bright); font-style: italic;
  line-height: 1.5; margin-bottom: 10px;
}
.about-quote-block .translation {
  font-size: 1rem; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.6;
}
.about-quote-block .quote-label {
  margin-top: 12px; font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--saffron-soft);
}
.about-right p {
  font-size: 0.97rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; font-weight: 300;
}
.about-right strong { color: var(--text); font-weight: 500; }
.reg-info {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-radius: 8px;
  background: var(--beige); border: 1px solid var(--border);
  margin-top: 28px;
}
.reg-info .reg-icon { font-size: 1.4rem; }
.reg-info div { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.reg-info strong { color: var(--text-mid); font-size: 1rem; }

/* ═══════════════════════════════════════
   ABOUT GURUS
═══════════════════════════════════════ */
.gurus { background: var(--cream); }
.gurus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.guru-bio-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
}
.guru-bio-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(212,97,10,0.12); }
.guru-bio-top {
  padding: 40px 36px 28px;
  background: linear-gradient(140deg, #FAF5EB, #F5ECD6);
  display: flex; gap: 24px; align-items: flex-start;
}
.guru-bio-avatar {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron-soft), var(--gold-bright));
  display: flex; align-items: center; justify-content: center; font-size: 2.8rem;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.25), 0 8px 24px rgba(212,97,10,0.2);
}
.guru-bio-header h3 {
  font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--deep-blue);
  font-weight: 600; margin-bottom: 4px;
}
.guru-bio-header .gtitle {
  font-size: 0.72rem; color: var(--saffron); letter-spacing: 1.5px;
  text-transform: uppercase; display: block; margin-bottom: 12px;
}
.guru-bio-header p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.guru-bio-body {
  padding: 28px 36px 36px; background: var(--warm-white);
}
.guru-bio-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; }

/* ═══════════════════════════════════════
   OUR WORK
═══════════════════════════════════════ */
.our-work { background: var(--ivory); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.work-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
}
.work-card:hover { box-shadow: 0 20px 55px rgba(0,0,0,0.08); }
.work-card-header {
  padding: 28px 32px;
  display: flex; align-items: center; gap: 18px;
}
.work-card-header.active-bg {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
}
.work-card-header.vision-bg {
  background: linear-gradient(135deg, #2A1A00, #3D2B0A);
}
.work-status {
  flex-shrink: 0; margin-bottom: 10px; padding: 4px 12px; border-radius: 100px;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
}
.status-active { background: rgba(74,222,128,0.15); color: #4ADE80; margin-bottom: 10px; border: 1px solid rgba(74,222,128,0.3); }
.status-planned { background: rgba(212,168,67,0.15); color: var(--gold-bright); border: 1px solid rgba(212,168,67,0.3); }
.work-card-header h3 {
  font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold-bright);
  font-weight: 600; line-height: 1.3;
}
.work-card-header p { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 3px; }
.work-icon { font-size: 2rem; flex-shrink: 0; }
.work-card-body { padding: 28px 32px; background: var(--warm-white); }
.work-card-body p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.85; font-weight: 300;
}
.work-features { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.work-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1rem; color: var(--text-mid); line-height: 1.5;
}
.work-feature::before { content:'✦'; color: var(--saffron); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0; }
.work-highlight {
  margin-top: 20px; padding: 16px 18px; border-radius: 8px;
  background: rgba(212,97,10,0.06); border-left: 3px solid var(--saffron);
  font-size: 1rem; color: var(--text-mid); font-style: italic; line-height: 1.7;
}
.planning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.planning-item {
  padding: 14px 36px; margin-bottom: 20px; border-radius: 8px;
  background: var(--beige); border: 1px solid var(--border);
  text-align: center; position: relative;
}
.planning-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--deep-blue);
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px; font-weight: 600; white-space: nowrap;
}
.planning-item .pi-icon { font-size: 5rem; margin: 8px 0 8px; display: block; }
.planning-item .pi-text { font-size: 1rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════
   TIMELINE
═══════════════════════════════════════ */
.timeline-section { background: var(--cream); }
.timeline-wrap { max-width: 860px; margin: 60px auto 0; position: relative; }
.timeline-wrap::before {
  content:''; position:absolute; left:50%; top:0; bottom:0; width:1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--saffron), var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-row {
  display: grid; grid-template-columns: 1fr 64px 1fr;
  margin-bottom: 52px; align-items: center;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tl-row.vis { opacity:1; transform:translateY(0); }
.tl-row:nth-child(odd) .tl-box { grid-column:1; padding-right:36px; text-align:right; }
.tl-row:nth-child(odd) .tl-spacer { grid-column:3; }
.tl-row:nth-child(even) .tl-box { grid-column:3; padding-left:36px; text-align:left; }
.tl-row:nth-child(even) .tl-spacer { grid-column:1; }
.tl-gem {
  grid-column:2; width:52px; height:52px; border-radius:50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold-bright));
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; margin:0 auto; z-index:1; position:relative;
  box-shadow: 0 0 0 6px rgba(212,97,10,0.1), 0 0 24px rgba(212,97,10,0.3);
}
.tl-era {
  font-size:0.68rem; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--saffron); font-weight:500; margin-bottom:6px; display:block;
}
.tl-heading { font-family:'Cinzel',serif; font-size:1.5rem; color:var(--deep-blue); margin-bottom:8px; font-weight:600; }
.tl-body { font-size:1rem; color:var(--text-muted); line-height:1.5; font-weight:300; }

/* ═══════════════════════════════════════
   TEACHINGS
═══════════════════════════════════════ */
.teachings {
  background: linear-gradient(155deg, var(--deep-blue) 0%, #0F2040 50%, #152339 100%);
}
.teachings .section-title { color: #F5EDD8; }
.teachings .section-eyebrow { color: var(--saffron-soft); }
.teachings .section-desc { color: rgba(255,255,255,0.45); }
.teach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.teach-card {
  padding: 36px 28px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,67,0.15);
  transition: all 0.4s; position: relative; overflow: hidden;
}
.teach-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.teach-card:hover { background: rgba(212,97,10,0.07); border-color: rgba(212,97,10,0.3); transform:translateY(-4px); }
.teach-card:hover::after { transform:scaleX(1); }
.teach-icon { font-size:2.2rem; margin-bottom:18px; display:block; }
.teach-card h3 { font-family:'Cinzel',serif; font-size:1.5rem; color:var(--saffron-pale); margin-bottom:10px; font-weight:600; }
.teach-card p { font-size:1rem; color:rgba(255,255,255,0.42); line-height:1.85; font-weight:300; }

/* ═══════════════════════════════════════
   VIDEO / AUDIO
═══════════════════════════════════════ */
.media { background: var(--beige); }
.media-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:36px; margin-top:56px; }
.video-box {
  aspect-ratio:16/9; border-radius:16px;
  background: linear-gradient(145deg, var(--deep-blue), var(--navy-mid));
  border:1px solid rgba(212,168,67,0.25);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:16px; position:relative; overflow:hidden; cursor:pointer;
}
.video-box::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at center, rgba(212,97,10,0.12) 0%, transparent 65%);
}
.vplay {
  width:72px; height:72px; border-radius:50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:white; position:relative; z-index:1;
  box-shadow:0 0 40px rgba(212,97,10,0.45);
  transition:transform 0.3s;
}
.video-box:hover .vplay { transform:scale(1.08); }
.vlabel { color:rgba(255,255,255,0.5); font-size:0.8rem; letter-spacing:1px; z-index:1; }
.audio-list { display:flex; flex-direction:column; gap:14px; }
.audio-item {
  padding:18px 20px; border-radius:10px;
  background:var(--warm-white); border:1px solid var(--border);
  display:flex; align-items:center; gap:14px; cursor:pointer;
  transition:all 0.3s;
}
.audio-item:hover { border-color:var(--saffron); box-shadow:0 6px 24px rgba(212,97,10,0.1); }
.audio-play-btn {
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  display:flex; align-items:center; justify-content:center; color:white; font-size:0.9rem;
}
.audio-item h4 { font-size:0.9rem; color:var(--text-mid); font-weight:500; }
.audio-item p { font-size:0.72rem; color:var(--text-muted); margin-top:2px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials { background:var(--ivory); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.testi-card {
  padding:32px 28px; border-radius:12px;
  background:var(--warm-white); border:1px solid var(--border);
  transition:all 0.4s;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 20px 50px rgba(212,97,10,0.1); }
.testi-stars { color:var(--saffron); font-size:0.75rem; letter-spacing:2px; margin-bottom:12px; }
.testi-qm { font-size:3rem; color:rgba(212,97,10,0.2); line-height:0.8; margin-bottom:14px; font-family:'Crimson Pro',serif; }
.testi-text { font-size:1rem; color:var(--text-muted); line-height:1.85; font-style:italic; margin-bottom:22px; font-weight:300; }
.testi-author { display:flex; align-items:center; gap:12px; }
.tav { width:80px; height:80px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--saffron-soft), var(--gold-bright));
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}
.tname { font-size: 1.2rem; font-weight:500; color:var(--text-mid); }
.tloc { font-size:1rem; color:var(--text-muted); }

/* ═══════════════════════════════════════
   EVENTS
═══════════════════════════════════════ */
.events { background:var(--cream); }
.events-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.event-card { border-radius:12px; overflow:hidden; border:1px solid var(--border); transition:all 0.4s; }
.event-card:hover { transform:translateY(-4px); box-shadow:0 20px 52px rgba(0,0,0,0.1); }
.event-top {
  padding:22px 24px;
  background:linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  display:flex; gap:18px; align-items:center;
}
.edate { text-align:center; flex-shrink:0; }
.eday { font-family:'Cinzel',serif; font-size:2.2rem; color:var(--saffron-soft); line-height:1; font-weight:600; }
.emonth { font-size:0.65rem; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.4); }
.etitle { font-family:'Cinzel',serif; font-size:1rem; color:var(--warm-white); font-weight:600; }
.etype { font-size:0.65rem; color:var(--saffron-soft); letter-spacing:1.5px; text-transform:uppercase; margin-top:3px; }
.event-body { padding:18px 24px; background:var(--warm-white); }
.event-body p { font-size: 1rem; color:var(--text-muted); line-height:1.75; margin-bottom:14px; font-weight:300; }
.etags { display:flex; gap:8px; flex-wrap:wrap; }
.etag {
  font-size:0.78rem; padding:3px 10px; border-radius:100px;
  background:rgba(212,97,10,0.07); color:var(--saffron);
  border:1px solid rgba(212,97,10,0.18); letter-spacing:0.8px;
}

/* ═══════════════════════════════════════
   DAILY WISDOM
═══════════════════════════════════════ */
.wisdom {
  padding: 90px 60px;
  background: linear-gradient(155deg, var(--deep-blue), #112035, #0A1828);
  text-align: center; position: relative; overflow: hidden;
}
.wisdom::before {
  content: '॥';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 28rem; color: rgba(212,168,67,0.025);
  font-family: serif; pointer-events: none; line-height: 1;
}
.wisdom-label {
  font-size:0.68rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--saffron-soft); margin-bottom:20px; display:block;
}
.wisdom-open { font-family:'Crimson Pro',serif; font-size:5rem; color:rgba(212,168,67,0.2); line-height:0.5; display:block; margin-bottom:16px; }
#wisdomQ {
  font-family:'Crimson Pro',serif;
  font-size:clamp(1.4rem,2.5vw,2.1rem);
  color:var(--saffron-pale); line-height:1.65; font-style:italic; font-weight:300;
  max-width:720px; margin:0 auto; transition:opacity 0.7s;
  min-height:80px; display:flex; align-items:center; justify-content:center;
}
#wisdomA { margin-top:22px; font-size:0.78rem; color:rgba(255,255,255,0.35); letter-spacing:2px; text-transform:uppercase; }

/* ═══════════════════════════════════════
   GET INVOLVED
═══════════════════════════════════════ */
.involve { background:var(--ivory); }
.involve-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:56px; }
.involve-card {
  padding:32px 24px; border-radius:12px; text-align:center;
  background:var(--warm-white); border:1px solid var(--border);
  transition:all 0.4s;
}
.involve-card:hover { transform:translateY(-4px); box-shadow:0 18px 48px rgba(212,97,10,0.1); border-color:rgba(212,97,10,0.25); }
.involve-icon { font-size: 4rem; margin-bottom:1px; display:block; }
.involve-card h3 { font-family:'Cinzel',serif; font-size: 1.5rem; color:var(--deep-blue); margin-bottom:10px; font-weight:600; }
.involve-card p { font-size:1rem; color:var(--text-muted); line-height:1.8; font-weight:300; }

/* ═══════════════════════════════════════
   CONTACT + BOOKING
═══════════════════════════════════════ */
.contact { background:var(--cream); }
.contact-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:72px; align-items:start; }
.contact-info { }
.contact-ways { display:flex; flex-direction:column; gap:14px; margin:28px 0; }
.cway {
  display:flex; align-items:center; gap:16px;
  padding:15px 20px; border-radius:10px;
  background:var(--warm-white); border:1px solid var(--border);
  cursor:pointer; transition:all 0.3s; text-decoration:none;
}
.cway:hover { border-color:var(--saffron); box-shadow:0 6px 22px rgba(212,97,10,0.1); }
.cway-icon {
  width:42px; height:42px; border-radius:10px; flex-shrink:0;
  background:linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  display:flex; align-items:center; justify-content:center; color:white; font-size:1rem;
}
.cway span { font-size:0.87rem; color:var(--text-mid); font-weight:500; }
.cway .cway-sub { font-size:0.72rem; color:var(--text-muted); margin-top:1px; }
.cform {
  background:var(--warm-white); padding:40px; border-radius:16px;
  border:1px solid var(--border);
}
.cform h3 { font-family:'Cinzel',serif; font-size:1.3rem; color:var(--deep-blue); margin-bottom:24px; font-weight:600; }
.fg { margin-bottom:18px; }
.fg label { display:block; font-size:0.72rem; letter-spacing:1.2px; text-transform:uppercase; color:var(--text-muted); margin-bottom:6px; font-weight:500; }
.fg input, .fg textarea, .fg select {
  width:100%; padding:12px 14px; border-radius:7px;
  border:1px solid rgba(184,137,42,0.25); background:var(--cream);
  color:var(--text); font-family:'DM Sans',sans-serif; font-size:0.9rem;
  outline:none; transition:border-color 0.3s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color:var(--saffron); }
.fg textarea { resize:vertical; min-height:90px; }

/* ═══════════════════════════════════════
   DONATE + REGISTER
═══════════════════════════════════════ */
.support { background:var(--beige); }
.support-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; margin-top:56px; }
.support-reg {
  padding:44px 40px; border-radius:16px;
  background:var(--warm-white); border:1px solid var(--border); text-align:center;
}
.support-don {
  padding:44px 40px; border-radius:16px;
  background:linear-gradient(145deg, var(--deep-blue), var(--navy-mid));
  border:1px solid rgba(212,168,67,0.2); text-align:center;
}
.support-icon { font-size:3rem; margin-bottom:16px; display:block; }
.support-reg h3 { font-family:'Cinzel',serif; font-size:1.6rem; color:var(--deep-blue); margin-bottom:10px; }
.support-don h3 { font-family:'Cinzel',serif; font-size:1.6rem; color:var(--gold-bright); margin-bottom:10px; }
.support-reg p { font-size:0.88rem; color:var(--text-muted); line-height:1.8; font-weight:300; margin-bottom:28px; }
.support-don p { font-size:0.88rem; color:rgba(255,255,255,0.45); line-height:1.8; font-weight:300; margin-bottom:20px; }
.tax-note { font-size:0.72rem; color:rgba(255,255,255,0.35); margin-bottom:24px; display:block; }
.amounts { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:24px; }
.amtbtn {
  padding:8px 18px; border-radius:100px;
  border:1px solid rgba(212,168,67,0.4); background:transparent;
  color:var(--gold-bright); font-family:'DM Sans',sans-serif;
  font-size:1rem; font-weight:500; cursor:pointer; transition:all 0.3s;
}
.amtbtn:hover, .amtbtn.on { background:var(--gold); color:var(--deep-blue); border-color:var(--gold); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
/*footer {
  background: linear-gradient(155deg, #08111C, #0D1B2E);
  padding: 70px 60px 30px; position:relative; z-index:1;
}*/
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-brand .flogo { font-family:'Cinzel',serif; font-size:1.1rem; color:var(--gold-bright); margin-bottom:6px; }
.footer-brand .freg { font-size:0.9rem; color:rgba(255,255,255,0.3); margin-bottom:16px; display:block; }
.footer-brand p { font-size:0.83rem; color:rgba(255,255,255,0.35); line-height:1.8; font-weight:300; }
.footer-brand .aadesh { font-family:'Crimson Pro',serif; font-size:1.2rem; color:rgba(212,168,67,0.45); margin-top:16px; display:block; }
.fcol h4 { font-size:0.68rem; letter-spacing:2px; text-transform:uppercase; color:var(--saffron-soft); margin-bottom:18px; font-weight:500; }

.fcol a:hover { color:var(--gold-bright); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p { font-size:0.75rem; color:rgba(255,255,255,0.2); }
.footer-om { font-size:1.8rem; color:rgba(212,97,10,0.35); }



 /* Optional minimal styling to preserve footer look – adjust to match your site */
    footer {
       background: linear-gradient(155deg, #08111C, #0D1B2E);
  padding: 70px 60px 30px; position:relative; z-index:1;
       
        font-family: system-ui, 'Segoe UI', sans-serif;
        margin-top: 3rem;
    }
    .footer-grid {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }
    .footer-brand .flogo {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
		color:var(--gold-bright); 
    }
    .freg {
        font-size: 0.75rem;
        opacity: 0.8;
        display: block;
        margin-bottom: 0.75rem;
    }
    .footer-brand p {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0.75rem 0;
    }
    .aadesh {
        font-size: 0.9rem;
        font-style: italic;
        letter-spacing: 1px;
    }
    .fcol h4 {
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        border-left: 2px solid #e67e22;
        padding-left: 0.5rem;
    }
    .fcol a {
        display: block;
        color: #ddd8cc;
        text-decoration: none;
        font-size: 0.9rem;
        margin: 0.7rem 0;
        transition: color 0.2s;
    }
	
	.fcol ul li.items-start{ margin-bottom: 5px;}
	.fcol ul li.items-start a{ margin: 0.0rem 0;}
    .fcol a:hover {
        color: #e67e22;
    }
    .footer-bottom {
        text-align: center;
        border-top: 1px solid #3a4649;
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.75rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .footer-om {
        font-size: 1.2rem;
    }
    @media (max-width: 700px) {
        .footer-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 0.5rem; }
    }


/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-btn {
  position:fixed; bottom:28px; right:28px; z-index:300;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 28px rgba(37,211,102,0.4);
  text-decoration:none; font-size:1.7rem;
  animation:waPulse 3s ease infinite;
  transition:transform 0.3s;
}
.wa-btn:hover { transform:scale(1.08); }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 50px rgba(37,211,102,0.6)} }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px){
  .hero-inner { grid-template-columns:1fr; gap:50px; }
  .hero-right { max-width:520px; }
  .about-inner { grid-template-columns:1fr; }
  .gurus-grid { grid-template-columns:1fr; }
  .work-grid { grid-template-columns:1fr; }
  .media-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .support-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:768px){
  .donate-bar { padding:8px 20px; }
  .donate-bar-text { font-size:0.65rem; }
  nav { padding:0 20px; top:36px; }
  .nav-links { display:none; }
  section { padding:70px 24px; }
  .hero { padding:120px 24px 60px; }
  .teach-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .events-grid { grid-template-columns:1fr; }
  .involve-grid { grid-template-columns:1fr 1fr; }
  .timeline-wrap::before { left:26px; }
  .tl-row { grid-template-columns:26px 1fr; }
  .tl-row:nth-child(odd) .tl-box,.tl-row:nth-child(even) .tl-box { grid-column:2; text-align:left; padding:0 0 0 18px; }
  .tl-gem { grid-column:1; }
  .tl-row:nth-child(odd) .tl-spacer,.tl-row:nth-child(even) .tl-spacer { display:none; }
  .planning-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .wisdom { padding:70px 24px; }
  .hero-photos-row { grid-template-columns:1fr 1fr; }
  .cform { padding:28px 20px; }
  .support-reg, .support-don { padding:36px 24px; }
}

/* ── SLIDER ── */
.banner-slider {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 101px; /* donate-bar(37) + nav(64) */
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; /*transition: opacity 1.2s ease;*/
  display: flex; align-items: center; justify-content: center;
}
.slide.active { opacity: 1; }

/* Slide backgrounds — gradient art (replace with real images via background-image) */
/*.slide-1 { background: linear-gradient(145deg, #0D1B2E 0%, #1A3050 40%, #0A2240 100%); }
.slide-2 { background: linear-gradient(145deg, #2A1200 0%, #5C2E00 40%, #3D1A00 100%); }
.slide-3 { background: linear-gradient(145deg, #0A1A10 0%, #1A3820 40%, #0D2418 100%); }*/
.slide-4 { background: linear-gradient(145deg, #1A0A00 0%, #3D1F00 40%, #2A1200 100%); }

/* Overlay + mandala */
.slide::before {
  content: '';
  position: absolute; inset: 0;
  /*background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);*/
  z-index: 1;
}
.slide-mandala {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 680px; height: 550px; opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='%23D4A843' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='155' fill='none' stroke='%23D4A843' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%23D4A843' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='85' fill='none' stroke='%23D4A843' stroke-width='0.8'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='%23D4A843' stroke-width='0.8'/%3E%3Cline x1='200' y1='10' x2='200' y2='390' stroke='%23D4A843' stroke-width='0.5'/%3E%3Cline x1='10' y1='200' x2='390' y2='200' stroke='%23D4A843' stroke-width='0.5'/%3E%3Cline x1='55' y1='55' x2='345' y2='345' stroke='%23D4A843' stroke-width='0.4'/%3E%3Cline x1='345' y1='55' x2='55' y2='345' stroke='%23D4A843' stroke-width='0.4'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: rotateMandala 80s linear infinite;
}
@keyframes rotateMandala { to { transform: translateY(-50%) rotate(360deg); } }

.slide-content {
  position: relative; z-index: 2;
  max-width: 1280px; width: 100%; padding: 0 30px 0 30px;
}
.slide-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--saffron-soft); margin-bottom: 14px;
  border-left: 2px solid var(--saffron); padding-left: 12px;
}
.slide-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #FFFDF5; font-weight: 700;
  line-height: 1.1; margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.slide-title span { color: var(--saffron-soft); }
.slide-sub {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,0.72); font-style: italic;
  margin-bottom: 32px; line-height: 1.6; max-width: 600px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all 0.4s; border: none;
}
.dot.active { background: var(--saffron); width: 28px; }

.slider-arrows {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  width: 100%; padding: 0 20px; pointer-events: none;
}
.sarrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.3s; backdrop-filter: blur(6px);
}
.sarrow:hover { background: var(--saffron); border-color: var(--saffron); }

/* ── HOME SECTIONS ── */
.quick-stats {
  background: var(--deep-blue);
  padding: 0;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 30px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 700;
  color: var(--saffron-soft); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }

/* Mission strip */
.mission-strip {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-mid) 100%);
  padding: 20px 60px; text-align: center;
}
.mission-strip p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.25rem; color: white; font-style: italic;
  letter-spacing: 0.5px;
}

/* Home about preview */
.home-about { background: var(--ivory); padding: 90px 60px; }
.home-about-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.home-about-visual {
  position: relative;
}
.about-visual-card {
  border-radius: 16px;
  background: linear-gradient(145deg, var(--deep-blue), var(--navy-mid));
  padding: 48px 40px; border: 1px solid rgba(212,168,67,0.2);
  position: relative; overflow: hidden;
}
.about-visual-card::before {
  content: '🕉';
  position: absolute; bottom: -20px; right: -10px;
  font-size: 10rem; opacity: 0.04; line-height: 1;
}
.about-visual-card .av-row {
  display: flex; gap: 20px; align-items: center; margin-bottom: 24px;
}
.av-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron-soft), var(--gold-bright));
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}
.av-name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-bright); font-weight: 600; }
.av-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 3px; letter-spacing: 1px; }
.av-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0 0 20px; }
.av-quote {
  font-family: 'Crimson Pro', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.7;
}

/* Dhaam card home */
.dhaam-home {
  background: var(--cream); padding: 90px 60px;
}
.dhaam-home-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center;
}
.dhaam-visual {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(145deg, #1A0A00, #3D1F00);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 48px 40px; position: relative;
}
.dhaam-visual::after {
  content: '🛕';
  position: absolute; right: 20px; bottom: 10px;
  font-size: 7rem; opacity: 0.07;
}
.dhaam-schedule { margin-top: 24px; }
.schedule-row {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.schedule-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sch-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.sch-day { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron-soft); margin-bottom: 3px; }
.sch-title { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold-bright); }
.sch-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 3px; line-height: 1.5; }

/* Testimonials mini */
.home-testi { background: var(--beige); padding: 90px 60px; }

/* Wisdom strip home */
.home-wisdom {
  background: linear-gradient(135deg, var(--deep-blue), #0A1828);
  padding: 80px 60px; text-align: center;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  padding: 70px 60px; text-align: center;
}
.cta-banner h2 {
  font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white; margin-bottom: 12px; font-weight: 600;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  padding: 14px 32px; border-radius: 4px;
  background: white; color: var(--saffron);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  transition: all 0.3s; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.2); }
.btn-white-outline {
  padding: 14px 32px; border-radius: 4px;
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }



/*-------------About us------------------*/

/* hero section (about page custom) */
.about-hero {
  position: relative;
  margin-top: 101px;
  background: linear-gradient(135deg, #FDF3E0 0%, #F9E5C8 40%, #F2D9AE 100%);
  overflow: hidden;
  padding: 70px 40px 90px;
  text-align: center;
}
.about-hero .mandala-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23D4A843' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='200' cy='200' r='140' fill='none' stroke='%23D4A843' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px;
  opacity: 0.2;
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero-om {
  font-size: 2.4rem;
  color: var(--saffron);
  margin-bottom: 12px;
  animation: gentlePulse 3s infinite;
}
@keyframes gentlePulse {
  0% { text-shadow: 0 0 5px rgba(212,97,10,0.2); }
  50% { text-shadow: 0 0 20px rgba(212,97,10,0.5); }
  100% { text-shadow: 0 0 5px rgba(212,97,10,0.2); }
}
.about-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(13,27,46,0.08);
  display: inline-block;
  padding: 4px 18px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-hero h1 em { color: var(--saffron); font-style: normal; }
.about-hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 650px;
  margin: 0 auto 20px;
  font-weight: 300;
}
/* decorative banner at bottom of hero */
.hero-banner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-bright), var(--saffron));
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 2% 100%);
  opacity: 0.8;
}
/* breadcrumb */
.breadcrumb {
  margin-top: 24px;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--saffron); text-decoration: none; margin: 0 4px; }
.breadcrumb .sep { margin: 0 4px; color: var(--gold); }



/*---------------------------Event ---------------------*/
/* events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 36px;
  margin-top: 56px;
}
.event-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--warm-white);
  transition: all 0.4s;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(212,97,10,0.12);
}
.event-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
}
.event-date {
  display: inline-block;
  background: rgba(212,168,67,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.event-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--warm-white);
  font-weight: 600;
  line-height: 1.3;
}
.event-location {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-body {
  padding: 28px;
}
.event-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.event-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.event-tag {
  background: rgba(212,97,10,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--saffron);
  border: 1px solid rgba(212,97,10,0.2);
}
.btn-event {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white;
  border-radius: 40px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.btn-event:hover { transform: translateY(-2px); opacity: 0.95; }
/* weekly schedule */
.schedule-section {
  background: var(--ivory);
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.schedule-item {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.schedule-day {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--saffron);
  font-weight: 600;
}
.schedule-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin: 8px 0 6px;
}
.schedule-time {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.schedule-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* register cta */
.register-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  text-align: center;
  padding: 70px 60px;
}
.register-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}
.register-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}
.btn-white-large {
  padding: 14px 38px;
  background: white;
  color: var(--saffron);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.2s;
  display: inline-block;
}
/* page hero */
.page-hero {
  position: relative;
  margin-top: 101px;
  background: linear-gradient(135deg, #FDF3E0 0%, #F9E5C8 40%, #F2D9AE 100%);
  padding: 70px 40px 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero .mandala-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23D4A843' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='200' cy='200' r='140' fill='none' stroke='%23D4A843' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px;
  opacity: 0.2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero-om {
  font-size: 2.4rem;
  color: var(--saffron);
  margin-bottom: 12px;
  animation: gentlePulse 3s infinite;
}
@keyframes gentlePulse {
  0% { text-shadow: 0 0 5px rgba(212,97,10,0.2); }
  50% { text-shadow: 0 0 20px rgba(212,97,10,0.5); }
  100% { text-shadow: 0 0 5px rgba(212,97,10,0.2); }
}
.page-hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(13,27,46,0.08);
  display: inline-block;
  padding: 4px 18px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--saffron); font-style: normal; }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}
.breadcrumb {
  margin-top: 24px;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--saffron); text-decoration: none; margin: 0 4px; }
.breadcrumb .sep { margin: 0 4px; color: var(--gold); }
.hero-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-bright), var(--saffron));
}


/* teachings grid */
.teachings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 20px;
}
.teach-card {
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all 0.4s;
}
.teach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(212,97,10,0.12);
  border-color: rgba(212,97,10,0.3);
}
.teach-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.teach-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
  font-weight: 600;
}
.teach-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}
/* quote section */
.quote-section {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  padding: 80px 60px;
  text-align: center;
}
.quote-section .quote-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--saffron-pale);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.quote-section .quote-author {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-soft);
}
/* wisdom list */
.wisdom-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.wisdom-item {
  background: var(--ivory);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--saffron);
}
.wisdom-item .quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.wisdom-item .source {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--saffron);
}
/* cta */
.teach-cta {
  background: var(--beige);
  text-align: center;
  padding: 70px 60px;
}
.teach-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.btn-saffron {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.2s;
}
.btn-saffron:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,97,10,0.3); }





@media(max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .home-about-inner, .dhaam-home-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width: 768px) {
  .banner-slider { height: 80vh; }
  .slide-content { padding: 0 28px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .home-about, .dhaam-home, .home-testi, .home-wisdom, .cta-banner { padding: 60px 24px; }
  .mission-strip { padding: 18px 24px; }
  .teachings-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .meditation-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .video-grid { grid-template-columns: 1fr; }
    main { padding: 50px 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* contact info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.info-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.05);
}
.info-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,97,10,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.info-icon i {
  font-size: 1.5rem;
  color: var(--saffron);
}
.info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
}
.info-card p, .info-card a {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  text-decoration: none;
}
.info-card a:hover { color: var(--saffron); }
.info-divider {
  margin: 18px 0 12px;
  height: 1px;
  background: var(--border);
}
/* form + map grid */
.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-card, .map-card {
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.form-header, .map-header {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  padding: 18px 24px;
  border-bottom: 3px solid var(--saffron);
}
.form-header h3, .map-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-header h3 i, .map-header h3 i { color: var(--saffron); }
.form-body { padding: 28px; }
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.req { color: var(--saffron); }
input, select, textarea {
  width: 100%;
  padding: 12px 16px !important;  
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(212,97,10,0.1);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white;
  border: none;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,97,10,0.3); }
.success-msg {
  margin-top: 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.error-msg {
  margin-top: 20px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  color: #dc2626;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.map-container {
  height: 280px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.hours-list {
  padding: 20px;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.hours-day {
  font-weight: 600;
  color: var(--text-mid);
}
.hours-time {
  color: var(--text-muted);
}
.social-box {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}
.social-box h4 {
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: 0.2s;
}
.social-links a:hover { background: var(--saffron); border-color: var(--saffron); }

/* meditation techniques grid */
.meditation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 20px;
}
.med-card {
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: all 0.4s;
}
.med-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(212,97,10,0.12);
  border-color: rgba(212,97,10,0.3);
}
.med-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}
.med-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
  font-weight: 600;
}
.med-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}
/* guided audio section */
.audio-section {
  background: var(--ivory);
}
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 48px auto 0;
}
.audio-item {
  background: var(--warm-white);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  transition: 0.3s;
}
.audio-item:hover {
  border-color: var(--saffron);
  box-shadow: 0 8px 24px rgba(212,97,10,0.1);
}
.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.2s;
}
.play-btn:hover { transform: scale(1.05); }
.audio-info h4 {
  font-size: 1.05rem;
  color: var(--deep-blue);
  margin-bottom: 4px;
}
.audio-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
/* benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.benefit-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.benefit-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--saffron);
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* main gallery styles */
main { padding: 70px 60px; position: relative; z-index: 1; }
.container { max-width: 1280px; margin: 0 auto; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}
.filter-select {
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--border);
  transition: all 0.4s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(212,97,10,0.12);
}
.gallery-img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  backdrop-filter: blur(3px);
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay i {
  font-size: 2rem;
  color: white;
  background: var(--saffron);
  padding: 12px;
  border-radius: 50%;
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 16px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 40px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s;
}
.pagination a:hover, .pagination .active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
}
.pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-caption {
  margin-top: 20px;
  color: var(--saffron-pale);
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
}
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.video-card {
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(212,97,10,0.12);
  border-color: var(--saffron);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--deep-blue);
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: 0.3s;
}
.play-overlay i {
  font-size: 2.5rem;
  color: white;
  background: var(--saffron);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.video-card:hover .play-overlay i {
  transform: scale(1.1);
}
.video-info {
  padding: 18px 20px;
}
.video-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 6px;
}
.video-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
/* audio list */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.audio-item {
  background: var(--warm-white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}
.audio-item:hover {
  border-color: var(--saffron);
  box-shadow: 0 8px 20px rgba(212,97,10,0.08);
}
.audio-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  cursor: pointer;
}
.audio-details {
  flex: 1;
}
.audio-details h4 {
  font-size: 1rem;
  color: var(--deep-blue);
  font-weight: 600;
  margin-bottom: 4px;
}
.audio-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.audio-player {
  display: none;
}
.audio-active .audio-play {
  background: var(--gold);
}
/* no results */
.no-results {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
  font-size: 1rem;
}
/* modal for video */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal.active {
  display: flex;
}
.modal-content {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 12px;
  overflow: hidden;
}
.modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* registration grid */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.btn-register {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white;
  border: none;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,97,10,0.3); }
.success-msg {
  margin-top: 20px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.error-msg {
  margin-top: 20px;
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  color: #dc2626;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}


/* donation cards grid */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.donate-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.donate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.05);
  border-color: var(--saffron);
}
.donate-icon {
  font-size: 2.5rem;
  color: var(--saffron);
  margin-bottom: 16px;
}
.donate-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}
.donate-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.donate-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--saffron);
  margin: 12px 0;
}
/* payment methods section */
.payment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.payment-box {
  background: var(--warm-white);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.payment-header {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  padding: 18px 24px;
  border-bottom: 3px solid var(--saffron);
}
.payment-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-header h3 i { color: var(--saffron); }
.payment-body {
  padding: 28px;
}
.qr-container {
  text-align: center;
  margin-bottom: 20px;
}
.qr-placeholder {
  width: 200px;
  height: 200px;
  background: #f0f0f0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--saffron);
  border: 2px dashed var(--border);
}
.bank-details {
  background: var(--ivory);
  padding: 16px;
  border-radius: 16px;
  margin-top: 16px;
}
.bank-details p {
  margin: 8px 0;
  font-size: 0.85rem;
  word-break: break-word;
}
.bank-details strong {
  color: var(--deep-blue);
}
.copy-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: 0.2s;
  margin-left: 8px;
}
.copy-btn:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}
/* offline donation form */
.offline-form {
  background: var(--warm-white);
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-top: 20px;
}
.offline-header {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy-mid));
  padding: 18px 24px;
  border-bottom: 3px solid var(--saffron);
}
.offline-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-donate {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-mid));
  color: white;
  border: none;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,97,10,0.3); }

/*--------news--------------------*/

.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.news-card {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}
.news-img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 0.7rem;
  color: var(--saffron);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.read-more {
  color: var(--saffron);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.read-more:hover { gap: 8px; }
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-widget {
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
}
.sidebar-widget h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}
.category-list {
  list-style: none;
}
.category-list li {
  margin-bottom: 12px;
}
.category-list a {
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
}
.category-list a:hover { color: var(--saffron); padding-left: 5px; }
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 16px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 40px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem;
}
.pagination a:hover, .pagination .active {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
}
.article-content {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
}
.article-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.article-meta i { margin-right: 5px; color: var(--saffron); }
.article-img {
  width: 100%;
  border-radius: 16px;
  margin: 20px 0;
}
.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.article-body h2, .article-body h3 { margin: 24px 0 12px; font-family: 'Cinzel', serif; }
.article-body p { margin-bottom: 18px; }
.article-body img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-widget {
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
}
.sidebar-widget h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}
.related-news {
  list-style: none;
}
.related-news li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.related-news a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-mid);
  transition: 0.2s;
}
.related-news a:hover { color: var(--saffron); }
.related-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 5px; display: block; }
.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.share-btn:hover { background: var(--saffron); color: white; }

/* info sidebar */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-box {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}
.info-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-box h3 i { color: var(--saffron); }
.info-box p, .info-box li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.info-box ul { padding-left: 20px; margin-top: 10px; }
.info-box li { margin-bottom: 8px; }
.feature-icon { font-size: 1.5rem; margin-right: 8px; vertical-align: middle; }
.donation-note {
  background: rgba(212,97,10,0.08);
  border-left: 3px solid var(--saffron);
  padding: 16px;
  margin-top: 20px;
  border-radius: 12px;
}