/* ============================================================
   Satyadeep Foundation – Main Stylesheet
   Design System: Poppins + Open Sans | NGO Color Palette
   ============================================================ */

/* ─── CSS Custom Properties ──────────────────────────────────── */
:root {
  --primary:        #3B4A6B;
  --primary-dark:   #2c3a55;
  --primary-light:  #4e6090;
  --yellow:         #F0D43A;
  --orange:         #f09f3a;
  --red:            #F23557;
  --white:          #ffffff;
  --off-white:      #f8f9fc;
  --light-gray:     #f2f4f7;
  --border:         #e0e5ef;
  --text:           #2c3e50;
  --text-muted:     #6c757d;
  --shadow-sm:      0 2px 8px rgba(59,74,107,0.10);
  --shadow-md:      0 4px 20px rgba(59,74,107,0.14);
  --shadow-lg:      0 8px 40px rgba(59,74,107,0.18);
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      18px;
  --transition:     all 0.3s ease;
  --max-width:      1200px;
}

/* ─── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
  max-width: 160px;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero Slider ─────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--primary-dark);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,74,107,0.75) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.92;
  margin-bottom: 2rem;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--yellow); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.slider-arrow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--primary); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* ─── Section Styles ──────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }
.bg-light { background: var(--off-white); }
.bg-primary { background: var(--primary); }
.bg-orange { background: var(--orange); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.title-line {
  display: block;
  width: 56px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: #e08c28; border-color: #e08c28; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: #d41f47; }

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  position: relative;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ─── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Work / Feature Cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  text-align: center;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}

.work-card .icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
}

.work-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.work-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ─── Stats Section ───────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-card .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat-card .stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* ─── Team Cards ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--border);
}

.team-card .avatar-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--primary-light);
}

.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .position { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 0.75rem; }

.team-social { display: flex; justify-content: center; gap: 0.5rem; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); }

/* ─── Gallery ─────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,74,107,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.gallery-overlay span { font-size: 0.8rem; color: var(--yellow); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox-info { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--white); }
.lightbox-info h4 { font-size: 1rem; color: var(--white); }
.lightbox-info p { font-size: 0.85rem; opacity: 0.7; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--orange); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

/* ─── Reports Cards ───────────────────────────────────────────── */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.report-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}
.report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.report-icon { font-size: 2.5rem; color: var(--red); margin-bottom: 1rem; }
.report-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.report-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }

.report-meta { display: flex; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.82rem; color: var(--text-muted); }
.report-meta span { display: flex; align-items: center; gap: 0.3rem; }

.report-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

/* ─── Media Coverage ──────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.media-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.media-card-img img { width: 100%; height: 100%; object-fit: cover; }
.media-card-img .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--primary-light); }

.media-card-body { padding: 1.5rem; }
.media-card-body .source {
  font-size: 0.78rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.media-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.media-card-body p { font-size: 0.88rem; color: var(--text-muted); }
.media-card-body .date { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ─── About Page ──────────────────────────────────────────────── */
.tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  gap: 0;
}

.tab-btn {
  padding: 0.9rem 2rem;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--orange); }
.tab-btn:hover { color: var(--primary); }

.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.compliance-list, .community-list {
  padding-left: 0;
}
.compliance-list li, .community-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.6;
}
.compliance-list li::before, .community-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─── Two-Column Content Layout ───────────────────────────────── */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }

.content-row img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.content-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-left: 5px solid var(--yellow);
  padding-left: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem;
}

.content-text p { color: var(--text); line-height: 1.85; font-size: 1rem; }

/* Rich-text editor output (home / about) */
.rich-content p   { color: var(--text); line-height: 1.85; font-size: 1rem; margin-top: 1rem; }
.rich-content p:first-child { margin-top: 1.25rem; }
.rich-content ul, .rich-content ol { color: var(--text); line-height: 1.85; font-size: 1rem; margin: 0.75rem 0 0.75rem 1.5rem; }
.rich-content li  { margin-bottom: 0.35rem; }
.rich-content a   { color: var(--primary); text-decoration: underline; }
.rich-content strong { font-weight: 600; }
.rich-content em  { font-style: italic; }
.rich-content h2, .rich-content h3, .rich-content h4 { color: var(--primary); margin: 1.25rem 0 0.5rem; }

/* ─── Contact Form ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap h2, .contact-info-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--yellow);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,74,107,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.info-item h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.info-item p { font-size: 0.9rem; color: var(--text-muted); }

.map-wrap { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; }

/* ─── Partners ────────────────────────────────────────────────── */
.partners-list { display: flex; flex-direction: column; gap: 1.25rem; }
.partner-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-md); }
.partner-card .partner-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}
.partner-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.partner-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Donation section */
.donation-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 600px;
}
.donation-box h3 { margin-bottom: 1.25rem; }
.bank-details table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.bank-details td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.bank-details td:first-child { font-weight: 600; color: var(--primary); width: 45%; }

/* ─── Marquee ─────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--primary);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-bar .marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-bar .marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.marquee-item::before {
  content: '◆';
  color: var(--yellow);
  font-size: 0.5rem;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 3px; }

.footer-contact ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.footer-contact ul li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--yellow); }

.social-icons { display: flex; gap: 0.6rem; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--orange); color: var(--white); }

.footer-bottom {
  background: var(--red);
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
}

/* ─── Alert Messages ──────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success { background: #d1fadf; color: #166534; border-left: 4px solid #22c55e; }
.alert-danger  { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ─── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 3rem; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ─── Utility Classes ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-row { gap: 2rem; }
  .contact-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { display: block; padding: 0.75rem 1rem; font-size: 1rem; }

  .content-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .content-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 75vh; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .tab-buttons { flex-direction: column; border-bottom: none; }
  .tab-btn { border: 2px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.4rem; }
  .tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
