/* ============================================
   SHRI BANKE BIHARI SHIKSHA PRASAR SAMITI
   Stylesheet
   ============================================ */

:root {
  --primary: #E65100;        /* Saffron */
  --primary-dark: #BF360C;
  --primary-light: #FF8A50;
  --secondary: #1A237E;      /* Deep indigo */
  --secondary-light: #534BAE;
  --accent: #FFB300;         /* Gold */
  --bg: #FFF8F0;
  --bg-alt: #FFFFFF;
  --text: #212121;
  --text-light: #555;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--accent); }
.topbar-info span { margin-right: 18px; }
.topbar-info i { margin-right: 5px; color: var(--accent); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  box-shadow: var(--shadow);
}
.logo-text h1 {
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: 1.2;
  font-weight: 700;
}
.logo-text p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--primary);
  background: rgba(230, 81, 0, 0.08);
}
.nav .btn-donate {
  margin-left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.35);
}
.nav .btn-donate:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    linear-gradient(135deg, rgba(26,35,126,0.85), rgba(230,81,0,0.75)),
    url('https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
.hero .badge {
  display: inline-block;
  background: rgba(255,179,0,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(255,179,0,0.4);
}
.btn-primary:hover { background: #ffa000; transform: translateY(-3px); color: #1a1a1a; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover { background: var(--secondary-light); color: #fff; transform: translateY(-3px); }

/* ============================================
   PAGE HERO (smaller, for inner pages)
   ============================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(26,35,126,0.9), rgba(230,81,0,0.85)),
    url('https://images.unsplash.com/photo-1497486751825-1233686d5d80?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 10px; }
.breadcrumb { font-size: 0.9rem; opacity: 0.9; }
.breadcrumb a { color: var(--accent); }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title small {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 15px auto 0;
  border-radius: 3px;
}
.section-title p { color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* ============================================
   ABOUT GRID
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}
.about-text h3 { color: var(--secondary); font-size: 1.6rem; margin-bottom: 15px; }
.about-text p { margin-bottom: 15px; color: var(--text-light); }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
.about-features div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-features i { color: var(--primary); font-size: 1.2rem; margin-top: 4px; }

/* ============================================
   STATS
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}
.stat-item p { font-size: 1rem; opacity: 0.9; }

/* ============================================
   CARDS / PROGRAMS
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin: 30px 30px 0;
}
.card-body { padding: 20px 30px 30px; }
.card-body h4 { font-size: 1.25rem; color: var(--secondary); margin-bottom: 12px; }
.card-body p { color: var(--text-light); font-size: 0.95rem; }

/* ============================================
   DOCUMENTS
   ============================================ */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.doc-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.doc-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.doc-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E53935, #C62828);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.doc-icon.img { background: linear-gradient(135deg, #43A047, #2E7D32); }
.doc-info { flex: 1; }
.doc-info h4 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 5px; }
.doc-info p { font-size: 0.85rem; color: var(--text-light); }
.doc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.doc-actions a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--primary);
  color: #fff;
  white-space: nowrap;
}
.doc-actions a:hover { background: var(--primary-dark); color: #fff; }
.doc-actions a.view { background: var(--secondary); }
.doc-actions a.view:hover { background: var(--secondary-light); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 30px 15px 15px;
  font-size: 0.9rem;
}

/* ============================================
   DONATE
   ============================================ */
.donate-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  text-align: center;
}
.donate-section h2 { color: #fff; }
.donate-section h2::after { background: #fff; }
.donate-section p { color: rgba(255,255,255,0.95); }
.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.donate-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.donate-card:hover, .donate-card.active {
  background: #fff;
  color: var(--primary);
  transform: scale(1.05);
}
.donate-card h3 { font-size: 1.8rem; margin-bottom: 5px; }
.bank-details {
  background: rgba(0,0,0,0.2);
  padding: 25px;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}
.bank-details h4 { color: var(--accent); margin-bottom: 15px; text-align: center; }
.bank-details table { width: 100%; }
.bank-details td { padding: 6px 0; }
.bank-details td:first-child { font-weight: 600; opacity: 0.9; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info h3 { color: var(--secondary); margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-item .icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.95rem; color: var(--secondary); margin-bottom: 3px; }
.contact-item p { color: var(--text-light); font-size: 0.95rem; }

.contact-form {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; color: var(--secondary); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,81,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0d1126;
  color: #b8bcd1;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; position: relative; padding-bottom: 10px; }
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #b8bcd1; font-size: 0.9rem; }
.footer ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    align-items: stretch;
  }
  .nav.open { right: 0; }
  .nav a { padding: 12px 16px; }
  .topbar-info span { display: block; margin: 4px 0; }
  .topbar { display: none; }
  .cards, .docs-grid, .gallery-grid, .donate-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 2rem; }
  .doc-item { flex-wrap: wrap; }
  .hero { padding: 60px 0 50px; }
  section { padding: 50px 0; }
  .logo-text h1 { font-size: 0.9rem; }
  .logo-text p { font-size: 0.7rem; }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-3 { margin-top: 30px; }

/* ============================================
   BILINGUAL (Hindi default, English toggle)
   ============================================ */
html[data-lang="hi"] body { font-family: 'Noto Sans Devanagari', 'Poppins', 'Segoe UI', sans-serif; }
html[data-lang="hi"] .en { display: none !important; }
html[data-lang="en"] .hi { display: none !important; }

.lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 3px;
  margin-left: 8px;
}
.lang-toggle button {
  padding: 5px 14px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.lang-toggle button.active {
  background: var(--accent);
  color: #1a1a1a;
}
.nav .lang-toggle {
  background: rgba(0,0,0,0.06);
  margin-left: 12px;
}
.nav .lang-toggle button { color: var(--text); }
.nav .lang-toggle button.active { background: var(--primary); color: #fff; }

/* ============================================
   EVENTS  (JSON-driven)
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-cover {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.event-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-date {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 14px;
  border-radius: 0 8px 0 0;
  font-size: 0.85rem;
}
.event-body { padding: 20px 25px 25px; flex: 1; display: flex; flex-direction: column; }
.event-body h4 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.event-body .event-meta { color: var(--text-light); font-size: 0.85rem; margin-bottom: 12px; }
.event-body .event-meta i { color: var(--primary); margin-right: 4px; }
.event-body p { color: var(--text-light); font-size: 0.93rem; flex: 1; }
.event-body .event-link { margin-top: 15px; color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.event-body .event-link:hover { color: var(--primary-dark); }

.event-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.event-empty i { font-size: 3rem; color: var(--primary); opacity: 0.5; margin-bottom: 15px; }

/* Event detail modal */
.event-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.event-modal.open { display: flex; }
.event-modal-inner {
  background: #fff;
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.event-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}
.event-modal-cover { width: 100%; height: 320px; object-fit: cover; }
.event-modal-body { padding: 30px 35px 35px; }
.event-modal-body h2 { color: var(--secondary); margin-bottom: 10px; }
.event-modal-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.event-modal-meta span { margin-right: 18px; }
.event-modal-meta i { color: var(--primary); margin-right: 5px; }
.event-modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.event-modal-photos img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.event-modal-photos img:hover { transform: scale(1.03); }
.event-modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 25px;
  border-radius: var(--radius);
  border: 0;
}

/* ============================================
   SEVA PAGE
   ============================================ */
.seva-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.seva-section.reverse { direction: rtl; }
.seva-section.reverse > * { direction: ltr; }
.seva-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}
.seva-img.gau { background: linear-gradient(135deg, #43A047, #1B5E20); }
.seva-img.asahay { background: linear-gradient(135deg, #E53935, #B71C1C); }
.seva-text h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.seva-text .seva-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
}
.seva-text p { color: var(--text-light); margin-bottom: 12px; }
.seva-text ul { padding-left: 20px; margin: 15px 0; }
.seva-text ul li { margin-bottom: 8px; color: var(--text-light); }

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; }
  .seva-section, .seva-section.reverse { grid-template-columns: 1fr; direction: ltr; }
  .event-modal-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) and (min-width: 769px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
