/* =========================================================
   KANISHKA FOUNDATION
   CLEAN MASTER STYLESHEET
   Homepage + Common Header/Footer + Gallery Page
========================================================= */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */

:root {
  --navy-950: #082a4e;
  --navy-900: #0e3560;
  --navy-850: #123b66;
  --navy-800: #174875;

  --blue-700: #1f79d0;
  --blue-600: #2b8de0;
  --blue-500: #45a2eb;
  --blue-100: #e9f5ff;
  --blue-050: #f4f9fd;

  --orange-700: #e76513;
  --orange-600: #f27622;
  --orange-500: #fb8a2c;
  --orange-100: #fff0e4;
  --orange-050: #fff8f2;

  --green-700: #319b59;
  --green-600: #49b86a;
  --green-100: #e9f8ed;

  --pink-600: #ef506c;
  --pink-100: #ffedf1;

  --purple-600: #8768db;
  --purple-100: #f1ecff;

  --yellow-600: #f5a623;
  --yellow-100: #fff6dc;

  --text-dark: #12304e;
  --text-main: #34495e;
  --text-muted: #6e7e8d;

  --white: #ffffff;
  --page-bg: #ffffff;
  --soft-bg: #f7fbfe;
  --border: #dfeaf2;

  --container: 1180px;
  --section-space: 82px;

  --shadow-xs: 0 3px 12px rgba(20, 62, 94, 0.06);
  --shadow-sm: 0 8px 22px rgba(20, 62, 94, 0.09);
  --shadow-md: 0 14px 34px rgba(20, 62, 94, 0.13);
}


/* =========================================================
   2. RESET / BASE
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text-main);
  background: var(--page-bg);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

ul {
  list-style: none;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid rgba(242, 118, 34, 0.42);
  outline-offset: 3px;
}


/* =========================================================
   3. GENERAL TYPOGRAPHY / BUTTONS
========================================================= */

.section-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orange-kicker {
  color: var(--orange-600);
}

.section-title {
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: clamp(25px, 2.3vw, 35px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.centered-heading {
  margin-bottom: 30px;
  text-align: center;
}

.btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-orange {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 8px 19px rgba(242, 118, 34, 0.2);
}

.btn-orange:hover {
  background: var(--orange-700);
}

.btn-outline-blue {
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #9acbf2;
}

.btn-soft-blue {
  color: var(--blue-700);
  background: #f5faff;
  border: 1px solid #8bbff0;
}


/* =========================================================
   4. TOP INFO BAR
========================================================= */

.top-info-bar {
  background: #eef8fd;
  color: var(--navy-900);
  border-bottom: 1px solid #e2f0f7;
  font-size: 12px;
  font-weight: 700;
}

.top-info-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tax-info,
.top-contact {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tax-info i {
  color: #ec5a61;
}

.top-separator {
  opacity: 0.45;
}

.top-contact {
  gap: 28px;
}

.top-contact a,
.top-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* =========================================================
   5. COMMON HEADER / NAVIGATION
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(225, 236, 244, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(13, 52, 84, 0.09);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Final image-based logo */
.logo-symbol,
.logo-copy {
  display: none !important;
}

.site-header .site-logo {
  width: 315px;
  min-width: 315px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  margin-right: 20px;
  overflow: visible;
}

.site-header .site-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 315px;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-navigation > a:not(.header-donate-btn) {
  position: relative;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.main-navigation > a:not(.header-donate-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--orange-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-navigation > a:not(.header-donate-btn):hover::after,
.main-navigation > a:not(.header-donate-btn).active::after {
  transform: scaleX(1);
}

.language-switch {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.header-donate-btn {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 8px 18px rgba(242, 118, 34, 0.23);
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.header-donate-btn:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-950);
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   6. HERO
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(232, 246, 255, 0.92),
      transparent 36%
    ),
    linear-gradient(
      90deg,
      #f9fcff 0%,
      #ffffff 44%,
      #fff3e8 100%
    );
}

.hero-layout {
  min-height: 500px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 60px 42px 62px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--orange-700);
  background: var(--orange-100);
  font-size: 11px;
  font-weight: 900;
}

.hero-content h1 {
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-content h1 span {
  color: var(--orange-600);
}

.hero-description {
  max-width: 530px;
  margin-top: 23px;
  color: #4f6477;
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 21%
  );
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 52% center;
}

.trust-card {
  position: absolute;
  z-index: 3;
  right: 6px;
  bottom: 45px;
  width: 202px;
  padding: 18px;
  border: 1px solid rgba(222, 232, 240, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.trust-card-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-card-heading strong {
  color: var(--navy-950);
  font-size: 13px;
  line-height: 1.25;
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
}

.trust-card ul {
  display: grid;
  gap: 11px;
  margin-top: 17px;
}

.trust-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4b6275;
  font-size: 10px;
  font-weight: 700;
}

.trust-card li i {
  color: var(--green-600);
}


/* =========================================================
   7. IMPACT
========================================================= */

.impact-section {
  position: relative;
  z-index: 5;
  margin-top: -11px;
}

.impact-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 20px;
  border: 1px solid #dceaf3;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.impact-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 15px;
  padding: 0 22px;
}

.impact-item + .impact-item {
  border-left: 1px solid #d9e7f0;
}

.impact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 21px;
}

.icon-blue {
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid #a8d7f5;
}

.icon-green {
  color: var(--green-700);
  background: var(--green-100);
  border: 1px solid #b8e4c5;
}

.icon-pink {
  color: var(--pink-600);
  background: var(--pink-100);
  border: 1px solid #f8c5ce;
}

.icon-orange {
  color: var(--orange-600);
  background: var(--orange-100);
  border: 1px solid #f5c7a6;
}

.counter {
  display: block;
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 1;
}

.impact-item h2 {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 12px;
  line-height: 1.2;
}

.impact-item p {
  max-width: 140px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.45;
}


/* =========================================================
   8. ABOUT
========================================================= */

.about-section {
  padding-top: 68px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 48px;
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.about-image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about-content > p {
  max-width: 760px;
  margin-top: 20px;
  color: #566979;
  font-size: 13px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 24px;
}

.value-card {
  min-height: 154px;
  padding: 17px 12px 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.value-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 18px;
}

.value-blue,
.value-sky {
  color: var(--blue-700);
  background: var(--blue-100);
}

.value-pink {
  color: var(--pink-600);
  background: var(--pink-100);
}

.value-indigo {
  color: #2a77c7;
  background: #e9f3ff;
}

.value-card h3 {
  margin-top: 10px;
  color: var(--navy-950);
  font-size: 13px;
}

.value-card p {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.45;
}


/* =========================================================
   9. PROGRAMS
========================================================= */

.programs-section {
  background:
    linear-gradient(
      180deg,
      rgba(245, 250, 254, 0.8),
      rgba(255, 255, 255, 0.95)
    );
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.program-image-wrap {
  position: relative;
}

.program-image-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.program-float-icon {
  position: absolute;
  left: 18px;
  bottom: -21px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 17px;
  box-shadow: 0 5px 12px rgba(20, 62, 94, 0.16);
}

.program-green {
  background: var(--green-600);
}

.program-blue {
  background: var(--blue-600);
}

.program-purple {
  background: var(--purple-600);
}

.program-orange {
  background: var(--orange-600);
}

.program-content {
  padding: 31px 18px 20px;
}

.program-content h3 {
  min-height: 42px;
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.35;
}

.program-content p {
  min-height: 70px;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.6;
}

.program-content a {
  display: inline-flex;
  gap: 5px;
  margin-top: 11px;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 900;
}


/* =========================================================
   10. CEREBRAL PALSY + FAQ
========================================================= */

.cp-faq-section {
  padding-top: 22px;
}

.cp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.cp-info-card,
.faq-card {
  padding: 25px;
  border: 1px solid #dce8f1;
  border-radius: 13px;
  background: #f6fbff;
  box-shadow: var(--shadow-sm);
}

.cp-info-card h2 {
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.cp-intro {
  margin-top: 12px;
  color: #526879;
  font-size: 11px;
  line-height: 1.65;
}

.cp-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  margin-top: 24px;
}

.cp-point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.cp-point-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 37px;
  border-radius: 50%;
}

.cp-blue {
  color: var(--blue-700);
  background: var(--blue-100);
}

.cp-yellow {
  color: var(--yellow-600);
  background: var(--yellow-100);
}

.cp-red {
  color: var(--pink-600);
  background: var(--pink-100);
}

.cp-orange {
  color: var(--orange-600);
  background: var(--orange-100);
}

.cp-point strong {
  display: block;
  color: var(--navy-950);
  font-size: 10px;
}

.cp-point p {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.35;
}

.cp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 23px;
}

.cp-card-footer p {
  color: #526879;
  font-size: 9px;
  font-weight: 700;
}

.talk-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-card {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 19px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #dfe9f0;
  border-radius: 8px;
  background: #fbfdff;
}

.faq-question {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 17px;
  color: var(--navy-950);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 17px 15px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.55;
}


/* =========================================================
   11. SUCCESS STORIES
========================================================= */

.stories-section {
  padding-top: 24px;
}

.story-heading {
  margin-bottom: 12px;
}

.story-slider {
  position: relative;
}

.story-slide {
  display: none;
  grid-template-columns: 315px 1fr;
  align-items: center;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid #e2ebf2;
  border-radius: 12px;
  background: linear-gradient(90deg, #f7fbfe, #ffffff);
  box-shadow: var(--shadow-sm);
}

.story-slide.active {
  display: grid;
}

.story-slide > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.story-copy {
  padding: 25px 36px;
}

.quote-mark {
  display: block;
  color: var(--blue-700);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 0.8;
}

.story-copy blockquote {
  margin-top: 9px;
  color: #28435c;
  font-size: 14px;
  line-height: 1.65;
}

.story-copy strong {
  display: block;
  margin-top: 13px;
  color: var(--navy-950);
  font-size: 11px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
}

.story-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cddbe5;
  cursor: pointer;
}

.story-dot.active {
  background: var(--orange-600);
}


/* =========================================================
   12. REAL FOUNDATION EVENT
========================================================= */

.real-event-section {
  padding-top: 70px;
  padding-bottom: 70px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf6 100%
    );
}

.real-event-heading {
  margin-bottom: 35px;
}

.real-event-intro {
  width: min(100%, 760px);
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.real-event-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, 1fr);
  gap: 16px;
}

.real-event-featured.gallery-item {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #eaf3f8;
  cursor: zoom-in;
  box-shadow: 0 14px 35px rgba(20, 62, 94, 0.10);
}

.real-event-featured.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.real-event-featured.gallery-item:hover img {
  transform: scale(1.035);
}

.real-event-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(8, 42, 78, 0.72) 0%,
      rgba(8, 42, 78, 0.14) 45%,
      rgba(8, 42, 78, 0) 70%
    );
  pointer-events: none;
}

.real-event-overlay {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #ffffff;
  text-align: left;
  pointer-events: none;
}

.real-event-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 9px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.real-event-overlay strong {
  display: block;
  max-width: 500px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.real-event-small-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.real-event-small.gallery-item {
  width: 100%;
  height: 217px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #edf4f8;
  cursor: zoom-in;
  box-shadow: 0 8px 24px rgba(20, 62, 94, 0.08);
}

.real-event-small.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.real-event-small.gallery-item:hover img {
  transform: scale(1.045);
}

.real-event-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.real-event-action .btn {
  min-width: 175px;
}


/* =========================================================
   13. GET INVOLVED
========================================================= */

.involved-section {
  padding-top: 42px;
  padding-bottom: 28px;
}

.involved-heading {
  margin-bottom: 18px;
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.involved-card {
  min-height: 135px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 17px;
  padding: 22px;
  border-radius: 11px;
}

.involved-donation {
  background: #fff1e7;
}

.involved-volunteer {
  background: #edf8ef;
}

.involved-csr,
.involved-awareness {
  background: #edf6fd;
}

.involved-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 21px;
}

.involved-donation .involved-icon {
  background: var(--orange-600);
}

.involved-volunteer .involved-icon {
  background: var(--green-600);
}

.involved-csr .involved-icon,
.involved-awareness .involved-icon {
  background: var(--blue-700);
}

.involved-card h3 {
  color: var(--navy-950);
  font-size: 15px;
}

.involved-card p {
  margin-top: 7px;
  color: #607283;
  font-size: 10px;
  line-height: 1.5;
}

.involved-card a {
  display: inline-flex;
  gap: 5px;
  margin-top: 9px;
  font-size: 10px;
  font-weight: 900;
}

.involved-donation a,
.involved-volunteer a {
  color: var(--orange-600);
}

.involved-csr a,
.involved-awareness a {
  color: var(--blue-700);
}


/* =========================================================
   14. SUPPORT / BANK DETAILS SECTION
========================================================= */

.donation-section {
  padding: 0 0 28px;
}

.donation-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  padding: 35px 40px;
  border-radius: 12px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 0 100%,
      rgba(44, 139, 201, 0.26),
      transparent 36%
    ),
    linear-gradient(
      115deg,
      #0d345e,
      #082a50
    );
  box-shadow: var(--shadow-md);
}

.donation-kicker {
  color: var(--orange-500);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-copy h2 {
  margin-top: 9px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.18;
}

.donation-copy > p {
  max-width: 490px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.65;
}

.donation-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.donation-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 7px;
  color: #bdebc9;
  background: rgba(48, 161, 106, 0.18);
  font-size: 9px;
  font-weight: 800;
}

.donation-progress-area,
.bank-details-area {
  align-self: center;
}

.bank-details-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.bank-details-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.bank-details-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 19px;
}

.bank-details-head > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bank-details-head span {
  color: #ff8a2b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-details-head strong {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.bank-details-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.bank-detail-row {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  min-height: 58px;
  padding: 13px 22px;
  border-bottom: 1px solid #e3e9ef;
}

.bank-detail-row:last-child {
  border-bottom: 0;
}

.bank-detail-row:nth-child(even) {
  background: #f8fafc;
}

.bank-detail-row span {
  color: #6f8396;
  font-size: 13px;
  font-weight: 700;
}

.bank-detail-row strong {
  color: #123b66;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  word-break: break-word;
}

.bank-details-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.bank-details-note i {
  color: #65d4ff;
  font-size: 14px;
}


/* =========================================================
   15. NEWSLETTER
========================================================= */

.newsletter-section {
  padding: 0 0 30px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 56px 1fr minmax(430px, 0.9fr);
  align-items: center;
  gap: 18px;
  padding: 22px 27px;
  border-radius: 11px;
  background: #ecf7ff;
}

.newsletter-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: #d8efff;
  font-size: 20px;
}

.newsletter-copy h2 {
  color: var(--navy-950);
  font-size: 16px;
}

.newsletter-copy p {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.newsletter-input-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid #cfdee9;
  border-radius: 6px;
  background: var(--white);
}

.newsletter-input-wrap i {
  color: #9aacb9;
  font-size: 12px;
}

.newsletter-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text-main);
  background: transparent;
  font-size: 10px;
}

.newsletter-form button {
  min-width: 105px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}


/* =========================================================
   16. COMMON FOOTER
========================================================= */

.site-footer {
  border-top: 1px solid #edf2f6;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.95fr 1.12fr;
  gap: 44px;
  padding: 42px 0 34px;
}

.site-footer .footer-logo {
  width: 255px;
  min-width: 0;
  height: auto;
}

.site-footer .footer-logo-image {
  display: block;
  width: 255px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-about > p {
  max-width: 260px;
  margin-top: 17px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}

.footer-socials a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 12px;
}

.footer-socials a:nth-child(2) {
  background: #e14d75;
}

.footer-socials a:nth-child(3) {
  background: #dc3535;
}

.footer-socials a:nth-child(4) {
  background: #2879b8;
}

.footer-column h2 {
  color: var(--navy-950);
  font-size: 13px;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.footer-column li,
.footer-column a {
  color: #516779;
  font-size: 10px;
}

.footer-column a:hover {
  color: var(--blue-700);
}

.contact-column li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.contact-column li i {
  width: 13px;
  margin-top: 3px;
  color: var(--blue-700);
}

.footer-bottom {
  background: #eef8fd;
}

.footer-bottom-inner {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #516779;
  font-size: 9px;
}

.footer-bottom-inner div {
  display: flex;
  align-items: center;
  gap: 18px;
}




/* =========================================================
   18. LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(6, 24, 39, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 20px;
  cursor: pointer;
}


/* =========================================================
   19. TOAST
========================================================= */

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 4000;
  max-width: calc(100% - 30px);
  padding: 11px 17px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: 0.25s ease;
}

.site-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* =========================================================
   20. SEPARATE GALLERY PAGE
========================================================= */

.gallery-page-hero {
  padding: 78px 0 70px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(233, 245, 255, 0.85),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #f7fbff,
      #ffffff
    );
}

.gallery-page-hero h1 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.gallery-page-hero p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.gallery-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 12px;
}

.gallery-breadcrumb a {
  color: var(--blue-700);
  font-weight: 800;
}

.gallery-page-section {
  padding-top: 70px;
}

.gallery-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.full-gallery-item {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #eaf3f8;
  box-shadow: 0 7px 20px rgba(20, 62, 94, 0.08);
  cursor: zoom-in;
}

.full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(8, 42, 78, 0.42);
  font-size: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.full-gallery-item:hover img {
  transform: scale(1.05);
}

.full-gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-empty-state {
  padding: 80px 25px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--soft-bg);
  text-align: center;
}

.gallery-empty-state i {
  color: var(--blue-600);
  font-size: 45px;
}

.gallery-empty-state h2 {
  margin-top: 18px;
  color: var(--navy-950);
}

.gallery-empty-state p {
  margin-top: 8px;
  color: var(--text-muted);
}

.gallery-cta {
  padding: 30px 0 80px;
}

.gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  background:
    linear-gradient(
      120deg,
      #edf7ff,
      #fff6ed
    );
}

.gallery-cta-inner h2 {
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: 27px;
}

.gallery-cta-inner p {
  max-width: 680px;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}


/* =========================================================
   21. LARGE DESKTOP
========================================================= */

@media (min-width: 1181px) {
  :root {
    --container: 1540px;
    --section-space: 104px;
  }

  .site-container {
    width: min(calc(100% - 64px), var(--container));
  }

  /* Top bar */
  .top-info-bar {
    font-size: 13px;
  }

  .top-info-inner {
    min-height: 48px;
  }

  .top-contact {
    gap: 38px;
  }

  /* Header */
  .header-inner {
    min-height: 96px;
  }

  .site-header .site-logo {
    width: 315px;
    min-width: 315px;
    height: 96px;
  }

  .site-header .site-logo-image {
    max-width: 315px;
    max-height: 80px;
  }

  .main-navigation {
    gap: 34px;
  }

  .main-navigation > a:not(.header-donate-btn) {
    font-size: 14px;
  }

  .language-switch {
    padding: 11px 14px;
    font-size: 13px;
  }

  .header-donate-btn {
    min-height: 49px;
    padding: 12px 22px;
    font-size: 14px;
  }

  /* Compact hero */
  .hero-layout {
    min-height: 520px;
    grid-template-columns: 0.93fr 1.07fr;
  }

  .hero-content {
    padding: 46px 58px 48px 0;
  }

  .hero-badge {
    margin-bottom: 18px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .hero-content h1 {
    max-width: 620px;
    font-size: clamp(48px, 3.75vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .hero-description {
    max-width: 590px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 11px;
    margin-top: 24px;
  }

  .btn {
    min-height: 46px;
    padding: 11px 19px;
    font-size: 13px;
  }

  .hero-visual,
  .hero-image {
    min-height: 520px;
    height: 520px;
  }

  .hero-image {
  object-position: 58% 18%;
}

  .trust-card {
    right: 20px;
    bottom: 28px;
    width: 220px;
    padding: 18px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .trust-card-heading strong {
    font-size: 14px;
  }

  .trust-card ul {
    gap: 10px;
    margin-top: 16px;
  }

  .trust-card li {
    font-size: 11px;
  }

  /* Impact */
  .impact-section {
    margin-top: -16px;
  }

  .impact-panel {
    padding: 35px 24px;
    border-radius: 14px;
  }

  .impact-item {
    grid-template-columns: 66px 1fr;
    gap: 18px;
    padding: 0 29px;
  }

  .impact-icon {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }

  .counter {
    font-size: 34px;
  }

  .impact-item h2 {
    margin-top: 7px;
    font-size: 14px;
  }

  .impact-item p {
    max-width: 175px;
    margin-top: 9px;
    font-size: 12px;
  }

  /* Heading scale */
  .section-kicker {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .section-title {
    font-size: clamp(32px, 2.45vw, 44px);
  }

  .centered-heading {
    margin-bottom: 40px;
  }

  /* About */
  .about-section {
    padding-top: 100px;
  }

  .about-layout {
    grid-template-columns: 0.84fr 1.16fr;
    gap: 72px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .about-image-wrap img {
    height: 445px;
  }

  .about-content > p {
    max-width: 850px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.8;
  }

  .values-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .value-card {
    min-height: 188px;
    padding: 23px 17px 18px;
    border-radius: 13px;
  }

  .value-icon {
    width: 49px;
    height: 49px;
    font-size: 21px;
  }

  .value-card h3 {
    margin-top: 13px;
    font-size: 15px;
  }

  .value-card p {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.55;
  }

  /* Programs */
  .program-grid {
    gap: 24px;
  }

  .program-card {
    border-radius: 15px;
  }

  .program-image-wrap img {
    height: 220px;
  }

  .program-float-icon {
    left: 22px;
    bottom: -25px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .program-content {
    padding: 38px 23px 27px;
  }

  .program-content h3 {
    min-height: 48px;
    font-size: 17px;
  }

  .program-content p {
    min-height: 82px;
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.68;
  }

  .program-content a {
    margin-top: 14px;
    font-size: 13px;
  }

  /* CP + FAQ */
  .cp-faq-section {
    padding-top: 35px;
  }

  .cp-faq-grid {
    gap: 24px;
  }

  .cp-info-card,
  .faq-card {
    padding: 34px;
    border-radius: 16px;
  }

  .cp-info-card h2 {
    font-size: 27px;
  }

  .cp-intro {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.72;
  }

  .cp-points-grid {
    gap: 27px 34px;
    margin-top: 31px;
  }

  .cp-point {
    gap: 14px;
  }

  .cp-point-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 18px;
  }

  .cp-point strong {
    font-size: 13px;
  }

  .cp-point p {
    margin-top: 4px;
    font-size: 11px;
  }

  .cp-card-footer {
    margin-top: 30px;
  }

  .cp-card-footer p {
    font-size: 11px;
  }

  .talk-btn {
    min-height: 43px;
    padding: 10px 17px;
    font-size: 12px;
  }

  .faq-list {
    gap: 13px;
    margin-top: 24px;
  }

  .faq-question {
    min-height: 62px;
    padding: 15px 21px;
    font-size: 13px;
  }

  .faq-answer p {
    padding: 0 21px 18px;
    font-size: 12px;
  }

  /* Stories */
  .stories-section {
    padding-top: 36px;
  }

  .story-heading {
    margin-bottom: 18px;
  }

  .story-slide {
    grid-template-columns: 380px 1fr;
    min-height: 275px;
    border-radius: 15px;
  }

  .story-slide > img {
    height: 275px;
  }

  .story-copy {
    padding: 34px 48px;
  }

  .quote-mark {
    font-size: 55px;
  }

  .story-copy blockquote {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.72;
  }

  .story-copy strong {
    margin-top: 17px;
    font-size: 13px;
  }

  .slider-dots {
    margin-top: 17px;
  }

  .story-dot {
    width: 9px;
    height: 9px;
  }

  /* Real event */
  .real-event-featured.gallery-item {
    height: 450px;
  }

  .real-event-small.gallery-item {
    height: 217px;
  }

  /* Get involved */
  .involved-section {
    padding-top: 62px;
    padding-bottom: 39px;
  }

  .involved-heading {
    margin-bottom: 25px;
  }

  .involved-grid {
    gap: 24px;
  }

  .involved-card {
    min-height: 168px;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    padding: 28px;
    border-radius: 14px;
  }

  .involved-icon {
    width: 64px;
    height: 64px;
    font-size: 25px;
  }

  .involved-card h3 {
    font-size: 18px;
  }

  .involved-card p {
    margin-top: 9px;
    font-size: 12px;
  }

  .involved-card a {
    margin-top: 12px;
    font-size: 12px;
  }

  /* Bank details section */
  .donation-section {
    padding-bottom: 38px;
  }

  .donation-panel {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 62px;
    padding: 48px 54px;
    border-radius: 15px;
  }

  .donation-kicker {
    font-size: 12px;
  }

  .donation-copy h2 {
    margin-top: 12px;
    font-size: clamp(34px, 2.65vw, 47px);
  }

  .donation-copy > p {
    max-width: 570px;
    margin-top: 18px;
    font-size: 13px;
  }

  .donation-trust-badges {
    gap: 11px;
    margin-top: 30px;
  }

  .donation-trust-badges span {
    padding: 10px 13px;
    font-size: 11px;
  }

  /* Newsletter */
  .newsletter-section {
    padding-bottom: 40px;
  }

  .newsletter-panel {
    grid-template-columns: 68px 1fr minmax(500px, 0.92fr);
    gap: 23px;
    padding: 29px 35px;
    border-radius: 14px;
  }

  .newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .newsletter-copy h2 {
    font-size: 20px;
  }

  .newsletter-copy p {
    margin-top: 5px;
    font-size: 11px;
  }

  .newsletter-input-wrap {
    min-height: 50px;
    padding: 0 16px;
  }

  .newsletter-input-wrap input {
    font-size: 12px;
  }

  .newsletter-form button {
    min-width: 125px;
    font-size: 13px;
  }

  /* Footer */
  .footer-main {
    gap: 62px;
    padding: 56px 0 45px;
  }

  .footer-about > p {
    max-width: 315px;
    margin-top: 21px;
    font-size: 12px;
  }

  .footer-socials {
    gap: 10px;
    margin-top: 20px;
  }

  .footer-socials a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-column h2 {
    font-size: 16px;
  }

  .footer-column ul {
    gap: 10px;
    margin-top: 20px;
  }

  .footer-column li,
  .footer-column a {
    font-size: 12px;
  }

  .footer-bottom-inner {
    min-height: 50px;
    font-size: 11px;
  }
}


/* =========================================================
   22. TABLET / MOBILE NAVIGATION
   Menu collapses earlier to avoid header crowding.
========================================================= */

@media (max-width: 1180px) {
  :root {
    --section-space: 72px;
  }

  .site-header .header-inner {
    min-height: 88px;
  }

  .site-header .site-logo {
    width: 245px;
    min-width: 245px;
    height: 88px;
    margin-right: 12px;
  }

  .site-header .site-logo-image {
    max-width: 245px;
    max-height: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    inset: 132px 16px auto;
    z-index: 1200;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 150px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.22s ease;
  }

  .main-navigation.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-navigation > a:not(.header-donate-btn),
  .language-switch {
    width: 100%;
    padding: 14px 10px;
    text-align: left;
  }

  .main-navigation > a:not(.header-donate-btn)::after {
    bottom: 4px;
  }

  .header-donate-btn {
    margin-top: 7px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card {
    min-height: auto;
  }

  .newsletter-panel {
    grid-template-columns: 48px 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* =========================================================
   23. MEDIUM DESKTOP / LANDSCAPE TABLET
========================================================= */

@media (min-width: 901px) and (max-width: 1180px) {
  :root {
    --section-space: 82px;
  }

  .site-container {
    width: min(calc(100% - 44px), 1280px);
  }

  .hero-layout,
  .hero-visual,
  .hero-image {
    min-height: 500px;
    height: 500px;
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-content h1 {
    font-size: clamp(43px, 5vw, 56px);
  }

  .hero-description {
    margin-top: 18px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-card {
    bottom: 24px;
    width: 195px;
  }

  .impact-panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .about-image-wrap img {
    height: 390px;
  }

  .program-image-wrap img {
    height: 195px;
  }

  .real-event-layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .real-event-featured.gallery-item {
    height: 400px;
  }

  .real-event-small.gallery-item {
    height: 192px;
  }
}


/* =========================================================
   24. TABLET
========================================================= */

@media (max-width: 900px) {
  .top-info-inner {
    justify-content: center;
  }

  .tax-info span:not(.top-separator),
  .top-contact span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-visual,
  .hero-image {
    min-height: 470px;
    height: auto;
  }

  .impact-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .impact-item {
    padding: 20px;
  }

  .impact-item:nth-child(3),
  .impact-item:nth-child(4) {
    border-top: 1px solid #d9e7f0;
  }

  .impact-item:nth-child(3) {
    border-left: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image-wrap img {
    height: 460px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-faq-grid,
  .donation-panel {
    grid-template-columns: 1fr;
  }

  .story-slide {
    grid-template-columns: 260px 1fr;
  }

  .involved-grid {
    grid-template-columns: 1fr;
  }

  .real-event-layout {
    grid-template-columns: 1fr;
  }

  .real-event-featured.gallery-item {
    height: 430px;
  }

  .real-event-small.gallery-item {
    height: 220px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .bank-details-head {
    margin-top: 10px;
  }
}


/* =========================================================
   25. MOBILE
========================================================= */

@media (max-width: 640px) {
  :root {
    --section-space: 60px;
  }

  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .top-info-bar {
    font-size: 10px;
  }

  .top-contact {
    gap: 12px;
  }

  .site-header .header-inner {
    min-height: 76px;
  }

  .site-header .site-logo {
    width: 195px;
    min-width: 195px;
    height: 76px;
    margin-right: 6px;
  }

  .site-header .site-logo-image {
    width: 195px;
    max-width: 195px;
    max-height: 62px;
  }

  .main-navigation {
    inset: 118px 14px auto;
  }

  .hero-content {
    padding: 44px 0 38px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-image {
    min-height: 390px;
  }

  .trust-card {
    right: 12px;
    bottom: 20px;
    width: 184px;
  }

  .impact-panel {
    padding: 0;
  }

  .impact-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .impact-icon {
    margin-inline: auto;
  }

  .impact-item p {
    margin-inline: auto;
  }

  .about-image-wrap img {
    height: 330px;
  }

  .values-grid,
  .program-grid,
  .cp-points-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .program-image-wrap img {
    height: 220px;
  }

  .cp-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-slide,
  .story-slide.active {
    grid-template-columns: 1fr;
  }

  .story-slide > img {
    height: 260px;
  }

  .story-copy {
    padding: 25px 21px;
  }

  .real-event-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .real-event-heading {
    margin-bottom: 25px;
  }

  .real-event-intro {
    font-size: 13px;
  }

  .real-event-featured.gallery-item {
    height: 330px;
    border-radius: 13px;
  }

  .real-event-overlay {
    left: 17px;
    right: 17px;
    bottom: 17px;
  }

  .real-event-overlay strong {
    font-size: 17px;
  }

  .real-event-tag {
    font-size: 9px;
  }

  .real-event-small-grid {
    gap: 9px;
  }

  .real-event-small.gallery-item {
    height: 160px;
    border-radius: 10px;
  }

  .real-event-action {
    margin-top: 24px;
  }

  .real-event-action .btn {
    width: 100%;
    max-width: 280px;
  }

  .involved-card {
    grid-template-columns: 50px 1fr;
    padding: 18px;
  }

  .donation-panel {
    padding: 28px 20px;
  }

  .bank-details-head {
    margin-bottom: 16px;
  }

  .bank-details-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 17px;
  }

  .bank-details-head strong {
    font-size: 18px;
  }

  .bank-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
    padding: 13px 17px;
  }

  .bank-detail-row span {
    font-size: 11px;
  }

  .bank-detail-row strong {
    font-size: 15px;
  }

  .bank-details-note {
    align-items: flex-start;
    font-size: 11px;
  }

  .newsletter-panel {
    grid-template-columns: 42px 1fr;
    padding: 20px 17px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    min-height: 42px;
  }

  .site-footer .footer-logo,
  .site-footer .footer-logo-image {
    width: 220px;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .footer-bottom-inner div {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .whatsapp-floating span {
    display: none;
  }

  .whatsapp-floating i {
    width: 52px;
    height: 52px;
  }

  /* Gallery page */
  .gallery-page-hero {
    padding: 55px 0;
  }

  .gallery-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .full-gallery-item {
    height: 220px;
  }

  .gallery-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
}


/* =========================================================
   26. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .tax-info .top-separator,
  .top-contact {
    display: none;
  }

  .site-header .site-logo {
    width: 168px;
    min-width: 168px;
  }

  .site-header .site-logo-image {
    width: 168px;
    max-width: 168px;
    max-height: 58px;
  }

  .impact-item {
    padding: 16px 9px;
  }

  .real-event-featured.gallery-item {
    height: 290px;
  }

  .real-event-small.gallery-item {
    height: 135px;
  }

  .full-gallery-grid {
    grid-template-columns: 1fr;
  }

  .full-gallery-item {
    height: 300px;
  }

  .gallery-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .gallery-cta-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   27. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}







/* =========================================================
   FINAL TEXT READABILITY UPDATE
   Headings remain unchanged
========================================================= */

/* General body readability */
body {
  font-size: 17px;
}


/* Top Bar */
.top-info-bar {
  font-size: 13px;
}


/* Navigation */
.main-navigation > a:not(.header-donate-btn) {
  font-size: 14px;
}

.language-switch {
  font-size: 13px;
}

.header-donate-btn {
  font-size: 14px;
}


/* Hero */
.hero-badge {
  font-size: 13px;
}

.hero-description {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.75;
}

.btn {
  font-size: 14px;
}


/* Impact */
.impact-item p {
  max-width: 190px;
  font-size: 12.5px;
  line-height: 1.55;
}


/* About */
.about-content > p {
  font-size: 16px;
  line-height: 1.8;
}

.value-card p {
  font-size: 12.5px;
  line-height: 1.55;
}


/* Programs */
.program-content p {
  font-size: 13px;
  line-height: 1.7;
}

.program-content a {
  font-size: 13px;
}


/* Cerebral Palsy */
.cp-intro {
  font-size: 13.5px;
  line-height: 1.72;
}

.cp-point strong {
  font-size: 13px;
}

.cp-point p {
  font-size: 12px;
  line-height: 1.5;
}

.cp-card-footer p {
  font-size: 12px;
}

.talk-btn {
  font-size: 12px;
}


/* FAQ */
.faq-question {
  font-size: 13px;
}

.faq-answer p {
  font-size: 12.5px;
  line-height: 1.65;
}


/* Success Stories */
.story-copy blockquote {
  font-size: 16px;
  line-height: 1.75;
}

.story-copy strong {
  font-size: 13px;
}


/* Event section */
.real-event-intro {
  font-size: 15px;
  line-height: 1.75;
}


/* Get Involved */
.involved-card p {
  font-size: 13px;
  line-height: 1.6;
}

.involved-card a {
  font-size: 12.5px;
}


/* Donation / Support section */
.donation-copy > p {
  font-size: 14px;
  line-height: 1.75;
}

.donation-trust-badges span {
  font-size: 11px;
}


/* Bank Details */
.bank-detail-row span {
  font-size: 13.5px;
}

.bank-detail-row strong {
  font-size: 16px;
}

.bank-details-note {
  font-size: 12.5px;
}


/* Newsletter */
.newsletter-copy p {
  font-size: 12.5px;
  line-height: 1.55;
}

.newsletter-input-wrap input {
  font-size: 13px;
}

.newsletter-form button {
  font-size: 13px;
}


/* Footer */
.footer-about > p {
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-column li,
.footer-column a {
  font-size: 12.5px;
}

.footer-bottom-inner {
  font-size: 11.5px;
}


/* Gallery page */
.gallery-page-hero p {
  font-size: 16px;
}

.gallery-cta-inner p {
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  body {
    font-size: 16px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about-content > p {
    font-size: 15px;
  }

  .program-content p,
  .involved-card p {
    font-size: 13px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  body {
    font-size: 16px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-content > p {
    font-size: 14.5px;
  }

  .value-card p {
    font-size: 12px;
  }

  .program-content p {
    font-size: 12.5px;
  }

  .cp-intro {
    font-size: 13px;
  }

  .cp-point p {
    font-size: 11.5px;
  }

  .faq-question {
    font-size: 12.5px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .story-copy blockquote {
    font-size: 14px;
  }

  .real-event-intro {
    font-size: 13.5px;
  }

  .involved-card p {
    font-size: 12.5px;
  }

  .donation-copy > p {
    font-size: 13px;
  }

  .footer-about > p,
  .footer-column li,
  .footer-column a {
    font-size: 12px;
  }

}





/* =========================================================
   FINAL PARAGRAPH TEXT SIZE FIX
   Keep all headings unchanged
========================================================= */

/* Desktop */
p {
  font-size: 16px !important;
  line-height: 1.7 !important;
}


/* Hero */
.hero-description {
  font-size: 17px !important;
  line-height: 1.75 !important;
}


/* About */
.about-content > p {
  font-size: 16px !important;
}


/* Small cards - slightly smaller but still readable */
.value-card p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.program-content p {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}


/* Impact */
.impact-item p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}


/* CP */
.cp-intro {
  font-size: 15px !important;
}

.cp-point p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.cp-card-footer p {
  font-size: 14px !important;
}


/* FAQ */
.faq-answer p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}


/* Event */
.real-event-intro {
  font-size: 15.5px !important;
}


/* Get involved */
.involved-card p {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}


/* Donation section */
.donation-copy > p {
  font-size: 15px !important;
  line-height: 1.7 !important;
}


/* Newsletter */
.newsletter-copy p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}


/* Gallery page */
.gallery-page-hero p,
.gallery-cta-inner p {
  font-size: 15.5px !important;
  line-height: 1.7 !important;
}


/* Footer */
.footer-about > p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  p {
    font-size: 15px !important;
  }

  .hero-description {
    font-size: 16px !important;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-description {
    font-size: 15.5px !important;
  }

  .value-card p,
  .program-content p,
  .cp-point p,
  .faq-answer p,
  .involved-card p,
  .footer-about > p {
    font-size: 14px !important;
  }

}





/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
  padding: 78px 0 70px;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(233, 245, 255, 0.9),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #f7fbff,
      #ffffff
    );
}


.contact-page-hero h1 {
  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: clamp(40px, 4vw, 62px);

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -0.04em;
}


.contact-page-hero > .site-container > p {
  max-width: 760px;

  margin: 18px auto 0;

  color: var(--text-muted);

  font-size: 16px !important;

  line-height: 1.75 !important;
}


.contact-breadcrumb {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 24px;

  color: var(--text-muted);

  font-size: 12px;
}


.contact-breadcrumb a {
  color: var(--blue-700);

  font-weight: 800;
}



/* Main Contact Layout */

.contact-page-section {
  padding-top: 75px;
}


.contact-page-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 65px;

  align-items: start;
}


.contact-intro {
  max-width: 650px;

  margin-top: 18px;

  color: var(--text-muted);

  font-size: 16px !important;

  line-height: 1.75 !important;
}



/* Contact Cards */

.contact-info-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;

  margin-top: 28px;
}


.contact-info-card {
  display: grid;

  grid-template-columns:
    52px
    minmax(0, 1fr);

  align-items: start;

  gap: 14px;

  min-height: 145px;

  padding: 20px;

  border: 1px solid var(--border);

  border-radius: 14px;

  background: var(--white);

  box-shadow: var(--shadow-xs);
}


.contact-info-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  font-size: 18px;
}


.contact-phone-icon {
  color: var(--blue-700);

  background: var(--blue-100);
}


.contact-email-icon {
  color: var(--orange-600);

  background: var(--orange-100);
}


.contact-hours-icon {
  color: var(--green-700);

  background: var(--green-100);
}


.contact-web-icon {
  color: var(--purple-600);

  background: var(--purple-100);
}


.contact-info-label {
  display: block;

  margin-bottom: 4px;

  color: var(--text-muted);

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}


.contact-info-card a,
.contact-info-card strong {
  display: block;

  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: 15px;

  font-weight: 700;

  word-break: break-word;
}


.contact-info-card p {
  margin-top: 6px;

  color: var(--text-muted);

  font-size: 13px !important;

  line-height: 1.55 !important;
}



/* Parent Support */

.contact-support-note {
  display: grid;

  grid-template-columns:
    60px
    minmax(0, 1fr);

  gap: 18px;

  margin-top: 22px;

  padding: 24px;

  border-radius: 15px;

  background:
    linear-gradient(
      120deg,
      #edf7ff,
      #fff7ef
    );
}


.contact-support-icon {
  width: 56px;
  height: 56px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--orange-600);

  background: var(--white);

  box-shadow: var(--shadow-xs);

  font-size: 21px;
}


.contact-support-note strong {
  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: 16px;
}


.contact-support-note p {
  margin-top: 6px;

  color: var(--text-muted);

  font-size: 14px !important;

  line-height: 1.6 !important;
}


.contact-support-note a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-top: 10px;

  color: var(--blue-700);

  font-size: 13px;

  font-weight: 900;
}



/* Contact Form */

.contact-form-card {
  padding: 34px;

  border: 1px solid var(--border);

  border-radius: 18px;

  background: var(--white);

  box-shadow: var(--shadow-md);
}


.contact-form-card h2 {
  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: 28px;

  line-height: 1.3;
}


.contact-form-intro {
  margin-top: 8px;

  color: var(--text-muted);

  font-size: 14px !important;

  line-height: 1.6 !important;
}


.contact-form {
  display: grid;

  gap: 18px;

  margin-top: 26px;
}


.contact-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 15px;
}


.contact-field {
  display: grid;

  gap: 7px;
}


.contact-field label {
  color: var(--navy-950);

  font-size: 13px;

  font-weight: 800;
}


.contact-field label span {
  color: var(--orange-600);
}


.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  border: 1px solid #cfdee9;

  border-radius: 9px;

  outline: 0;

  color: var(--text-main);

  background: #fbfdff;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.contact-field input,
.contact-field select {
  min-height: 50px;

  padding: 0 15px;
}


.contact-field textarea {
  min-height: 150px;

  padding: 13px 15px;

  resize: vertical;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--blue-600);

  box-shadow:
    0 0 0 3px
    rgba(43, 141, 224, 0.10);

  background: var(--white);
}


.contact-submit-btn {
  min-height: 50px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border-radius: 8px;

  color: var(--white);

  background: var(--orange-600);

  box-shadow:
    0 8px 18px
    rgba(242, 118, 34, 0.20);

  font-size: 14px;

  font-weight: 900;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.contact-submit-btn:hover {
  background: var(--orange-700);

  transform: translateY(-2px);
}


.contact-form-note {
  color: var(--text-muted);

  font-size: 12px !important;

  text-align: center;
}



/* Contact Bank CTA */

.contact-bank-cta {
  padding: 10px 0 80px;
}


.contact-bank-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  padding: 36px 40px;

  border-radius: 16px;

  background:
    linear-gradient(
      120deg,
      #edf7ff,
      #fff6ed
    );
}


.contact-bank-cta-inner h2 {
  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: 26px;
}


.contact-bank-cta-inner p {
  margin-top: 6px;

  color: var(--text-muted);

  font-size: 14px !important;
}



/* =========================================================
   HOMEPAGE CONTACT CTA
========================================================= */

.home-contact-cta {
  padding: 10px 0 38px;
}


.home-contact-cta-inner {
  display: grid;

  grid-template-columns:
    64px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 22px;

  padding: 28px 32px;

  border: 1px solid #dceaf3;

  border-radius: 15px;

  background:
    linear-gradient(
      110deg,
      #f1f9ff,
      #fff8f1
    );

  box-shadow: var(--shadow-xs);
}


.home-contact-cta-icon {
  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--blue-700);

  background: var(--white);

  box-shadow: var(--shadow-sm);

  font-size: 22px;
}


.home-contact-cta-copy .section-kicker {
  margin-bottom: 2px;
}


.home-contact-cta-copy h2 {
  color: var(--navy-950);

  font-family: "Poppins", sans-serif;

  font-size: 22px;
}


.home-contact-cta-copy p {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 14px !important;

  line-height: 1.55 !important;
}



/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .contact-page-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .contact-bank-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }


  .home-contact-cta-inner {
    grid-template-columns:
      58px
      minmax(0, 1fr);
  }


  .home-contact-cta-inner > .btn {
    grid-column: 1 / -1;

    width: 100%;
  }

}


@media (max-width: 640px) {

  .contact-page-hero {
    padding: 55px 0;
  }


  .contact-page-hero h1 {
    font-size: 38px;
  }


  .contact-page-hero > .site-container > p {
    font-size: 15px !important;
  }


  .contact-info-grid {
    grid-template-columns: 1fr;
  }


  .contact-info-card {
    min-height: auto;
  }


  .contact-support-note {
    grid-template-columns: 48px 1fr;

    padding: 20px 17px;
  }


  .contact-support-icon {
    width: 46px;
    height: 46px;

    font-size: 18px;
  }


  .contact-form-card {
    padding: 24px 18px;
  }


  .contact-form-card h2 {
    font-size: 23px;
  }


  .contact-form-row {
    grid-template-columns: 1fr;
  }


  .contact-bank-cta-inner {
    padding: 27px 20px;
  }


  .contact-bank-cta-inner .btn {
    width: 100%;
  }


  .home-contact-cta {
    padding-bottom: 30px;
  }


  .home-contact-cta-inner {
    grid-template-columns: 1fr;

    padding: 24px 20px;

    text-align: center;
  }


  .home-contact-cta-icon {
    margin-inline: auto;
  }

}









/* =========================================================
   MOBILE HEADER LOGO SIZE UPDATE
========================================================= */

@media (max-width: 640px) {

  .site-header .site-logo {
    width: 220px;
    min-width: 220px;
    height: 78px;
    margin-right: 4px;
  }

  .site-header .site-logo-image {
    width: 220px;
    max-width: 220px;
    max-height: 68px;
  }

}


/* Small mobile */
@media (max-width: 420px) {

  .site-header .site-logo {
    width: 190px;
    min-width: 190px;
  }

  .site-header .site-logo-image {
    width: 300px;
    max-width: 300px;
    max-height: 62px;
  }

}




/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 9px 12px;

  border: 1px solid var(--border);
  border-radius: 9px;

  background: #ffffff;

  white-space: nowrap;
}

.language-switcher a {
  color: var(--text-muted);

  font-size: 13px;
  font-weight: 800;

  transition: color 0.2s ease;
}

.language-switcher a:hover {
  color: var(--blue-700);
}

.language-switcher a.active {
  color: var(--navy-950);
  font-weight: 900;
}

.language-switcher span {
  color: #c5d1da;
  font-size: 12px;
}


@media (max-width: 1180px) {

  .language-switcher {
    width: 100%;
    justify-content: flex-start;

    margin: 5px 0;
    padding: 13px 10px;

    border: 0;
    border-radius: 0;

    background: transparent;
  }

  .language-switcher a {
    font-size: 14px;
  }

}






/* =========================================================
   HINDI / DEVANAGARI TYPOGRAPHY
========================================================= */

html[lang="hi-IN"] body,
html[lang="hi-IN"] button,
html[lang="hi-IN"] input,
html[lang="hi-IN"] textarea,
html[lang="hi-IN"] select {
  font-family:
    "Noto Sans Devanagari",
    "Nunito",
    sans-serif;
}


html[lang="hi-IN"] h1,
html[lang="hi-IN"] h2,
html[lang="hi-IN"] h3,
html[lang="hi-IN"] h4,
html[lang="hi-IN"] h5,
html[lang="hi-IN"] h6,
html[lang="hi-IN"] strong {
  font-family:
    "Noto Sans Devanagari",
    "Poppins",
    sans-serif;
}


html[lang="hi-IN"] .hero-content h1 {
  line-height: 1.25;
}


html[lang="hi-IN"] .section-title {
  line-height: 1.35;
}


html[lang="hi-IN"] .main-navigation a {
  line-height: 1.4;
}


html[lang="hi-IN"] p {
  line-height: 1.8 !important;
}


@media (max-width: 640px) {

  html[lang="hi-IN"] .hero-content h1 {
    line-height: 1.3;
  }

}



/* =========================================================
   MARATHI / DEVANAGARI TYPOGRAPHY
========================================================= */

html[lang="mr-IN"] body,
html[lang="mr-IN"] button,
html[lang="mr-IN"] input,
html[lang="mr-IN"] textarea,
html[lang="mr-IN"] select {
  font-family:
    "Noto Sans Devanagari",
    "Nunito",
    sans-serif;
}


html[lang="mr-IN"] h1,
html[lang="mr-IN"] h2,
html[lang="mr-IN"] h3,
html[lang="mr-IN"] h4,
html[lang="mr-IN"] h5,
html[lang="mr-IN"] h6,
html[lang="mr-IN"] strong {
  font-family:
    "Noto Sans Devanagari",
    "Poppins",
    sans-serif;
}


html[lang="mr-IN"] .hero-content h1 {
  line-height: 1.25;
}


html[lang="mr-IN"] .section-title {
  line-height: 1.35;
}


html[lang="mr-IN"] .main-navigation a {
  line-height: 1.4;
}


html[lang="mr-IN"] p {
  line-height: 1.8 !important;
}


@media (max-width: 640px) {

  html[lang="mr-IN"] .hero-content h1 {
    line-height: 1.3;
  }

}



/* =========================================================
   WELL WISHERS PAGE
========================================================= */

.well-wishers-hero {
  position: relative;

  padding: 82px 0 70px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      #f4f9ff 0%,
      #ffffff 100%
    );

  border-bottom: 1px solid var(--border);
}


.well-wishers-hero h1 {
  max-width: 850px;

  margin:
    12px auto 16px;

  color: var(--navy-950);

  font-family:
    "Poppins",
    sans-serif;

  font-size:
    clamp(34px, 5vw, 54px);

  line-height: 1.15;
}


.well-wishers-hero p {
  max-width: 720px;

  margin: 0 auto;

  color: var(--text-muted);

  font-size: 16px;

  line-height: 1.75;
}


.well-wishers-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 9px;

  margin-top: 24px;

  font-size: 13px;

  font-weight: 700;
}


.well-wishers-breadcrumb a {
  color: var(--blue-700);
}


.well-wishers-breadcrumb span {
  color: #aab9c7;
}


.well-wishers-breadcrumb strong {
  color: var(--navy-950);
}



/* =========================================================
   PHOTO GRID
========================================================= */

.well-wishers-section {
  background: #ffffff;
}


.well-wishers-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 24px;
}



/* =========================================================
   PHOTO
========================================================= */

.well-wisher-photo {
  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  padding: 0;

  border: 0;

  border-radius: 18px;

  background: #f3f7fa;

  box-shadow:
    0 8px 28px
    rgba(18, 59, 102, 0.08);
}


button.well-wisher-photo {
  cursor: pointer;
}


.well-wisher-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  background: #f7f9fb;

  transition:
    transform 0.4s ease;
}


button.well-wisher-photo:hover img {
  transform: scale(1.035);
}



/* =========================================================
   PLACEHOLDER
========================================================= */

.well-wisher-placeholder {
  display: grid;

  place-items: center;

  border:
    1px solid
    #e0eaf2;

  background:
    linear-gradient(
      145deg,
      #f7fbff,
      #edf5fb
    );
}


.well-wisher-placeholder-inner {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 13px;
}


.well-wisher-placeholder-inner > span {
  display: grid;

  place-items: center;

  width: 78px;
  height: 78px;

  border-radius: 50%;

  background: #ffffff;

  color: #9fb4c7;

  font-size: 30px;

  box-shadow:
    0 8px 25px
    rgba(18, 59, 102, 0.08);
}


.well-wisher-placeholder-inner small {
  color: #8ba0b2;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.03em;

  text-transform: uppercase;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .well-wishers-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}


@media (max-width: 760px) {

  .well-wishers-hero {
    padding:
      60px 0 52px;
  }


  .well-wishers-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 16px;
  }

}


@media (max-width: 420px) {

  .well-wishers-grid {
    gap: 12px;
  }


  .well-wisher-photo {
    border-radius: 13px;
  }


  .well-wisher-placeholder-inner > span {
    width: 58px;
    height: 58px;

    font-size: 23px;
  }


  .well-wisher-placeholder-inner small {
    font-size: 9px;
  }

}






/* =========================================================
   ABOUT US VALUE CARDS - FONT SIZE FIX
========================================================= */

.value-card h3 {
  font-size: 19px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

.value-card p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
}


/* Tablet */

@media (max-width: 900px) {

  .value-card h3 {
    font-size: 18px !important;
  }

  .value-card p {
    font-size: 15.5px !important;
  }

}


/* Mobile */

@media (max-width: 640px) {

  .value-card h3 {
    font-size: 18px !important;
  }

  .value-card p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

}


.involved-closing-message {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--navy-950);
  font-size: 18px !important;
  line-height: 1.6 !important;
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .involved-closing-message {
    margin-top: 26px;
    font-size: 16px !important;
  }
}




/* =========================================================
   DYNAMIC YEARLY GALLERY
========================================================= */

.gallery-events-section {
  background: #ffffff;
}


/* HEADER */

.gallery-events-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}


.gallery-year-summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  border: 1px solid #e4edf5;
  border-radius: 999px;

  background: #f8fbfd;

  color: var(--text-muted);

  font-size: 14px;
  font-weight: 700;
}


.gallery-year-summary i {
  color: var(--primary-blue);
}



/* =========================================================
   YEAR FILTER
========================================================= */

.gallery-year-filter {
  display: flex;
  align-items: center;
  gap: 10px;

  overflow-x: auto;

  margin-bottom: 38px;
  padding-bottom: 4px;

  scrollbar-width: thin;
}


.gallery-year-filter a {
  flex: 0 0 auto;

  min-width: 82px;

  padding: 11px 21px;

  text-align: center;
  text-decoration: none;

  border: 1px solid #dbe7f0;
  border-radius: 999px;

  background: #ffffff;

  color: var(--navy-950);

  font-size: 15px;
  font-weight: 800;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


.gallery-year-filter a:hover {
  transform: translateY(-2px);

  border-color: var(--primary-blue);
}


.gallery-year-filter a.active {
  border-color: var(--primary-blue);

  background: var(--primary-blue);

  color: #ffffff;
}



/* =========================================================
   SELECTED YEAR
========================================================= */

.gallery-selected-year {
  display: flex;
  align-items: baseline;
  gap: 10px;

  margin-bottom: 22px;
}


.gallery-selected-year span {
  color: var(--text-muted);

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}


.gallery-selected-year strong {
  color: var(--navy-950);

  font-size: 32px;
  font-weight: 900;
}



/* =========================================================
   EVENT GRID
========================================================= */

.gallery-event-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}



/* CARD */

.gallery-event-card {
  overflow: hidden;

  border: 1px solid #e5edf3;
  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 10px 35px rgba(20, 59, 96, .08);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.gallery-event-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(20, 59, 96, .13);
}



/* IMAGE */

.gallery-event-image {
  position: relative;

  display: block;

  width: 100%;
  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #edf4f8;
}


.gallery-event-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;
}


.gallery-event-card:hover
.gallery-event-image img {
  transform: scale(1.04);
}



/* PLACEHOLDER */

.gallery-event-placeholder {
  display: grid;

  width: 100%;
  height: 100%;

  place-items: center;

  color: #9db2c2;

  font-size: 42px;
}



/* DATE */

.gallery-event-date {
  position: absolute;

  left: 16px;
  bottom: 16px;

  padding: 7px 11px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .94);

  color: var(--navy-950);

  font-size: 12px;
  font-weight: 800;
}



/* PHOTO COUNT */

.gallery-event-photo-count {
  position: absolute;

  top: 16px;
  right: 16px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  border-radius: 999px;

  background: rgba(13, 43, 74, .88);

  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
}



/* CONTENT */

.gallery-event-content {
  padding: 22px;
}


.gallery-event-content h3 {
  margin: 0 0 10px;

  font-size: 21px;
  line-height: 1.35;
}


.gallery-event-content h3 a {
  color: var(--navy-950);

  text-decoration: none;
}


.gallery-event-content p {
  margin: 0 0 18px;

  color: var(--text-muted);

  font-size: 15px !important;
  line-height: 1.7 !important;
}


.gallery-view-event {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--primary-blue);

  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
}


.gallery-view-event i {
  font-size: 12px;

  transition: transform .25s ease;
}


.gallery-view-event:hover i {
  transform: translateX(4px);
}



/* =========================================================
   EVENT DETAIL
========================================================= */

.gallery-event-hero-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 8px 0 8px;

  color: var(--primary-blue);

  font-weight: 800;
}


.gallery-event-back {
  display: flex;
  justify-content: center;

  margin-top: 38px;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

  .gallery-event-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 760px) {

  .gallery-events-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }


  .gallery-event-grid {
    grid-template-columns: 1fr;
  }


  .gallery-selected-year strong {
    font-size: 27px;
  }


  .gallery-year-filter {
    margin-right: -16px;
    padding-right: 16px;
  }

}



.involved-share-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 0;

  border: 0;
  background: transparent;

  color: var(--primary-blue);

  font: inherit;
  font-size: 14px;
  font-weight: 800;

  cursor: pointer;
}

.involved-share-link:hover {
  text-decoration: underline;
}


/* =========================================================
   DONATION CLOSING MESSAGE
========================================================= */

.donation-closing-text {
  margin-top: 18px !important;
  margin-bottom: 24px !important;

  color: #ffffff !important;

  font-size: 17px !important;
  line-height: 1.65 !important;
  font-weight: 700 !important;

  opacity: .95;
}


@media (max-width: 640px) {

  .donation-closing-text {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }

}




/* =========================================================
   WELL WISHER VIDEO MESSAGES
========================================================= */

.well-wisher-videos-section {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 100%
    );
}


.well-wisher-video-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


.well-wisher-video-intro {
  max-width: 700px;

  margin:
    14px auto
    0;

  color: var(--text-muted);

  text-align: center;

  font-size: 16px !important;
  line-height: 1.75 !important;
}



/* =========================================================
   VIDEO GRID
========================================================= */

.well-wisher-video-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 360px));

  justify-content: center;

  gap: 28px;

  margin-top: 38px;
}



/* =========================================================
   VIDEO CARD
========================================================= */

.well-wisher-video-card {
  display: block;

  width: 100%;

  padding: 0;

  overflow: hidden;

  border: 1px solid #e3edf4;
  border-radius: 24px;

  background: #ffffff;

  cursor: pointer;

  box-shadow:
    0 14px 40px
    rgba(18, 59, 102, .10);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}


.well-wisher-video-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 22px 50px
    rgba(18, 59, 102, .16);
}



/* =========================================================
   POSTER
========================================================= */

.well-wisher-video-poster {
  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: #0d2238;
}


.well-wisher-video-poster img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform .45s ease;
}


.well-wisher-video-card:hover
.well-wisher-video-poster img {
  transform:
    scale(1.025);
}



/* =========================================================
   OVERLAY
========================================================= */

.well-wisher-video-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(7, 31, 55, .03) 30%,
      rgba(7, 31, 55, .64) 100%
    );
}



/* =========================================================
   PLAY BUTTON
========================================================= */

.well-wisher-play-button {
  position: absolute;

  top: 50%;
  left: 50%;

  display: grid;

  width: 70px;
  height: 70px;

  place-items: center;

  transform:
    translate(-50%, -50%);

  border: 5px solid
    rgba(255,255,255,.34);

  border-radius: 50%;

  background: #ffffff;

  color: var(--primary-blue);

  font-size: 21px;

  box-shadow:
    0 12px 35px
    rgba(0,0,0,.20);

  transition:
    transform .3s ease;
}


.well-wisher-play-button i {
  margin-left: 4px;
}


.well-wisher-video-card:hover
.well-wisher-play-button {
  transform:
    translate(-50%, -50%)
    scale(1.08);
}



/* =========================================================
   WATCH LABEL
========================================================= */

.well-wisher-watch-label {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 11px 16px;

  border: 1px solid
    rgba(255,255,255,.28);

  border-radius: 999px;

  background:
    rgba(255,255,255,.94);

  color: var(--navy-950);

  font-size: 14px;
  font-weight: 800;

  backdrop-filter:
    blur(8px);
}



/* =========================================================
   CTA
========================================================= */

.well-wisher-video-action {
  display: flex;

  justify-content: center;

  margin-top: 34px;
}



/* =========================================================
   VIDEO MODAL
========================================================= */

.well-wisher-video-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: grid;

  place-items: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .25s ease,
    visibility .25s ease;
}


.well-wisher-video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.well-wisher-video-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(4, 16, 29, .88);

  backdrop-filter:
    blur(8px);
}



/* =========================================================
   MODAL DIALOG
========================================================= */

.well-wisher-video-modal-dialog {
  position: relative;

  z-index: 2;

  width: min(
    420px,
    calc(100vw - 32px)
  );

  max-height:
    calc(100vh - 40px);

  overflow: hidden;

  border-radius: 24px;

  background: #000000;

  box-shadow:
    0 30px 80px
    rgba(0,0,0,.45);
}


.well-wisher-video-modal-dialog video {
  display: block;

  width: 100%;

  max-height:
    calc(100vh - 40px);

  aspect-ratio: 9 / 16;

  object-fit: contain;

  background: #000000;
}



/* =========================================================
   CLOSE BUTTON
========================================================= */

.well-wisher-video-close {
  position: absolute;

  top: 14px;
  right: 14px;

  z-index: 5;

  display: grid;

  width: 42px;
  height: 42px;

  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background:
    rgba(255,255,255,.94);

  color: #102e4c;

  cursor: pointer;

  font-size: 18px;

  box-shadow:
    0 6px 20px
    rgba(0,0,0,.22);
}



/* =========================================================
   BODY MODAL STATE
========================================================= */

body.video-modal-open {
  overflow: hidden;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

  .well-wisher-video-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

  .well-wisher-video-grid {
    display: flex;

    justify-content: flex-start;

    gap: 16px;

    overflow-x: auto;

    margin-left: -16px;
    margin-right: -16px;

    padding:
      4px 16px
      18px;

    scroll-snap-type:
      x mandatory;

    scrollbar-width: none;
  }


  .well-wisher-video-grid::-webkit-scrollbar {
    display: none;
  }


  .well-wisher-video-card {
    flex:
      0 0
      min(78vw, 320px);

    scroll-snap-align:
      center;
  }


  .well-wisher-play-button {
    width: 62px;
    height: 62px;

    font-size: 18px;
  }


  .well-wisher-watch-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }


  .well-wisher-video-modal {
    padding: 12px;
  }


  .well-wisher-video-modal-dialog {
    width:
      min(
        410px,
        calc(100vw - 24px)
      );

    max-height:
      calc(100vh - 24px);
  }


  .well-wisher-video-modal-dialog video {
    max-height:
      calc(100vh - 24px);
  }

}





/* =========================================================
   ABOUT STORY
========================================================= */

.about-story-copy > p {
  margin-bottom: 16px;
}

.about-story-more {
  margin: 8px 0 20px;
}

.about-story-more summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;

  color: var(--primary-blue);

  font-size: 15px;
  font-weight: 800;

  list-style: none;
}

.about-story-more summary::-webkit-details-marker {
  display: none;
}

.about-story-more summary::after {
  content: "+";
  margin-left: 8px;
  font-size: 20px;
}

.about-story-more[open] summary::after {
  content: "−";
}

.about-story-more-content {
  margin-top: 16px;
}

.about-foundation-tagline {
  padding: 16px 18px;

  border-left: 4px solid var(--primary-blue);
  border-radius: 0 12px 12px 0;

  background: #f2f8fc;

  color: var(--navy-950) !important;

  font-weight: 800 !important;
}


/* =========================================================
   CAMP PROGRAM CARDS
========================================================= */

.programs-intro {
  max-width: 760px;
  margin: 14px auto 0;

  text-align: center;

  color: var(--text-muted);
}

.camp-program-card {
  padding: 28px 24px;
}

.camp-program-icon {
  display: grid;

  width: 62px;
  height: 62px;

  margin-bottom: 22px;

  place-items: center;

  border-radius: 18px;

  font-size: 25px;
}

.camp-eye-icon {
  background: #e8f5ff;
  color: #238bd5;
}

.camp-dental-icon {
  background: #eff8f2;
  color: #2a9d62;
}

.camp-blood-icon {
  background: #fff0f1;
  color: #db5361;
}

.camp-mobility-icon {
  background: #fff3e9;
  color: #ef7b27;
}

.program-details-btn {
  padding: 0;
  border: 0;
  background: transparent;

  color: var(--primary-blue);

  font: inherit;
  font-size: 14px;
  font-weight: 800;

  cursor: pointer;
}


/* =========================================================
   PROGRAM MODAL
========================================================= */

.program-details-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: .25s ease;
}

.program-details-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.program-details-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5, 28, 50, .78);

  backdrop-filter: blur(5px);
}

.program-details-dialog {
  position: relative;
  z-index: 2;

  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;

  padding: 34px;

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .22);
}

.program-details-dialog h2 {
  margin: 8px 0 14px;

  color: var(--navy-950);

  font-size: 28px;
  line-height: 1.3;
}

.program-details-dialog p {
  color: var(--text-muted);

  font-size: 16px !important;
  line-height: 1.75 !important;
}

.program-details-close {
  position: absolute;

  top: 16px;
  right: 16px;

  display: grid;

  width: 40px;
  height: 40px;

  place-items: center;

  border: 0;
  border-radius: 50%;

  background: #edf4f8;
  color: var(--navy-950);

  cursor: pointer;
}

.program-details-contact {
  margin-top: 8px;
}

body.program-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {

  .program-details-dialog {
    padding: 28px 22px;
  }

  .program-details-dialog h2 {
    font-size: 23px;
  }

}





/* =========================================================
   ABOUT SECTION - FINAL BALANCED DESIGN
========================================================= */

.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* MAIN LAYOUT */

.about-section .about-layout {
  display: grid;

  grid-template-columns:
    minmax(0, .92fr)
    minmax(0, 1.08fr);

  gap: 64px;

  align-items: start;
}



/* =========================================================
   LEFT IMAGE
========================================================= */

.about-section .about-image-wrap {
  position: sticky;

  top: 145px;

  margin-top: 58px;
}


.about-section .about-image-wrap img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center;

  border-radius: 22px;
}



/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-section .about-content {
  min-width: 0;
}


.about-section
.about-content
.section-title {
  max-width: 820px;

  margin-top: 10px;
  margin-bottom: 16px;

  font-size:
    clamp(
      36px,
      3vw,
      50px
    ) !important;

  line-height: 1.08 !important;

  letter-spacing: -.025em;
}


.about-story-copy {
  max-width: 820px;
}


.about-story-copy > p {
  margin-bottom: 16px;

  font-size: 16px !important;
  line-height: 1.75 !important;
}



/* =========================================================
   READ OUR STORY
========================================================= */

.about-story-more {
  margin-top: 10px;
  margin-bottom: 20px;
}


.about-story-more summary {
  display: inline-flex;
  align-items: center;

  color: var(--primary-blue);

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;

  list-style: none;
}


.about-story-more summary::-webkit-details-marker {
  display: none;
}


.about-story-more summary::after {
  content: "+";

  margin-left: 8px;

  font-size: 19px;
  line-height: 1;
}


.about-story-more[open]
summary::after {
  content: "−";
}


.about-story-more-content {
  margin-top: 16px;
}



/* =========================================================
   FOUNDATION TAGLINE
========================================================= */

.about-foundation-tagline {
  margin-top: 18px !important;
  margin-bottom: 28px !important;

  padding: 15px 18px !important;

  border-left:
    4px solid
    var(--primary-blue);

  border-radius:
    0 12px 12px 0 !important;

  background:
    #f2f7fb !important;

  color:
    var(--navy-950) !important;

  font-size:
    15px !important;

  line-height:
    1.65 !important;

  font-weight:
    750 !important;
}



/* =========================================================
   VALUES - 2 x 2 GRID
========================================================= */

.about-section .values-grid {
  display: grid !important;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    ) !important;

  gap: 16px !important;

  margin-top: 0 !important;
}



/* =========================================================
   VALUE CARD
========================================================= */

.about-section .value-card {
  display: grid !important;

  grid-template-columns:
    48px 1fr !important;

  grid-template-areas:
    "icon title"
    "icon text";

  column-gap: 15px !important;
  row-gap: 5px !important;

  align-items: start !important;

  min-height: 0 !important;

  padding:
    20px 18px !important;

  text-align:
    left !important;

  border-radius:
    16px !important;
}


.about-section
.value-card
.value-icon {
  grid-area: icon;

  width: 46px !important;
  height: 46px !important;

  margin: 0 !important;
}


.about-section
.value-card h3 {
  grid-area: title;

  margin:
    2px 0 2px !important;

  font-size:
    18px !important;

  line-height:
    1.3 !important;
}


.about-section
.value-card p {
  grid-area: text;

  margin: 0 !important;

  font-size:
    15px !important;

  line-height:
    1.65 !important;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .about-section
  .about-layout {
    gap: 42px;
  }


  .about-section
  .about-image-wrap {
    top: 130px;

    margin-top: 45px;
  }

}



/* =========================================================
   MOBILE / TABLET STACK
========================================================= */

@media (max-width: 900px) {

  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .about-section
  .about-layout {
    grid-template-columns:
      1fr !important;

    gap: 36px !important;
  }


  .about-section
  .about-image-wrap {
    position: relative;

    top: auto;

    margin-top: 0;

    order: 2;
  }


  .about-section
  .about-content {
    order: 1;
  }


  .about-section
  .about-image-wrap img {
    max-height: 520px;
  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 640px) {

  .about-section
  .about-content
  .section-title {
    font-size:
      32px !important;

    line-height:
      1.15 !important;
  }


  .about-section
  .values-grid {
    grid-template-columns:
      1fr !important;
  }


  .about-section
  .value-card {
    padding:
      18px 16px !important;
  }


  .about-foundation-tagline {
    font-size:
      14.5px !important;
  }

}