@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #E8A000;
  --gold-light: #F5BC00;
  --gold-light2: #f4ca42;
  --gold-dark: #C07800;
  --saffron: #F06000;
  --saffron-light: #FF7A00;
  --saffron-dark: #C04800;
  --maroon: #9A1020;
  --maroon-dark: #700818;
  --crimson: #C41828;
  --cream: #FDF8EE;
  --cream-dark: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #FAF7F2;
  --dark: #1A1008;
  --dark-light: #2D2010;
  --gray: #7A6858;
  --gray-light: #B09880;
  --border-light: #E8D8C0;
  --shadow-gold: rgba(232, 160, 0, 0.2);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
body {
  visibility: hidden;
}
body.loaded {
  visibility: visible;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

p { word-spacing: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 40px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  word-spacing: 10px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--dark-light);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 10px; }
.section-header .section-subtitle { margin: 0 auto; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
}

.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider::before { content: ''; }

/* Diamond ornament */
.divider-center {
  width: 8px;
  height: 8px;
  background: var(--saffron);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Simplified usage: just .divider as a line with center ornament via ::after content trick */
.divider {
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--saffron) 50%, var(--gold) 70%, transparent);
  margin: 20px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240, 96, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 96, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 1.5px solid var(--saffron);
}

.btn-outline:hover {
  background: var(--saffron);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--saffron-dark);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ===== Guru Name Top Bar ===== */
.top-guru-bar{
  width:100%;
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 100%);
  color:var(--white);
  text-align:center;
  font-family:var(--font-body);
  font-size:1rem;
  font-weight:600;
  letter-spacing:1px;
  padding:6px 12px;
  position:fixed;
  top:0;
  left:0;
  z-index:1100;
  display:flex;
  align-items:center;      /* vertical center */
  justify-content:center;  /* horizontal center */
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 100px;
  height: 40px;
  /* background: linear-gradient(135deg, var(--saffron), var(--gold)); */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

.navbar:not(.scrolled) .nav-logo-text { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--dark);
  position: relative;
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.9); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--saffron-light);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 4px;
}

.navbar.scrolled .lang-toggle {
  background: var(--cream);
  border-color: var(--border-light);
}

.lang-toggle button {
  padding: 6px 12px;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.navbar:not(.scrolled) .lang-toggle button { color: rgba(255, 255, 255, 0.75); }

.lang-toggle button.active {
  background: var(--saffron);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.navbar:not(.scrolled) .mobile-toggle span { background: var(--white); }

/* ===================== HERO SLIDESHOW ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;           /* ← CHANGED: Now left aligned */
  text-align: left;                      /* ← CHANGED: Text left aligned */
  color: var(--white);
  overflow: hidden;
  padding-left: 8%;                      /* ← Extra left breathing space */
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 0, 0.5) 0%,
    rgba(100, 20, 10, 0.35) 40%,
    rgba(10, 5, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--off-white));
  z-index: 3;
}

/* LEFT ALIGNED CONTENT STYLES */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;                      /* Slightly narrower for left alignment */
  padding: 0 24px;
}

.hero-content.left-aligned {
  margin-left: 0;                        /* Ensures it's fully left */
}

/* All text elements now inherit left alignment */
.hero-label,
.hero-title,
.hero-slogan,
.hero-subtitle,
.hero-spiritual,
.hero-actions {
  text-align: left;
}

.hero-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  word-spacing: 11px;
  text-transform: uppercase;
  color: var(--gold-light2);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: flex-start;           /* ← CHANGED: Ornament also left */
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}
.main-name {
  font-size: 4.5rem;
  display: block;
  font-weight: 700;
  letter-spacing: -1px;
}

.welcome-line {
  font-size: 1.5rem;   /* fixed smaller size */
  font-weight: 400;
  opacity: 0.93;
  display: block;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ==================== SLOGAN - HIGHLIGHTED (Gold + underline) ==================== */
.hero-slogan {
  font-size: 1.25rem;
  font-weight: 550;
  color: #f4c542;                    /* Gold highlight */
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(244, 197, 66, 0.35);
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

/* ==================== SPIRITUAL WORDS - GIVEN IMPORTANCE (Gold + bigger) ==================== */
.hero-spiritual {
  font-size: 1.18rem;
  font-weight: 500;
  color: #f4c542;                    /* Gold color */
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.85s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;           /* ← CHANGED: Buttons now left aligned */
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Bottom elements remain centered (looks premium) */
.hero-dots {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(transparent, var(--gold-light));
}
/* ============= mantra ============= */
/* Top spiritual banner */

.top-mantra-bar{
background:var(--crimson);
color:rgba(255,255,255,.9);
text-align:center;
padding:16px 20px;
font-size:15px;
letter-spacing:.06em;
}

.mantra-highlight{
color:var(--gold-light2);
font-family:'Cormorant Garamond', serif;
font-size:18px;
font-style: italic;
}

/* ===================== ABOUT PREVIEW ===================== */
.about-preview { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-wrapper img {
  border-radius: 8px;
  width: 100%;
  height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 0;
}

.about-text p {
  color: var(--dark-light);
  margin-bottom: 16px;
  font-weight: 300;
  /* font-size: 18px; */
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--saffron);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===================== DARSHAN TIMINGS ===================== */

.darshan-section{
  background: linear-gradient(180deg,var(--cream),var(--cream-dark));
  padding: 40px 0;
}

.darshan-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:28px;
}

/* card */

.darshan-card{
  background:white;
  border-radius:14px;
  padding:24px 16px;
  text-align:center;
  position:relative;
  border:1px solid var(--border-light);
  transition:all .35s ease;
}

/* soft glow */

.darshan-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 12px 30px rgba(0,0,0,0.08),
  0 0 0 2px var(--gold-light2);
}

/* icon */

.darshan-card .icon{
  width:58px;
  height:58px;
  margin:0 auto 18px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--saffron),var(--gold));
}

.darshan-card .icon svg{
  width:24px;
  height:24px;
}

/* title */

.darshan-card h3{
  font-family:var(--font-heading);
  font-size:1.4rem;
  margin-bottom:8px;
  color:var(--dark);
}

/* time */

.darshan-card .time{
  font-size:1.05rem;
  font-weight:600;
  color:var(--saffron-dark);
  margin-bottom:6px;
}

/* description */

.darshan-card p{
  font-size:0.85rem;
  color:var(--gray);
}

/* ===================== LIVE DARSHAN ===================== */
.live-darshan { background: var(--cream); }

.live-darshan-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.live-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 16/9;
}

.live-player iframe { width: 100%; height: 100%; border: none; }

.live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 24, 40, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.live-info { padding: 20px 0; }

.live-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.live-info p {
  color: var(--gray);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.live-schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.live-schedule-item .time-badge {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--white);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.live-schedule-item span { font-size: 0.9rem; color: var(--dark-light); }

/* ===================== EVENTS PREVIEW ===================== */
.events-preview { background: var(--white); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(154, 16, 32, 0.1);
  border-color: var(--saffron);
}

.event-card-image {
  height: 220px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.event-card:hover .event-card-image img { transform: scale(1.05); }

.event-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.event-date-badge .day {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card-body { padding: 24px; }

.event-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.event-card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.event-meta span { display: flex; align-items: center; gap: 6px; }

.event-meta-icon {
  width: 14px;
  height: 14px;
  fill: var(--saffron);
  flex-shrink: 0;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 40%, var(--gold) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cta-banner p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-banner .btn { position: relative; z-index: 1; }

/* ===================== FOOTER ===================== */
.footer {
  background: #12080A;
  color: rgba(255, 255, 255, 0.65);
  padding: 50px 0 30px;
}
.footer-logo{
  margin-bottom: 16px;
}
.footer-logo img{
  width: 300px;
  height: auto;
  border-radius: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold-light2);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--saffron-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--saffron);
  background: var(--saffron);
}

.footer-social a:hover svg { fill: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact li{
  font-size: .88rem;
  color:rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a{
color:var(--gold-light);
text-decoration:none;
}

.footer-contact a:hover{
text-decoration:underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a{
  /* text-decoration: underline; */
  color: var(--gold-light);
}
.footer-bottom a:hover{
  color:var(--gold-light);
text-decoration:underline;
padding-left: 4px;
}
.footer-divider{
display:flex;
align-items:center;
justify-content:center;
margin:30px 0 25px 0;
position:relative;
}

.footer-divider::before,
.footer-divider::after{
content:"";
flex:1;
height:1px;
background:linear-gradient(to right, transparent, var(--gold-light), transparent);
}


.footer-divider span{
padding:0 14px;
font-family:var(--font-heading);
font-size:0.9rem;
letter-spacing:2px;
color:var(--gold-light);
}

/* ===================== PAGE HEADER ===================== */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 35%, var(--saffron-dark) 70%, var(--saffron) 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='55' stroke='%23F5BC00' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3Ccircle cx='60' cy='60' r='40' stroke='%23F5BC00' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3Ccircle cx='60' cy='60' r='25' stroke='%23F5BC00' stroke-width='0.5' fill='none' opacity='0.12'/%3E%3Cpath d='M60 5 L60 115 M5 60 L115 60 M17 17 L103 103 M103 17 L17 103' stroke='%23F5BC00' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E") center/200px 200px;
  opacity: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, var(--off-white));
}

.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.page-header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.page-header-ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 188, 0, 0.8));
}

.page-header-ornament-line:last-child {
  background: linear-gradient(90deg, rgba(245, 188, 0, 0.8), transparent);
}

.page-header-ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===================== ABOUT PAGE ===================== */
.about-content { background: var(--white); }

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-detail-grid.reverse { direction: rtl; }
.about-detail-grid.reverse > * { direction: ltr; }

.about-detail-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-detail-text p {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-detail-image {
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mission-vision { background: var(--white); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.mv-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 20px 60px rgba(240, 96, 0, 0.08);
}

.mv-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-card .icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.mv-card p {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
}

/* ===================== GURU BIOGRAPHY ===================== */

.sacred-scroll{
padding:100px 20px;
background:#f4efe3;
display:flex;
justify-content:center;
}

.scroll-container{
max-width:850px;
background:#fff9e8;
padding:60px;
border:6px solid #c89b3c;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
position:relative;
}

.scroll-title{
text-align:center;
font-size:30px;
margin-bottom:40px;
color:#8b5a00;
}

.scroll-container p{
font-size:10px;
line-height:1.9;
margin-bottom:20px;
color:#3b2f2f;
text-align:justify;
}

.guru-message{
margin-top:40px;
padding:25px;
background:#fff3d9;
border-left:5px solid #c89b3c;
font-style:italic;
font-size:20px;
}


/* ===================== EVENTS PAGE ===================== */
.events-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.event-card-full {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.event-card-full:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(240, 96, 0, 0.1);
  border-color: var(--saffron);
}

.event-card-full .event-card-image { height: 240px; }

.events-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  background: var(--white);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
}

/* ===================== BHAJAN PAGE ===================== */
.bhajan-search {
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

.bhajan-search input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.bhajan-search input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 96, 0, 0.1);
}

.bhajan-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.bhajan-search .search-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gray-light);
  stroke-width: 2;
}

.bhajan-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.bhajan-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.bhajan-item:hover {
  border-color: var(--saffron);
  box-shadow: 0 8px 30px rgba(240,96,0,0.06);
}

.bhajan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.bhajan-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.bhajan-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.bhajan-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.bhajan-artist {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 2px;
}

.bhajan-toggle {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--gray);
  font-size: 0.8rem;
}

.bhajan-toggle.open {
  background: var(--saffron);
  color: var(--white);
  transform: rotate(180deg);
}

.bhajan-content {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border-light);
}

.bhajan-content.open { display: block; }

.bhajan-lyrics {
  background: var(--cream);
  border-left: 3px solid var(--saffron);
  border-radius: 0 8px 8px 0;
  padding: 1px;
  margin: 1px 0;
  white-space: pre-line;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--dark-light);
  max-height: 300px;
  overflow-y: auto;
}

.bhajan-youtube {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 560px;
}

.bhajan-youtube iframe { width: 100%; height: 100%; border: none; }

/* ===================== GALLERY PAGE ===================== */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(154, 16, 32, 0.7));
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--white);
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===================== DONATE PAGE ===================== */
.donate-content { background: var(--white); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.donate-qr {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.donate-qr h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.qr-placeholder {
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-light);
  color: var(--gray-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}

.donate-qr p { font-size: 0.9rem; color: var(--gray); }

.bank-details {
  background: var(--cream);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border-light);
}

.bank-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.bank-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.bank-info-row:last-child { border-bottom: none; }

.bank-info-row .label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-info-row .value {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.donate-note {
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.donate-note p { color: var(--gray); font-weight: 300; line-height: 1.8; }

/* ======================== JAP PAGE =========================== */
.jap-container{
  text-align:center;
  max-width:600px;
  margin:auto;
}

.mala-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:10px;
  margin:40px 0;
}

.bead{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#e8d8c0;
  transition:0.3s;
}

.bead.active{
  background:var(--saffron);
  box-shadow:0 0 10px rgba(240,96,0,0.5);
}

.jap-info h3{
  font-size:2rem;
  color:var(--maroon);
  margin-bottom:10px;
}

.jap-button{
  font-size:1rem;
  padding:16px 50px;
  margin-top:20px;
  margin-bottom: 20px;
}

/* ===================== CONTACT PAGE ===================== */
.contact-content { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  outline: none;
  transition: var(--transition);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(240, 96, 0, 0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 8px 30px rgba(240,96,0,0.06);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
  word-spacing: 4px;
}

.contact-info-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

.contact-map {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border-light);
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@keyframes slideFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu{
position:fixed;
top:0;
right:0;
width:280px;
height:100vh;
background:rgba(20,20,20,0.85);
backdrop-filter:blur(18px);
/* background:linear-gradient( 180deg, var(--saffron-dark) 0%, var(--burgundy) 100% );
backdrop-filter:blur(16px); */
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-start;
padding:80px 30px 40px 30px;
gap:18px;
z-index:1200;
transform:translateX(100%);
transition:transform .35s ease;
box-shadow:-8px 0 30px rgba(0,0,0,0.35);
}

/* ACTIVE STATE */

.mobile-menu.active{
transform:translateX(0);
}

/* LINKS */

.mobile-menu a{
width:100%;

font-family:var(--font-heading);
font-size:1.2rem;
font-weight:600;

color:rgba(255,255,255,0.9);
text-decoration:none;

padding:10px 0;

border-bottom:1px solid rgba(255,255,255,0.08);

transition:all .25s ease;
}

.mobile-menu a:hover{
color:var(--gold-light);
padding-left:6px;
}

/* CLOSE BUTTON */

.mobile-menu-close{
position:absolute;
top:18px;
right:18px;

width:38px;
height:38px;

border:none;
background:rgba(255,255,255,0.12);

border-radius:50%;

font-size:1.4rem;
color:var(--white);

cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

transition:all .25s ease;
}

.mobile-menu-close:hover{
background:var(--saffron);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-grid,
  .about-detail-grid,
  .donate-grid,
  .contact-grid,
  .live-darshan-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-detail-grid.reverse { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:992px){
  .top-guru-bar{
  font-size:1rem;
  letter-spacing:.5px;
  padding:6px 10px;
  font-weight:550;
  height: 38px;
  }
  .navbar { 
    top: 38px;
    padding: 10px 0; 
  }
  .navbar.scrolled{ padding: 6px 0; }
  .nav-links { display: none; }

  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu a{ font-size:1.35rem; }
  .nav-logo-text{ font-size: 1.4rem; }
  .nav-logo{gap: 10px;}
  .nav-logo-icon { width: 90px;}
  .hero {
    display: flex;
    justify-content: flex-start; /* left */
    align-items: flex-end;       /* bottom */
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
  .footer-grid{ grid-template-columns: 1fr; gap:40px}
  .footer-bottom{ flex-direction: column; gap:10px; text-align: center;}
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-header{margin-bottom: 20px;}
  .top-guru-bar{
    font-size:1rem;
    letter-spacing:.9px;
    padding:5px 8px;
    line-height:1.4;
    font-weight:500;
  }
  .nav-logo{gap: 3px;}
  .nav-logo-icon { width: 70px;}
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .darshan-grid,
  .events-grid,
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-title { font-size: 2.4rem; }
  .hero { 
    justify-content:center; 
    text-align:center; 
    padding-left:0; 
    padding-right:0; 
  }
  .hero-content { max-width:92%; }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
  }
  .about-image-wrapper::before { display: none; }
  .live-info{padding: 10px 0;}
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .events-page-grid { grid-template-columns: 1fr; }
  .lang-toggle button { padding: 5px 9px; font-size: 0.7rem; }
  .page-header { padding: 140px 0 70px; }
  .darshan-card{ padding:10px 20px; }
  .darshan-card .icon{width: 40px; height: 40px;}
  .darshan-card h3{ font-size:1.2rem; margin-bottom:0;}
  .darshan-card .time{ font-size:1rem; margin-bottom:0;}
  .darshan-card p{ font-size:0.75rem;}
  .darshan-grid{ gap: 15px;}
  .footer{padding: 30px 0 30px;}
  .footer-divider{margin: 10px 0 15px 0;}
  .footer-bottom{padding-top: 15px;}
  .footer-grid{margin-bottom: 30px;}
  .mala-grid{ grid-template-columns:repeat(9,1fr); }
}

/* @media (min-width:769px) { .mobile-toggle { display:none; } } */

@media (max-width: 480px) {
  .top-guru-bar{
    font-size: .9rem;
    padding: 5px 6px;
  }
  .navbar.scrolled{padding: 3px 0;}
  .mobile-menu{
    width:240px;
    padding:70px 22px 30px 22px;
  }
    .mobile-menu a{font-size:1.1rem;}
    .mobile-menu-close{
    width:34px;
    height:34px;
    font-size:1.2rem;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero {
    display: flex;
    justify-content: flex-start; /* left */
    align-items: flex-end;       /* bottom */
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
  .main-name{ font-size: 2.7rem;}
  .welcome-line {
    font-size: 1.2rem;   /* fixed smaller size */
    font-weight: 300;
  }
  .hero-slogan {
    font-size: 1.1rem;
    font-weight: 550;
    margin-bottom: 10px;
    padding-bottom: 2px;
  }
  .hero-spiritual {
    font-size: 1rem;
    font-weight: 520;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .hero-actions { flex-direction: column; align-items: center; gap:10px;}
  .btn {  padding: 7px 16px; width: 100%; max-width: 280px; font-size: 0.95rem; font-weight: 520; letter-spacing: 1px;}
  .hero-dots { bottom: 75px; }
  .hero-scroll{ gap: 0; bottom: 2px; left:51% }
  .container { padding: 0 16px; }
  .lang-toggle button { font-size: 0.6rem; }
  .about-stats { grid-template-columns: 1fr; }
}
@media(max-width: 404px){
  .top-guru-bar{
    font-weight: 400; 
    font-size: .85rem;
 }
 .hero { padding-bottom: 80px; }
  .main-name{ font-size: 2.4rem;}
  .welcome-line { font-size: 1.2rem; }
  .hero-slogan { font-size: 1rem;  }
  .hero-spiritual { font-size: 1rem;  }
  .btn {  padding: 5px 14px; width: 100%; max-width: 280px; font-size: 0.9rem;}
  .hero-dots { bottom: 60px; }
}