/* assets/css/style.css */

:root {
  --ngo-soft-1: #F5EFFF;
  --ngo-soft-2: #E5D9F2;
  --ngo-soft-3: #CDC1FF;
  --ngo-primary: #A294F9;
  --ngo-text: #111827;
}

body {
  background-color: var(--ngo-soft-1);
  color: var(--ngo-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ================= NAVBAR (DARK LIKE FOOTER) ================= */

/* main header bg same as footer */
.site-header {
  background: #020617;
}

/* Navbar theme */
.navbar-ngo {
  background: transparent; /* header hi dark hai */
  border-bottom: 1px solid rgba(148, 163, 184, 0.30);
  padding-top: 8px;
  padding-bottom: 8px;
}

/* gap between menu items */
.navbar-ngo .navbar-nav .nav-item {
  margin: 0 0.25rem;
}

/* brand text + logo */
.navbar-ngo .navbar-brand {
  color: #e5e7eb;
}

.navbar-ngo .navbar-brand:hover {
  color: #ffffff;
}

.navbar-ngo .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4c1d95, #6366f1); /* footer-like gradient */
  display: inline-block;
}

/* nav links: box hover (not round pill) */
.navbar-ngo .nav-link {
  color: #e5e7eb;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;              /* small box corners */
  transition: background-color 0.2s, color 0.2s;
}

.navbar-ngo .nav-link:hover {
  background-color: rgba(148, 163, 184, 0.20);  /* box hover on dark */
  color: #ffffff;
}

.navbar-ngo .nav-link.active {
  background-color: #4c1d95;   /* primary purple */
  color: #ffffff;
}

/* Dropdown menu styling (dark) */
.dropdown-menu-ngo {
  border-radius: 10px;
  border: 1px solid #111827;
  padding: 0.4rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
  background: #020617;
}

.dropdown-menu-ngo .dropdown-item {
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: #e5e7eb;
}

.dropdown-menu-ngo .dropdown-item:hover,
.dropdown-menu-ngo .dropdown-item.active {
  background-color: #111827;
  color: #ffffff;
}

/* background helper – page ka soft bg same hi rahe */
.bg-ngo-soft {
  background-color: var(--ngo-soft-1);
}

.text-ngo-primary {
  color: var(--ngo-primary);
}

/* WhatsApp button – large, right side (works on dark header) */
.btn-whatsapp-navbar {
  background-color: #25D366;
  color: #022c22;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.55);
  border: none;
  white-space: nowrap;
}

.btn-whatsapp-navbar:hover {
  background-color: #1ebe5c;
  color: #022c22;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.7);
}

.btn-whatsapp-navbar .wa-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
}

/* small whatsapp-style ring */
.btn-whatsapp-navbar .wa-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid #25D366;
}

/* mobile toggler icon visible on dark bg */
.navbar-dark .navbar-toggler {
  border-color: rgba(148, 163, 184, 0.5);
}
.navbar-dark .navbar-toggler-icon {
  filter: invert(1) grayscale(1);
}


















/* Home hero section */
.home-hero {
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.home-hero-text h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.home-hero-text .hero-tagline {
  font-size: 0.95rem;
  color: #4b5563;
}

.hero-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: var(--ngo-soft-2);
  color: #4b5563;
}

/* Primary + Outline buttons in hero */
.btn-primary-ngo {
  background-color: var(--ngo-primary);
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(162, 148, 249, 0.45);
}

.btn-primary-ngo:hover {
  background-color: #8b7cf2;
  color: #ffffff;
}

.btn-outline-ngo {
  background-color: transparent;
  border: 1px solid var(--ngo-primary);
  color: var(--ngo-primary);
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline-ngo:hover {
  background-color: var(--ngo-soft-2);
  color: #4338ca;
}

/* Hero carousel styling */
.hero-carousel {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  background-color: #000;
}

.hero-carousel .carousel-item img {
  height: 320px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-carousel .carousel-item img {
    height: 240px;
  }
}

/* Indicators (dots) */
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(243, 244, 246, 0.8);
}

.hero-carousel .carousel-indicators .active {
  background-color: var(--ngo-primary);
}

/* Controls (prev/next buttons) */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 12%;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 0.55rem;
  background-size: 60% 60%;
}

/* Caption overlay */
.hero-caption {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.0)
  );
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem 1.1rem;
  text-align: left;
}

.hero-caption h5 {
  font-size: 1rem;
  font-weight: 600;
}

.hero-caption p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ---------- Home stats section ---------- */
.home-stats {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.stat-card-ngo {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--ngo-soft-2);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

/* top gradient strip */
.stat-card-ngo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  right: -20%;
  height: 4px;
  background: linear-gradient(90deg, var(--ngo-soft-3), var(--ngo-primary));
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.15rem;
}

.stat-subtext {
  font-size: 0.8rem;
  color: #4b5563;
}

/* small spacing fix on very small screens */
@media (max-width: 576px) {
  .stat-card-ngo {
    padding: 0.85rem 0.95rem;
  }
}

/* ========== ABOUT NETRI NGO SECTION ========== */

.about-ngo-section {
  
  padding: 72px 0 80px;
  background: #f3f4ff;        /* light theme background */
}

/* Top bilingual title */
.ngo-title {
  margin-bottom: 40px;
}

.ngo-hindi {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.ngo-english {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
}

.ngo-sub {
  font-size: 13px;
  color: #6b7280;
}

/* Left content */
.about-ngo-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.about-ngo-lead {
  font-size: 16px;
  color: #374151;
}

/* Bullet list */
.about-ngo-list {
  margin: 0 0 4px;
  padding-left: 18px;
  font-size: 14px;
  color: #4b5563;
}

/* Buttons (match hero theme) */
.btn-ngo-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

.btn-ngo-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

.btn-outline-ngo-primary {
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #c7d2fe;
  color: #1d4ed8;
}

.btn-outline-ngo-primary:hover {
  background: #e0ebff;
  border-color: #93c5fd;
  color: #1d4ed8;
}

/* Contact line */
.ngo-contact {
  font-size: 14px;
  color: #374151;
}

.ngo-contact .contact-label {
  font-weight: 500;
  margin-right: 8px;
}

.ngo-contact .contact-number {
  font-weight: 500;
}

.ngo-contact .contact-separator {
  margin: 0 8px;
  color: #9ca3af;
}

/* Right image card */
.about-ngo-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-ngo-section {
    padding: 48px 0 56px;
  }

  .ngo-hindi {
    font-size: 18px;
  }

  .ngo-english {
    font-size: 16px;
  }

  .about-ngo-heading {
    font-size: 24px;
    margin-top: 8px;
  }

  .about-ngo-image img {
    margin-top: 12px;
  }
}

/* ========== HOME GALLERY SECTION ========== */

.home-gallery-section {
  padding: 64px 0 80px;
  
}

.home-gallery-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.home-gallery-subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Filter buttons */
.gallery-filters .gallery-filter-btn {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 6px 14px;
  font-size: 13px;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.gallery-filters .gallery-filter-btn:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.gallery-filters .gallery-filter-btn.active {
  background: #4c1d95;     /* theme purple / primary */
  border-color: #4c1d95;
  color: #ffffff;
}

/* Gallery cards */
.home-gallery-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-gallery-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.home-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

/* Hide items when filtered */
.home-gallery-item-wrapper.d-none {
  display: none !important;
}

@media (max-width: 767.98px) {
  .home-gallery-card img {
    height: 150px;
  }
}

/* ========== HOME VOLUNTEER SECTION ========== */

.home-volunteer-section {
  padding: 64px 0 80px;
  background: #f3f4ff;  /* light theme background */
}

.home-volunteer-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.home-volunteer-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.home-volunteer-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.home-volunteer-text {
  font-size: 14px;
  color: #4b5563;
}

/* Inputs */
.home-volunteer-form-card .form-control,
.home-volunteer-form-card .form-select {
  font-size: 14px;
  border-radius: 12px;
  border-color: #e5e7eb;
}

.home-volunteer-form-card .form-control:focus,
.home-volunteer-form-card .form-select:focus {
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.35);
  border-color: #4f46e5;
}

.home-volunteer-agree {
  font-size: 13px;
  color: #4b5563;
}

.home-volunteer-call {
  font-size: 13px;
  color: #374151;
}

/* Responsive */
@media (max-width: 991.98px) {
  .home-volunteer-section {
    padding: 48px 0 56px;
  }

  .home-volunteer-form-card {
    margin-top: 4px;
  }
}

/* TOP HEADING */
.volunteer-section-heading h2 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.volunteer-section-heading p {
  font-size: 14px;
  color: #4b5563;
}

/* Make columns same height */
.home-volunteer-section .row.align-items-stretch {
  align-items: stretch;
}

/* Image full height like form */
.home-volunteer-image-wrapper,
.home-volunteer-image {
  height: 100%;
}

.home-volunteer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* (keep your existing .home-volunteer-form-card styles as they are) */

@media (max-width: 991.98px) {
  .volunteer-section-heading h2 {
    font-size: 22px;
  }

  /* On mobile, image height thodi kam kar do */
  .home-volunteer-image img {
    height: auto;
  }
}



/* ========== TESTIMONIALS SECTION ========== */

.home-testimonials-section {
  padding: 64px 0 80px;
  
}

.home-test-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.home-test-subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Cards */
.home-test-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  height: 100%;
}

.home-test-quote {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 40px;
  line-height: 1;
  color: #c4b5fd; /* soft purple */
  font-weight: 700;
}

.home-test-text {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #374151;
}

/* User info */
.home-test-user {
  gap: 10px;
}

.home-test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  background: #4c1d95; /* theme primary */
}

.home-test-user h6 {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .home-testimonials-section {
    padding: 48px 0 56px;
  }
}



/* ========== FOOTER ========== */

.site-footer {
  background: #111827;            /* very dark navy */ 
  color: #e5e7eb;
  padding: 40px 0 24px;
  margin-top: 40px;
}

.footer-top {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  padding-bottom: 16px;
}

/* Brand block */
.footer-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4c1d95, #6366f1);
}

.footer-hindi {
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
}

.footer-english {
  font-size: 14px;
  color: #e5e7eb;
}

.footer-small {
  font-size: 11px;
  color: #9ca3af;
}

.footer-about-text {
  font-size: 13px;
  color: #cbd5f5;
  margin-bottom: 12px;
}

/* Social icons */
.footer-social-label {
  font-size: 13px;
  color: #c7d2fe;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.12);
  color: #e5e7eb;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.footer-social a:hover {
  background: #4c1d95;
  transform: translateY(-1px);
}

/* Headings + links */
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 13px;
  color: #cbd5f5;
}

.footer-contact li {
  margin-bottom: 6px;
}

.footer-contact-label {
  display: inline-block;
  width: 60px;
  color: #e5e7eb;
  font-weight: 500;
}

.footer-contact a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* CTA button */
.footer-cta-btn {
  margin-top: 4px;
  font-size: 13px;
  padding: 8px 18px;
}

/* Bottom bar */
.footer-bottom-text {
  font-size: 12px;
  color: #9ca3af;
}

.footer-bottom-text a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-bottom-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 32px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* ========== ABOUT PAGE ========== */

.page-hero-about {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

.page-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #c4b5fd;
}

.page-hero-title {
  font-size: 26px;
  font-weight: 700;
}

.page-hero-subtitle {
  font-size: 14px;
}

.page-hero-breadcrumb {
  font-size: 12px;
}

.page-hero-breadcrumb a {
  color: #e5e7eb;
  text-decoration: none;
}
.page-hero-breadcrumb a:hover {
  color: #ffffff;
}

/* generic page section */
.page-section {
  padding: 56px 0;
}

.page-section-alt {
  background: #f9fafb;
}

.page-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.page-section-lead {
  font-size: 14px;
  color: #4b5563;
}

/* simple bullets */
.simple-bullet-list {
  padding-left: 16px;
  font-size: 14px;
  color: #374151;
}
.simple-bullet-list li {
  margin-bottom: 4px;
}

/* image card */
.page-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}
.page-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* what we do cards */
.what-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.what-card h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.what-card p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 0;
}

/* journey timeline */
.journey-timeline {
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-left: 2px solid #e5e7eb;
}
.journey-timeline li {
  position: relative;
  padding-left: 18px;
  padding-bottom: 14px;
}
.journey-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4c1d95;
}
.jt-year {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}
.jt-body h6 {
  font-size: 14px;
  margin-bottom: 2px;
}
.jt-body p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 0;
}

/* director desk */
.director-photo-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}
.director-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* team cards */
.team-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 12px 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  height: 100%;
}
.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4c1d95, #6366f1);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
}
.team-role {
  font-size: 12px;
  color: #6b7280;
}
.team-meta {
  font-size: 11px;
}

@media (max-width: 767.98px) {
  .page-hero-about {
    padding: 32px 0 20px;
  }
  .page-section {
    padding: 40px 0;
  }
}


/* ========== AWARDS PAGE ========== */

/* hero same style as about, bas thoda alag text */
.page-hero-awards {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

/* Award cards */
.award-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  height: 100%;
}

.award-ribbon {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #4c1d95;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

.award-text {
  font-size: 13px;
  color: #4b5563;
}

.award-meta {
  color: #6b7280;
}

/* Achievements (stats) */
.achievement-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  height: 100%;
}

.ach-number {
  font-size: 20px;
  font-weight: 700;
  color: #4c1d95;
}

.ach-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.ach-note {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 0;
}

/* Registrations box */
.reg-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* Certificates gallery */
.cert-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 8px 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.cert-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 6px;
}

.cert-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.cert-caption {
  color: #4b5563;
}

@media (max-width: 767.98px) {
  .page-hero-awards {
    padding: 32px 0 20px;
  }
}


/* ========== COURSES PAGE ========== */

.page-hero-courses {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

/* Course cards */
.course-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  height: 100%;
}

.course-label {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(129, 140, 248, 0.12);
  color: #4c1d95;
  margin-bottom: 6px;
}

.course-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.course-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.course-points {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.course-points li {
  margin-bottom: 2px;
}

/* Steps */
.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 12px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  text-align: center;
  height: 100%;
}

.step-number {
  width: 30px;
  height: 30px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: #4c1d95;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reuse reg-card from awards page for CSR section – already defined */


/* ========== PROJECTS PAGE ========== */

.page-hero-projects {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

/* Project cards */
.project-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 14px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  height: 100%;
}

.project-status {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  color: #ffffff;
}

.project-status-ongoing {
  background: #16a34a;
}

.project-status-upcoming {
  background: #ea580c;
}

.project-status-completed {
  background: #4b5563;
}

.project-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.project-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.project-meta {
  list-style: none;
  padding-left: 0;
  margin: 0 0 6px;
  font-size: 12px;
  color: #6b7280;
}
.project-meta li {
  margin-bottom: 2px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.project-tags span {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.12);
  color: #4c1d95;
}

/* Year cards */
.project-year-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 12px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  height: 100%;
}

.project-year {
  font-size: 14px;
  font-weight: 700;
  color: #4c1d95;
  margin-bottom: 2px;
}

.project-year-text {
  font-size: 13px;
  color: #4b5563;
}

.project-year-meta {
  color: #6b7280;
}

@media (max-width: 767.98px) {
  .page-hero-projects {
    padding: 32px 0 20px;
  }
}


/* ========== VOLUNTEER PAGES ========== */

.page-hero-volunteer {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

/* Summary cards */
.vol-summary-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  text-align: center;
  height: 100%;
}

.vol-summary-number {
  font-size: 20px;
  font-weight: 700;
  color: #4c1d95;
}

.vol-summary-label {
  font-size: 12px;
  color: #4b5563;
}

/* Table card */
.vol-table-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.table-volunteers thead {
  background: #f3f4ff;
}

.table-volunteers thead th {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  border-bottom-width: 1px;
}

.table-volunteers tbody td {
  font-size: 13px;
  color: #374151;
}

/* Volunteer status badges */
.badge-vol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
}

.badge-vol-active {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.badge-vol-pause {
  background: rgba(234, 179, 8, 0.14);
  color: #92400e;
}

.badge-vol-inactive {
  background: rgba(148, 163, 184, 0.18);
  color: #4b5563;
}

.vol-search-input {
  min-width: 220px;
}

/* Registration card (dedicated page) */
.vol-register-card {
  max-width: 840px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 24px 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

/* Reuse volunteer form input styles (if not already) */
.vol-register-card .form-control,
.vol-register-card .form-select {
  font-size: 14px;
  border-radius: 12px;
  border-color: #e5e7eb;
}

.vol-register-card .form-control:focus,
.vol-register-card .form-select:focus {
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.35);
  border-color: #4f46e5;
}

@media (max-width: 767.98px) {
  .page-hero-volunteer {
    padding: 32px 0 20px;
  }

  .vol-register-card {
    padding: 18px 16px 20px;
  }

  .vol-search-input {
    min-width: 100%;
  }
}


/* ========== BENEFICIARY PAGE ========== */

.page-hero-beneficiary {
  padding: 48px 0 32px;
  background: linear-gradient(135deg, #111827, #4c1d95);
  color: #f9fafb;
  border-bottom: 1px solid #020617;
}

/* Year tabs */
.benef-year-tabs .btn-year-tab {
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 13px;
  padding: 4px 14px;
  color: #4b5563;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.benef-year-tabs .btn-year-tab:hover {
  background: #eef2ff;
  border-color: #4c1d95;
  color: #111827;
}

.benef-year-tabs .btn-year-tab.active {
  background: #4c1d95;
  border-color: #4c1d95;
  color: #ffffff;
}

/* PDF card */
.beneficiary-pdf-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.beneficiary-pdf-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-bottom: 8px;
}

/* iframe viewer */
.beneficiary-pdf-frame {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block;
}

.beneficiary-pdf-note {
  font-size: 11px;
}

/* empty state */
.beneficiary-pdf-empty {
  padding: 18px 14px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px dashed #cbd5f5;
  font-size: 13px;
  color: #4b5563;
}

@media (max-width: 767.98px) {
  .page-hero-beneficiary {
    padding: 32px 0 20px;
  }

  .beneficiary-pdf-frame {
    min-height: 360px;
  }
}
