/* ============================================================
   Dr. Suraj Prakash Jeevan Das Memorial Society
   Premium NGO Homepage — Refined Design System
   ============================================================ */

:root {
  --navy: #12297F;
  --sky-blue: #2299E2;
  --primary-blue: #12297F;
  --primary-green: #0A9C39;
  --accent-green: #8CC63F;
  --accent-yellow: #F6B10A;
  --bg-white: #FFFFFF;
  --light-blue: #EDF6FD;
  --light-green: #F4FAEE;
  --section-bg: #F9FBFD;
  --text-dark: #2A2A2A;
  --text-muted: #5A6474;
  --text-light: #8A94A6;
  --navy-rgb: 18, 41, 127;
  --green-rgb: 10, 156, 57;
  --border-light: rgba(var(--navy-rgb), 0.1);
  --shadow-sm: 0 4px 20px rgba(var(--navy-rgb), 0.06);
  --shadow-md: 0 8px 32px rgba(var(--navy-rgb), 0.1);
  --shadow-lg: 0 16px 48px rgba(var(--navy-rgb), 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-tagline: 'Montserrat', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 158px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

main {
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
  padding: 0px;
}

.container {
  overflow-x: clip;
}

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-family: var(--font-tagline);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-tagline);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title-lg {
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-intro {
  margin-bottom: 3.5rem;
}

/* --- Buttons --- */
.btn-primary-custom,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary-custom {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--navy-rgb), 0.22);
}

.btn-primary-custom:hover {
  background: #0e2060;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--navy-rgb), 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline-custom:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: var(--primary-green);
  box-shadow: 0 4px 20px rgba(var(--green-rgb), 0.3);
}

.btn-hero-primary:hover {
  background: #088230;
}

.btn-hero-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-hero-outline:hover {
  background: #fff;
  color: var(--primary-blue);
  border-color: #fff;
}

/* ============================================================
   HEADER — top bar + branded main nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--border-light);
  transition: box-shadow 0.35s ease;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.site-header.header-visible {
  box-shadow: var(--shadow-sm);
}

/* Top credentials bar */
.header-top-bar {
  background: var(--light-green);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.15);
  padding: 0.4rem 0;
  overflow-x: clip;
}

.header-top-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-align: center;
}

.header-top-row {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-dark);
  width: 100%;
  max-width: 100%;
  word-break: break-word;
}

.header-top-governance {
  font-weight: 600;
  color: var(--primary-blue);
}

.header-top-sep {
  color: var(--primary-green);
  font-style: normal;
  font-weight: 600;
  opacity: 0.65;
  margin: 0 0.15rem;
}

@media (min-width: 992px) {
  .header-top-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
  }

  .header-top-governance::before {
    content: '|';
    margin-right: 0.5rem;
    color: var(--primary-green);
    font-style: normal;
    font-weight: 600;
    opacity: 0.65;
  }
}

/* Main header */
.header-main {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(var(--navy-rgb), 0.04);
  padding: 0.5rem 0;
}

.header-container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.75rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 52px);
  text-decoration: none;
  color: inherit;
}

.header-brand:focus,
.header-brand:focus-visible {
  outline: none;
  box-shadow: none;
}

.brand-logo {
  height: 72px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.header-brand-text {
  min-width: 0;
  line-height: 1.35;
}

.brand-taglines {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.1rem 0.35rem;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.brand-tagline-en {
  font-family: var(--font-tagline);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5cb5de;
}

.brand-tagline-hi {
  font-family: var(--font-hindi);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  opacity: 0.92;
}

.brand-mission {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
  line-height: 1.4;
  white-space: nowrap;
}

.brand-org-name {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

/* Menu toggle — mobile only */
.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  background: #fff;
  color: var(--primary-blue);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.header-menu-toggle:hover {
  background: var(--light-blue);
}

.header-menu-toggle:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
  box-shadow: none;
}

.header-menu-toggle .icon-open,
.header-menu-toggle .icon-close {
  font-size: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.header-menu-toggle .icon-close {
  display: none;
}

.header-menu-toggle[aria-expanded="true"] {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.header-menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.header-menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Navigation panel */
.header-nav {
  flex: 0 0 100%;
  width: 100%;
}

.header-nav-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav-link {
  display: block;
  padding: 0.8rem 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition), background var(--transition);
}

.header-nav-link:hover {
  color: var(--primary-blue);
}

.header-nav-link.active {
  color: var(--primary-blue);
  font-weight: 600;
  border-left: 3px solid var(--primary-green);
  padding-left: 0.75rem;
}

.header-nav-cta {
  display: flex;
  margin-top: 0.875rem;
  width: 100%;
  justify-content: center;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary-green);
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(var(--green-rgb), 0.3);
  white-space: nowrap;
  text-decoration: none;
}

.btn-support:hover {
  background: #088230;
  color: #fff;
  transform: translateY(-2px);
}

/* Desktop header layout */
@media (min-width: 992px) {
  .header-main {
    padding: 0.65rem 0;
  }

  .header-container {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }

  .header-row {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .header-brand {
    flex: 0 1 auto;
    max-width: 46%;
  }

  .brand-logo {
    height: 88px;
  }

  .brand-tagline-en {
    font-size: 1.0625rem;
  }

  .brand-tagline-hi {
    font-size: 0.9375rem;
  }

  .brand-mission {
    font-size: 0.75rem;
  }

  .brand-org-name {
    font-size: 0.9375rem;
  }

  .header-menu-toggle {
    display: none;
  }

  .header-nav.collapse,
  .header-nav.collapsing {
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    height: auto !important;
    visibility: visible !important;
  }

  .header-nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .header-nav-link {
    padding: 0.4rem 0.65rem;
    font-size: 0.8125rem;
    border-bottom: none;
    position: relative;
    white-space: nowrap;
  }

  .header-nav-link.active {
    border-left: none;
    padding-left: 0.65rem;
  }

  .header-nav-link::after {
    content: '';
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
  }

  .header-nav-link:hover::after,
  .header-nav-link.active::after {
    transform: scaleX(1);
  }

  .header-nav-cta {
    margin-top: 0;
    width: auto;
  }

  .btn-support {
    padding: 0.55rem 1.25rem;
    font-size: 0.8125rem;
    margin-left: 0.25rem;
  }
}

/* Mobile open menu panel */
@media (max-width: 991.98px) {
  .header-menu-toggle {
    margin-left: auto;
  }

  .header-nav.collapse:not(.show) {
    display: none;
  }

  .header-nav.collapse.show {
    display: block;
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border-light);
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ============================================================
   HERO — Full-width with overlay
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.48);
}

.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-tagline);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}

.hero-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-green));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.hero-mission {
  font-size: 1.0625rem;
  line-height: 1.85;
  opacity: 0.9;
  margin-bottom: 2.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 2rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  flex: 1;
  min-width: 160px;
}

.trust-strip-item:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
}

.trust-strip-item i {
  font-size: 1.375rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.trust-strip-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
}

.trust-strip-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-strip-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--section-bg);
  overflow-x: clip;
}
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .impact-section {
    padding: 40px 0;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .impact-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin: 0 auto;
  }

  .impact-note {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .impact-section .impact-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .impact-section {
    padding: 24px 0;
  }
}

.about-collage {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.collage-frame {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.collage-frame:hover {
  transform: scale(1.02);
}

.collage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-frame-main {
  width: 62%;
  height: 78%;
  top: 8%;
  left: 0;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  z-index: 2;
}

.collage-frame-top {
  width: 42%;
  height: 38%;
  top: 0;
  right: 0;
  border-radius: var(--radius-md);
  border: 4px solid #fff;
  z-index: 3;
}

.collage-frame-bottom {
  width: 48%;
  height: 42%;
  bottom: 0;
  right: 8%;
  border-radius: var(--radius-md) var(--radius-lg) var(--radius-lg) var(--radius-sm);
  border: 4px solid #fff;
  z-index: 4;
}

.collage-vertical-badge {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  z-index: 5;
  background: var(--primary-blue);
  color: #fff;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 72px;
}

.badge-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.badge-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
  font-size: 15px;
}
.about-para {
   color: var(--text-muted);
  margin-bottom: 1rem;
  margin-top: -10px;
  line-height: 1.85;
  font-size: 15px;
}

.highlight-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.highlight-box:hover {
  border-color: var(--primary-green);
  transform: translateX(4px);
}

.highlight-box i {
  font-size: 1.25rem;
  color: var(--primary-green);
}

.highlight-box span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.impact-card {
  text-align: center;
  padding: 2.25rem 1.25rem;
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
  background: #fff;
}

.impact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 14px;
  transition: all var(--transition);
}

.impact-card:hover .impact-icon {
  background: var(--primary-blue);
}

.impact-icon i {
  font-size: 1.375rem;
  color: var(--primary-blue);
  transition: color var(--transition);
}

.impact-card:hover .impact-icon i {
  color: #fff;
}

.impact-number {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.impact-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

.impact-note {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================================
   PROGRAMS — Three-column card grid
   ============================================================ */
.programs-section {
  padding: 100px 0;
  background: var(--section-bg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
}

.program-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.program-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-card-media img {
  transform: scale(1.05);
}

.program-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.375rem 1.375rem 1.5rem;
}

.program-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.program-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card-icon i {
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.program-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.35;
  margin: 0;
  padding-top: 0.35rem;
}

.program-card-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.program-highlights {
  margin-bottom: 0;
}

.program-highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.program-highlights li:last-child {
  margin-bottom: 0;
}

.program-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.75rem;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap var(--transition), color var(--transition);
  margin-top: 1rem;
}

.program-link:hover {
  color: var(--primary-green);
  gap: 0.65rem;
}

@media (max-width: 1199px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid .program-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .programs-grid .program-card:last-child {
    max-width: none;
  }

  .program-card-media {
    aspect-ratio: 16 / 9;
  }

  .program-card-body {
    padding: 1.25rem 1.25rem 1.375rem;
  }
}

/* ============================================================
   WHY PREVENTIVE HEALTHCARE
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--section-bg);
  overflow-x: clip;
}

.why-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.why-text-lg {
  font-size: 1.0625rem;
}

.why-list {
  margin: 1.5rem 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.why-list li i {
  color: var(--primary-green);
  font-size: 1.125rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-closing {
  font-size: 1.125rem;
  font-weight: 600;
  font-style: italic;
  color: var(--primary-blue);
  margin: 1.75rem 0;
  line-height: 1.6;
}

.stat-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  padding: 2.25rem 2.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.stat-card-primary {
  background: #fff;
  border-left: 5px solid var(--primary-blue);
}

.stat-card-secondary {
  background: #fff;
  border-left: 5px solid var(--sky-blue);
  margin-left: 1.5rem;
}

.stat-card-tertiary {
  background: var(--light-green);
  border-left: 5px solid var(--primary-green);
}

.stat-value {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1;
  margin-bottom: 0.625rem;
}

.stat-value-text {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--primary-blue);
}

.stat-card-tertiary .stat-value {
  color: var(--primary-blue);
}

.stat-unit {
  font-size: 0.6em;
}

.stat-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 0.375rem;
}

.stat-source {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership-section {
  padding: 100px 0;
  background: var(--section-bg);
  overflow-x: clip;
}

.leadership-section .section-intro {
  margin-bottom: 0.5rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 5.5rem;
  padding-top: 4rem;
  align-items: stretch;
}

.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: visible;
  transition: all var(--transition);
  text-align: center;
  padding-top: 4.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.leader-card-president {
  padding-top: 4.75rem;
}

.leader-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.leader-card-president .leader-photo {
  width: 120px;
  height: 120px;
  border-color: #fff;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.leader-photo-placeholder span {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.leader-info {
  padding: 0 1.75rem 2rem;
  position: relative;
  z-index: 1;
}

.leader-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.leader-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.375rem;
}

.leader-info h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.625rem;
}

.leader-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   GALLERY — Swiper
   ============================================================ */
.gallery-section {
  padding: 50px 0;
  background: var(--bg-white);
  overflow-x: clip;
}

.gallery-swiper-wrap {
  position: relative;
  padding: 0 3.5rem;
  overflow: hidden;
}

.gallery-swiper {
  overflow: hidden;
  padding: 0.5rem 0 2.5rem;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  background: var(--section-bg);
}

.gallery-lightbox {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  position: relative;
}

.gallery-lightbox::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.18);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-slide:hover .gallery-lightbox::after {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border-light);
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--primary-blue);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   CTA — Full-width background
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.72);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-tagline);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-inner p {
  font-size: 1.0625rem;
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--section-bg);
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.375rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--section-bg);
  transition: all var(--transition);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--navy-rgb), 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-green);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon i {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.contact-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-card a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--primary-green);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  filter: grayscale(20%);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 1.125rem;
  color: var(--primary-blue);
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.contact-page-section .section-intro {
  margin-bottom: 1.75rem;
}



.contact-map-intro iframe {
  height: 320px;
}

.contact-page-row {
  margin-top: 0;
}

.contact-social-block {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-social-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.875rem;
}

.contact-social-block .contact-social {
  margin-top: 0;
}

.contact-form .btn-primary-custom {
  width: 100%;
}

@media (min-width: 576px) {
  .contact-form .btn-primary-custom {
    width: auto;
  }
}

@media (max-width: 767px) {
  .contact-map-intro {
    margin-bottom: 2rem;
  }

  .contact-map-intro iframe {
    height: 240px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: white;
  color: rgba(0, 0, 0, 0.85);
  padding: 80px 0 0;
}

.footer-columns {
  padding-bottom: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-tagline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #5cb5db;
}

.footer-hindi {
  font-family: var(--font-hindi);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 1rem;
  color: #000000;
}

.footer-about {
  font-size: 0.8125rem;
  line-height: 1.7;
  opacity: 0.75;
  color: #000000;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 12px;
  opacity: 1;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-green);
  padding-left: 4px;
}

.footer-legal p {
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
}

.footer-contact-list i {
  color: var(--primary-green);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  opacity: 1;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 8%);
  border-radius: 50%;
  transition: all var(--transition);
  color: black;
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.footer-values {
  font-size: 0.75rem !important;
  opacity: 0.5 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip-divider {
    display: none;
  }

  .trust-strip-inner {
    justify-content: center;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .brand-logo {
    height: 76px;
  }

  .brand-tagline-en {
    font-size: 0.9375rem;
  }

  .brand-tagline-hi {
    font-size: 0.8125rem;
  }

  .brand-mission {
    font-size: 0.6875rem;
  }

  .header-nav-link {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }
}

@media (max-width: 991.98px) {
  .header-top-row {
    font-size: 0.75rem;
  }

  .brand-logo {
    height: 56px;
  }

  .header-brand-text {
    overflow: hidden;
    min-width: 0;
  }

  .brand-tagline-en,
  .brand-tagline-hi {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mission,
  .brand-org-name {
    display: none;
  }

  .stat-card-secondary {
    margin-left: 0;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 5rem;
    padding-top: 3.5rem;
  }

  .cta-bg {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: var(--header-height);
  }

  .brand-logo {
    height: 52px;
  }

  .brand-taglines {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
  }

  .hero-section {
    min-height: calc(100vh - var(--header-height));
  }

  .hero-container {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions a {
    width: 100%;
    max-width: 280px;
  }

  .about-collage {
    height: 380px;
    margin-bottom: 1rem;
  }

  .collage-vertical-badge {
    left: 0;
    padding: 1rem 0.75rem;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-boxes {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    padding-top: 3.5rem;
    row-gap: 4.5rem;
  }

  .gallery-swiper-wrap {
    padding: 0 2.75rem;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .trust-strip-item {
    min-width: 140px;
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .header-top-row {
    font-size: 0.6875rem;
  }

  .header-brand-text {
    display: none;
  }

  .header-brand {
    max-width: calc(100% - 56px);
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.58);
}

.page-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page-hero-content {
  max-width: 680px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.page-hero-content .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-title {
  font-family: var(--font-tagline);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-hero-tagline {
  font-family: var(--font);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.5;
}

.about-page-story {
  padding: 90px 0;
  background: var(--bg-white);
}

.about-page-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.about-page-mvv {
  padding: 90px 0;
  background: var(--section-bg);
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-mvv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.about-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-mvv-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about-mvv-icon i {
  font-size: 1.375rem;
  color: var(--primary-blue);
}

.about-mvv-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.about-mvv-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.about-page-work {
  padding: 90px 0;
  background: var(--bg-white);
}

.about-work-list {
  margin-top: 1.25rem;
}

.about-work-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.about-work-list li i {
  color: var(--primary-green);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-work-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-stat-item {
  background: var(--section-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.about-stat-item strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.about-stat-item span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.about-page-cta {
  padding: 0 0 90px;
  background: var(--bg-white);
}

.about-cta-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2a5fad 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.about-cta-box h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.about-cta-box p {
  font-size: 1rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.about-cta-actions .btn-outline-custom {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.about-cta-actions .btn-outline-custom:hover {
  background: #fff;
  color: var(--primary-blue);
  border-color: #fff;
}

@media (max-width: 991.98px) {
  .about-mvv-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .page-hero {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .about-page-story,
  .about-page-mvv,
  .about-page-work {
    padding: 70px 0;
  }

  .about-page-cta {
    padding-bottom: 70px;
  }

  .about-cta-box {
    padding: 2.25rem 1.5rem;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-actions a {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   SUPPORT / DONATE PAGE
   ============================================================ */
.support-tiers-section {
  padding: 90px 0;
  background: var(--section-bg);
}

.support-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.support-tier-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.support-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.support-tier-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.support-tier-icon i {
  font-size: 1.375rem;
  color: var(--primary-blue);
}

.support-tier-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.support-tier-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.support-donate-section {
  padding: 90px 0;
  background: var(--bg-white);
}

.support-upi-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.support-qr-wrap {
  max-width: 280px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fff;
}

.support-qr-img {
  width: 100%;
  height: auto;
  display: block;
}

.support-qr-caption {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
}

.support-upi-id-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.support-upi-id {
  flex: 1;
  text-align: left;
  padding: 0.875rem 1rem;
  background: var(--section-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.support-upi-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.support-upi-id strong {
  font-size: 0.9375rem;
  color: var(--primary-blue);
  word-break: break-all;
}

.support-copy-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.5rem 0.875rem;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--primary-blue);
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.support-copy-btn i {
  font-size: 1.125rem;
}

.support-copy-btn:hover {
  background: var(--primary-blue);
  color: #fff;
}

.support-copy-btn.copied {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

.support-upi-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.support-upi-note i {
  color: var(--primary-green);
  margin-right: 0.25rem;
}

.support-bank-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.support-bank-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.support-bank-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.support-bank-details {
  margin: 0 0 1.25rem;
}

.support-bank-row {
  display: grid;
  grid-template-columns: minmax(110px, 130px) 1fr;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.support-bank-row:last-child {
  border-bottom: none;
}

.support-bank-row dt {
  font-weight: 600;
  color: var(--text-muted);
}

.support-bank-row dd {
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
  word-break: break-word;
}

.support-bank-row dd a {
  color: var(--primary-blue);
  font-weight: 600;
}

.support-bank-row dd a:hover {
  color: var(--primary-green);
}

.support-bank-mono {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  letter-spacing: 0.03em;
}

.support-bank-row-copy dd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.support-inline-copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--section-bg);
  color: var(--primary-blue);
  cursor: pointer;
  transition: all var(--transition);
}

.support-inline-copy:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
}

.support-inline-copy.copied {
  background: var(--light-green);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.support-bank-help {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.support-bank-help a {
  color: var(--primary-blue);
  font-weight: 600;
}

.support-bank-help a:hover {
  color: var(--primary-green);
}

.support-contact-btn {
  width: 100%;
  justify-content: center;
}

.support-tax-note {
  display: flex;
  gap: 0.75rem;
  padding: 1.125rem 1.25rem;
  background: var(--light-green);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--green-rgb), 0.25);
}

.support-tax-note i {
  color: var(--primary-green);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.support-tax-note p {
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.header-nav-cta-active {
  background: #088230 !important;
  box-shadow: 0 4px 14px rgba(var(--green-rgb), 0.45) !important;
}

@media (max-width: 991.98px) {
  .support-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .support-tiers-section,
  .support-donate-section {
    padding: 70px 0;
  }

  .support-bank-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .support-upi-id-row {
    flex-direction: column;
  }

  .support-copy-btn {
    flex-direction: row;
    padding: 0.65rem 1rem;
  }
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leadership-page {
  padding: 90px 0 100px;
  background: var(--section-bg);
  overflow-x: clip;
}

.leadership-page .section-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

/* Featured president */
.lp-featured {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2.5rem 2.5rem 2.75rem;
  margin: 0 auto 4rem;
  max-width: 900px;
  position: relative;
  transition: box-shadow var(--transition);
  overflow: hidden;
}

.lp-featured::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-green));
}

.lp-featured:hover {
  box-shadow: var(--shadow-md);
}

.lp-featured-photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-blue);
  background: var(--section-bg);
}

.lp-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-featured-content {
  flex: 1;
  min-width: 0;
}

.lp-featured .lp-name {
  font-size: 1.625rem;
}

.lp-featured .lp-bio {
  font-size: 0.9375rem;
  max-width: 480px;
}

/* Group sections */
.lp-group {
  margin-bottom: 3.5rem;
}

.lp-group:last-child {
  margin-bottom: 0;
}

.lp-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.lp-group-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-green);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Card grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.lp-card-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 2px solid var(--light-blue);
  background: var(--section-bg);
}

.lp-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
}

.lp-card-photo-placeholder span {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.02em;
}

.lp-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Shared typography */
.lp-role {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.lp-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .why-section {
    padding: 40px 0;
  }
}
.lp-bio {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.leadership-home-link {
  margin-top: 1.25rem;
  display: inline-flex;
}

.programs-home-link {
  margin-top: 1.25rem;
  display: inline-flex;
}

@media (max-width: 991px) {
  .lp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-featured {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .leadership-page {
    padding: 60px 0 80px;
  }

  .lp-featured {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .lp-featured-photo {
    width: 160px;
    height: 160px;
  }

  .lp-featured .lp-bio {
    max-width: none;
  }

  .lp-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ============================================================
   CERTIFICATES
   ============================================================ */
.certificates-section {
  padding: 90px 0;
  background: var(--bg-white);
  overflow-x: clip;
}

.certificates-section-compact {
  padding: 80px 0;
  background: var(--section-bg);
}

.certificates-section .section-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cert-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.certificates-section-compact .cert-card {
  background: #fff;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.cert-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cert-card-icon i {
  font-size: 1.375rem;
  color: var(--primary-blue);
}

.cert-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.625rem;
}

.cert-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}

.cert-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: auto;
}

.cert-card-link i {
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.cert-card-link:hover {
  color: var(--primary-blue);
}

.cert-card-link:hover i {
  transform: translate(2px, -2px);
}

.trust-strip-link {
  text-decoration: none;
  color: inherit;
}

.trust-strip-cert-note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
}

.trust-strip-cert-note a {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
}

.trust-strip-cert-note a:hover {
  color: var(--primary-green);
}

.footer-cert-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-cert-link:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ============================================================
   PROGRAMS PAGE
   ============================================================ */
.program-detail {
  padding: 80px 0;
  background: var(--bg-white);
  overflow-x: clip;
}

.program-detail-first {
  padding-top: 90px;
}

.program-detail-alt {
  background: var(--section-bg);
}

.program-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.program-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail-icon {
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.program-detail-icon i {
  font-size: 1.375rem;
  color: var(--primary-blue);
}

.program-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.program-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.program-detail-meta i {
  color: var(--primary-green);
}

.programs-page-why {
  padding: 90px 0;
  background: var(--section-bg);
  overflow-x: clip;
}

.programs-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.programs-stat-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.programs-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.programs-stat-card strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.programs-stat-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .program-detail-first {
    padding-top: 60px;
  }

  .program-detail {
    padding: 60px 0;
  }

  .programs-stats-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}
.dnrImp-section {
  background: linear-gradient(180deg, #eef3fa 0%, #f8fafc 40%, #ffffff 100%);
  padding: 0 0 5rem;
  margin-top: -2rem;
  position: relative;
}

.dnrImp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(18, 41, 127, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.dnrImp-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 0 0;
  font-family: var(--font);
  position: relative;
  z-index: 1;
}

.dnrImp-card {
  flex: 1;
  max-width: 760px;
  background: #fff;
  border: 1px solid rgba(18, 41, 127, 0.07);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem;
  box-shadow: 0 24px 64px rgba(18, 41, 127, 0.07);
  position: relative;
  overflow: hidden;
}

.dnrImp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky-blue), var(--primary-green));
}

.dnrImp-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dnrImp-header .section-label {
  margin-bottom: 0.75rem;
}

.dnrImp-title {
  font-family: var(--font-tagline);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.dnrImp-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
  margin-inline: auto;
}

.dnrImp-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.dnrImp-option {
  position: relative;
  border: 1.5px solid rgba(18, 41, 127, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fafbfd;
  min-height: 190px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.dnrImp-option:hover {
  border-color: rgba(18, 41, 127, 0.22);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  background: #fff;
}

.dnrImp-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dnrImp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c9d0e0;
  align-self: flex-end;
  margin-bottom: 0.75rem;
  position: relative;
  transition: border-color var(--transition);
}

.dnrImp-option:has(.dnrImp-radio:checked) {
  border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(18, 41, 127, 0.1);
  background: #fff;
  transform: translateY(-3px);
}

.dnrImp-option:has(.dnrImp-radio:checked)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--navy), var(--primary-green));
}

.dnrImp-option:has(.dnrImp-radio:checked) .dnrImp-check {
  border-color: var(--primary-green);
  background: var(--primary-green);
}

.dnrImp-option:has(.dnrImp-radio:checked) .dnrImp-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.dnrImp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(18, 41, 127, 0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.dnrImp-option:has(.dnrImp-radio:checked) .dnrImp-icon {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(18, 41, 127, 0.2);
}

.dnrImp-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}

.dnrImp-impact {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  line-height: 1.4;
  font-weight: 500;
}

.dnrImp-amount {
  font-family: var(--font-tagline);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
  margin-top: auto;
}

.dnrImp-option:has(.dnrImp-radio:checked) .dnrImp-amount {
  color: var(--primary-green);
}

.dnrImp-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(18, 41, 127, 0.07);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.dnrImp-optionCustom {
  justify-content: center;
}

.dnrImp-customField {
  display: flex;
  align-items: center;
  border: 2px solid rgba(18, 41, 127, 0.1);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  width: 100%;
  background: #fff;
  transition: border-color var(--transition);
}

.dnrImp-option:has(.dnrImp-radio:checked) .dnrImp-customField {
  border-color: var(--navy);
}

.dnrImp-customPrefix {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-right: 0.25rem;
}

.dnrImp-customInput {
  border: none;
  outline: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  width: 100%;
  min-width: 0;
  font-family: inherit;
  background: transparent;
  -moz-appearance: textfield;
}

.dnrImp-customInput::-webkit-outer-spin-button,
.dnrImp-customInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dnrImp-customInput::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.dnrImp-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1.75rem;
  padding: 0.6rem 1rem;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
}

.dnrImp-note i {
  color: var(--sky-blue);
  flex-shrink: 0;
}

.dnrImp-alert {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.dnrImp-alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.dnrImp-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.dnrImp-form-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 41, 127, 0.08);
}

.dnrImp-form-head h3 {
  font-family: var(--font-tagline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
}

.dnrImp-form-head h3 i {
  color: var(--sky-blue);
}

.dnrImp-form-head p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.dnrImp-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.dnrImp-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.dnrImp-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dnrImp-req {
  color: #e0464a;
}

.dnrImp-field input,
.dnrImp-field textarea {
  border: 2px solid rgba(18, 41, 127, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  background: #fafbfd;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.dnrImp-field input:focus,
.dnrImp-field textarea:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 41, 127, 0.08);
}

.dnrImp-field textarea {
  resize: vertical;
  min-height: 96px;
}

.dnrImp-row {
  display: flex;
  gap: 1rem;
}

.dnrImp-submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a9e 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(18, 41, 127, 0.25);
  margin-top: 0.25rem;
}

.dnrImp-submitBtn i {
  color: rgba(255, 255, 255, 0.9);
}

.dnrImp-submitBtn:hover {
  background: linear-gradient(135deg, #0b8a33 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 156, 57, 0.28);
}

.dnrImp-submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.dnrImp-pay-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.dnrImp-pay-note i {
  color: var(--primary-green);
}

.dnrImp-trustBox {
  width: 310px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(18, 41, 127, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  color: var(--text-dark);
  box-shadow: 0 20px 56px rgba(18, 41, 127, 0.07);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.dnrImp-trustHead {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(18, 41, 127, 0.08);
}

.dnrImp-trustTitle {
  font-family: var(--font-tagline);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.dnrImp-trustHead p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.dnrImp-trustItem {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.35rem;
}

.dnrImp-trustItem:last-of-type {
  margin-bottom: 0;
}

.dnrImp-trustIcon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.dnrImp-trustIconGreen {
  background: rgba(10, 156, 57, 0.1);
  color: var(--primary-green);
}

.dnrImp-trustIconBlue {
  background: rgba(34, 153, 226, 0.1);
  color: var(--sky-blue);
}

.dnrImp-trustIconGold {
  background: rgba(246, 177, 10, 0.12);
  color: #c8860a;
}

.dnrImp-trustText h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.dnrImp-trustText p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.dnrImp-trustFooter {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 41, 127, 0.08);
}

.dnrImp-trustStat {
  flex: 1;
  text-align: center;
  background: var(--light-blue);
  border-radius: 12px;
  padding: 0.875rem 0.5rem;
}

.dnrImp-trustStat strong {
  display: block;
  font-family: var(--font-tagline);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.dnrImp-trustStat span {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .dnrImp-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dnrImp-wrapper {
    flex-direction: column;
    padding-top: 1.5rem;
  }

  .dnrImp-card {
    max-width: none;
    padding: 2rem 1.5rem;
  }

  .dnrImp-trustBox {
    width: 100%;
    position: static;
  }
}

@media (max-width: 520px) {
  .dnrImp-options {
    grid-template-columns: 1fr;
  }

  .dnrImp-row {
    flex-direction: column;
  }
}
.evtCrsl-section {
  padding: 50px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
}

.evtCrsl-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1c1c28;
  margin: 0 0 32px;
}

.evtCrsl-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.evtCrsl-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1.5px solid #12297f;
  background: #ffffff;
  color: #12297f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.evtCrsl-arrow:hover {
  background: #12297f;
  color: #ffffff;
}

.evtCrsl-viewport {
  overflow: hidden;
  flex: 1;
  --evtCrsl-visible: 3;
}

.evtCrsl-track {
  display: flex;
  transition: transform 0.4s ease;
}

.evtCrsl-slide {
  flex: 0 0 calc(100% / var(--evtCrsl-visible));
  padding: 0 10px;
  box-sizing: border-box;
}

.evtCrsl-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.evtCrsl-img:hover {
  transform: scale(1.02);
}

.evtCrsl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.evtCrsl-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7d7e0;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.evtCrsl-dotActive {
  background: #1c1c68;
  width: 22px;
  border-radius: 5px;
}

.evtCrsl-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.evtCrsl-lightboxOpen {
  display: flex;
}

.evtCrsl-lightboxImg {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  object-fit: contain;
}

.evtCrsl-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  font-weight: 300;
}

@media (max-width: 900px) {
  .evtCrsl-viewport {
    --evtCrsl-visible: 2;
  }
}

@media (max-width: 560px) {
  .evtCrsl-viewport {
    --evtCrsl-visible: 1;
  }

  .evtCrsl-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .evtCrsl-img {
    height: 220px;
  }
}
.rear {
  color: #5cb5de;
  font-size: 14px;
  margin-top: -10px;
  font-weight: 600;
}
/* privacy and policy */
.spjd-priv-hero {
  background: #f7f9fc;
  padding: 90px 20px 60px;
  text-align: center;
}

.spjd-priv-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

.spjd-priv-eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: #1e2875;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.spjd-priv-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e2875;
  margin-bottom: 16px;
}

.spjd-priv-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 14px;
}

.spjd-priv-updated {
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
}

.spjd-priv-body {
  background: #ffffff;
  padding: 60px 20px 90px;
}

.spjd-priv-card {
  background: #f7f9fc;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  padding: 32px 34px;
  margin-bottom: 22px;
}

.spjd-priv-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.spjd-priv-card-head h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e2875;
  margin: 0;
}

.spjd-priv-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #dbeafe;
  color: #1e2875;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.spjd-priv-card p {
  color: #64748b;
  line-height: 1.75;
  font-size: 15.5px;
  margin: 0;
}

.spjd-priv-contact {
  text-align: center;
  background: #1e2875;
  border-radius: 20px;
  padding: 46px 34px;
  margin-top: 40px;
}

.spjd-priv-contact .spjd-priv-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin: 0 auto 18px;
}

.spjd-priv-contact h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.spjd-priv-contact p {
  color: #c7d0e8;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .spjd-priv-hero {
    padding: 70px 20px 45px;
  }

  .spjd-priv-title {
    font-size: 32px;
  }

  .spjd-priv-subtitle {
    font-size: 15.5px;
  }

  .spjd-priv-card {
    padding: 26px 22px;
  }

  .spjd-priv-card-head {
    gap: 12px;
  }

  .spjd-priv-card-head h2 {
    font-size: 18px;
  }

  .spjd-priv-contact {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .spjd-priv-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/*  terms and condition */
.spjd-terms-hero {
  background: #f7f9fc;
  padding: 90px 20px 60px;
  text-align: center;
}

.spjd-terms-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

.spjd-terms-eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: #1e2875;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.spjd-terms-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e2875;
  margin-bottom: 16px;
}

.spjd-terms-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 14px;
}

.spjd-terms-updated {
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
}

.spjd-terms-body {
  background: #ffffff;
  padding: 60px 20px 90px;
}

.spjd-terms-card {
  background: #f7f9fc;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  padding: 32px 34px;
  margin-bottom: 22px;
}

.spjd-terms-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.spjd-terms-card-head h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e2875;
  margin: 0;
}

.spjd-terms-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #dbeafe;
  color: #1e2875;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.spjd-terms-card p {
  color: #64748b;
  line-height: 1.75;
  font-size: 15.5px;
  margin: 0;
}

.spjd-terms-contact {
  text-align: center;
  background: #1e2875;
  border-radius: 20px;
  padding: 46px 34px;
  margin-top: 40px;
}

.spjd-terms-contact .spjd-terms-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin: 0 auto 18px;
}

.spjd-terms-contact h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.spjd-terms-contact p {
  color: #c7d0e8;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .spjd-terms-hero {
    padding: 70px 20px 45px;
  }

  .spjd-terms-title {
    font-size: 32px;
  }

  .spjd-terms-subtitle {
    font-size: 15.5px;
  }

  .spjd-terms-card {
    padding: 26px 22px;
  }

  .spjd-terms-card-head {
    gap: 12px;
  }

  .spjd-terms-card-head h2 {
    font-size: 18px;
  }

  .spjd-terms-contact {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .spjd-terms-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* certificates and registration */
.spjd-cert-hero {
  background: #f7f9fc;
  padding: 90px 20px 60px;
  text-align: center;
}

.spjd-cert-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

.spjd-cert-eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: #1e2875;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.spjd-cert-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e2875;
  margin-bottom: 16px;
}

.spjd-cert-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.spjd-cert-body {
  background: #ffffff;
  padding: 60px 20px 90px;
}

.spjd-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spjd-cert-card {
  background: #f7f9fc;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spjd-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 40, 117, 0.08);
}

.spjd-cert-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #dbeafe;
  color: #1e2875;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}

.spjd-cert-card h2 {
  font-size: 19px;
  font-weight: 700;
  color: #1e2875;
  margin-bottom: 10px;
}

.spjd-cert-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.spjd-cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e2875;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border-bottom: 2px solid #1e2875;
  align-self: flex-start;
  padding-bottom: 2px;
}

.spjd-cert-btn:hover {
  color: #141d5c;
  border-color: #141d5c;
}

.spjd-cert-note {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #1e2875;
  border-radius: 20px;
  padding: 30px 34px;
  margin-top: 44px;
}

.spjd-cert-note .spjd-cert-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin-bottom: 0;
}

.spjd-cert-note p {
  color: #c7d0e8;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .spjd-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .spjd-cert-hero {
    padding: 70px 20px 45px;
  }

  .spjd-cert-title {
    font-size: 32px;
  }

  .spjd-cert-subtitle {
    font-size: 15.5px;
  }

  .spjd-cert-grid {
    grid-template-columns: 1fr;
  }

  .spjd-cert-note {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}
/* Refund/Cancellation Policy */
.spjd-refund-hero {
  background: #f7f9fc;
  padding: 90px 20px 60px;
  text-align: center;
}

.spjd-refund-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 15px;
}

.spjd-refund-eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: #1e2875;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.spjd-refund-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e2875;
  margin-bottom: 16px;
}

.spjd-refund-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 14px;
}

.spjd-refund-updated {
  font-size: 14px;
  color: #94a3b8;
  font-style: italic;
}

.spjd-refund-body {
  background: #ffffff;
  padding: 60px 20px 90px;
}

.spjd-refund-card {
  background: #f7f9fc;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  padding: 32px 34px;
  margin-bottom: 22px;
}

.spjd-refund-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.spjd-refund-card-head h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e2875;
  margin: 0;
}

.spjd-refund-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #dbeafe;
  color: #1e2875;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.spjd-refund-card p {
  color: #64748b;
  line-height: 1.75;
  font-size: 15.5px;
  margin: 0;
}

.spjd-refund-contact {
  text-align: center;
  background: #1e2875;
  border-radius: 20px;
  padding: 46px 34px;
  margin-top: 40px;
}

.spjd-refund-contact .spjd-refund-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin: 0 auto 18px;
}

.spjd-refund-contact h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.spjd-refund-contact p {
  color: #c7d0e8;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .spjd-refund-hero {
    padding: 70px 20px 45px;
  }

  .spjd-refund-title {
    font-size: 32px;
  }

  .spjd-refund-subtitle {
    font-size: 15.5px;
  }

  .spjd-refund-card {
    padding: 26px 22px;
  }

  .spjd-refund-card-head {
    gap: 12px;
  }

  .spjd-refund-card-head h2 {
    font-size: 18px;
  }

  .spjd-refund-contact {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .spjd-refund-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.initiative-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.initiative-image {
  flex: 0 0 45%;
  margin-top: 100px;
}

.initiative-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.initiative-content {
  flex: 1;
}

.initiative-label {
  display: inline-block;
  color: #2ba7c7;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.initiative-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #1a237e;
  line-height: 1.25;
  margin: 0 0 20px;
}

.initiative-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.services-heading {
  font-weight: 600;
  color: #333;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.services-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #2ba7c7;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .initiative-section {
    flex-direction: column;
    gap: 30px;
  }

  .initiative-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .initiative-content h2 {
    font-size: 26px;
  }
}

/* ============================================================
   DONATION THANK YOU PAGE
   ============================================================ */
.ty-page {
  background: #f4f7fc;
}

/* Banner */
.ty-banner {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 5rem;
  text-align: center;
  color: #fff;
}

.ty-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e2270 0%, #12297F 45%, #0A9C39 100%);
}

.ty-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.ty-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.ty-success-badge {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
}

.ty-success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  animation: tyPulse 2s ease-in-out infinite;
}

.ty-success-icon {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

@keyframes tyPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

.ty-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.ty-heading {
  font-family: var(--font-tagline);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.ty-lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
}

/* Body */
.ty-body {
  margin-top: -2.5rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.ty-main-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(18, 41, 127, 0.1);
  border: 1px solid rgba(18, 41, 127, 0.06);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Amount block */
.ty-amount-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, #f0faf4 0%, #edf6fd 100%);
  border-bottom: 1px solid rgba(18, 41, 127, 0.08);
}

.ty-amount-left {
  flex: 1;
  padding: 2rem 2.25rem;
  border-right: 1px solid rgba(18, 41, 127, 0.08);
}

.ty-amount-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ty-amount-value {
  font-family: var(--font-tagline);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ty-amount-words {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ty-amount-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 2rem;
  min-width: 220px;
}

.ty-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ty-meta-chip i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.ty-meta-chip small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ty-meta-chip strong {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 700;
}

.ty-meta-chip--status i {
  background: rgba(10, 156, 57, 0.12);
  color: var(--primary-green);
}

.ty-meta-chip--status strong {
  color: var(--primary-green);
}

/* Section heads */
.ty-section-head {
  padding: 1.5rem 2.25rem 0;
}

.ty-section-head h2 {
  font-family: var(--font-tagline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.ty-section-head h2 i {
  color: var(--sky-blue);
  font-size: 1.1rem;
}

/* Info grid */
.ty-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(18, 41, 127, 0.06);
  margin: 1.25rem 2.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(18, 41, 127, 0.06);
}

.ty-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
}

.ty-info-item--wide {
  grid-column: 1 / -1;
}

.ty-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.ty-info-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.ty-info-item strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  word-break: break-word;
}

/* Transaction box */
.ty-txn-box {
  margin: 1.25rem 2.25rem;
  background: #f9fbfd;
  border: 1px solid rgba(18, 41, 127, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0;
}

.ty-txn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
}

.ty-txn-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.ty-txn-code {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.82rem;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(18, 41, 127, 0.1);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  word-break: break-all;
  text-align: right;
}

.ty-txn-divider {
  height: 1px;
  background: rgba(18, 41, 127, 0.06);
  margin: 0 1.25rem;
}

/* Actions */
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  padding: 1.75rem 2.25rem 2.25rem;
  border-top: 1px solid rgba(18, 41, 127, 0.06);
  margin-top: 0.5rem;
}

.ty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.ty-btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(18, 41, 127, 0.25);
}

.ty-btn--primary:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 156, 57, 0.3);
}

.ty-btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: rgba(18, 41, 127, 0.15);
}

.ty-btn--ghost:hover {
  border-color: var(--navy);
  background: var(--light-blue);
  color: var(--navy);
}

/* Bottom step cards */
.ty-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ty-step-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(18, 41, 127, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ty-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ty-step-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(18, 41, 127, 0.06);
  line-height: 1;
}

.ty-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.ty-step-card h3 {
  font-family: var(--font-tagline);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.ty-step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Trust bar */
.ty-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(18, 41, 127, 0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.ty-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ty-trust-item i {
  color: var(--primary-green);
  font-size: 1rem;
}

.ty-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(18, 41, 127, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
  .ty-amount-block {
    flex-direction: column;
  }

  .ty-amount-left {
    border-right: none;
    border-bottom: 1px solid rgba(18, 41, 127, 0.08);
  }

  .ty-amount-right {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    padding: 1.25rem 2rem;
  }

  .ty-info-grid {
    grid-template-columns: 1fr;
  }

  .ty-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ty-banner {
    padding: 2.5rem 0 4rem;
  }

  .ty-amount-left,
  .ty-section-head,
  .ty-info-grid,
  .ty-txn-box,
  .ty-actions {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .ty-section-head {
    padding-left: 0;
    padding-right: 0;
  }

  .ty-amount-left {
    padding: 1.5rem 1.25rem;
  }

  .ty-amount-right {
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column;
  }

  .ty-actions {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }

  .ty-btn {
    width: 100%;
  }

  .ty-txn-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .ty-txn-code {
    text-align: left;
    width: 100%;
  }

  .ty-trust-bar {
    flex-direction: column;
    text-align: center;
  }

  .ty-trust-sep {
    width: 40px;
    height: 1px;
  }
}
.mcv-gallery-section{
    width:100%;
    padding:90px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.mcv-container{
    width:92%;
    max-width:1350px;
    margin:auto;
}

.mcv-heading{
    text-align:center;
    margin-bottom:45px;
}

.mcv-heading span{
    display:inline-block;
    color:#1d3f8d;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.mcv-heading h2{
    font-size:38px;
    color:#202020;
    font-weight:700;
}

.mcv-slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.mcv-slider{
    width:100%;
    overflow:hidden;
}

.mcv-track{
    display:flex;
    gap:28px;
    transition:.6s ease;
}

.mcv-card{
    flex:0 0 calc(33.333% - 19px);
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 28px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.35s;
}

.mcv-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.mcv-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.mcv-card:hover img{
    transform:scale(1.04);
}

/*====================
ARROWS
====================*/

.mcv-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#2146a5;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.3s;
    z-index:100;
}

.mcv-arrow:hover{
    background:#2146a5;
    color:#fff;
}

.mcv-prev{
    left:-28px;
}

.mcv-next{
    right:-28px;
}

/*====================
DOTS
====================*/

.mcv-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:35px;
}

.mcv-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#cfd3e3;
    transition:.3s;
    cursor:pointer;
}

.mcv-dot.active{
    width:30px;
    border-radius:30px;
    background:#2146a5;
}
.mediaCov-section{
  background:#FFFFFF;
  padding:0px 24px 100px;
}
.mediaCov-head{
  max-width:700px;
  margin:0 auto 50px;
  text-align:center;
}
.mediaCov-title{
  font-size:36px;
  font-weight:800;
  color:#152C6B;
  margin:0 0 18px;
}
.mediaCov-sub{
  font-size:15.5px;
  color:#6B7280;
  line-height:1.7;
  margin:0;
}

.mediaCov-wrapper{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
}
.mediaCov-arrow{
  flex-shrink:0;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #D7DAE2;
  background:#FFFFFF;
  color:#152C6B;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
  z-index:2;
}
.mediaCov-arrow:hover{
  background:#152C6B;
  border-color:#152C6B;
  color:#FFFFFF;
}

.mediaCov-viewport{
  overflow:hidden;
  flex:1;
}
.mediaCov-track{
  display:flex;
  gap:24px;
  width:max-content;
}
.mediaCov-slide{
  flex-shrink:0;
  width:320px;
}
.mediaCov-img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid #EDEEF1;
  box-shadow:0 14px 26px rgba(21,44,107,0.08);
  cursor:pointer;
  display:block;
  transition:transform .3s ease;
}
.mediaCov-img:hover{
  transform:translateY(-4px);
}

.mediaCov-lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,14,26,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:30px;
}
.mediaCov-lightbox.mediaCov-lightboxOpen{
  display:flex;
}
.mediaCov-lightboxImg{
  max-width:90%;
  max-height:85vh;
  border-radius:10px;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
}
.mediaCov-lightboxClose{
  position:absolute;
  top:26px;
  right:30px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:transparent;
  color:#FFFFFF;
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mediaCov-lightboxClose:hover{
  background:rgba(255,255,255,0.12);
}

@media(max-width:768px){
  .mediaCov-title{font-size:28px;}
  .mediaCov-slide{width:260px;}
  .mediaCov-img{height:240px;}
}