:root {
  --orange: #2fa9d5;
  --orange-dark: #32398a;
  --green: #35b4de;
  --blue: #32398a;
  --cyan: #2fa9d5;
  --indigo: #32398a;
  --yellow: #c9f3fb;
  --ink: #182047;
  --muted: #64748b;
  --soft: #f5fbff;
  --line: #dcecf6;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(50, 57, 138, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(32, 36, 63, 0.09);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header .navbar {
  padding: 0px 0;
  transition: padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(32, 36, 63, 0.13);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .navbar {
  padding: 6px 0;
}
.brand-logo-frame {
  position: relative;
  display: inline-flex;
  width: 112px;
  height: 64px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.brand-logo-frame img {
  display: block;
  width: 75px;
  height: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding-inline: 11px;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
}

.header-menu {
  gap: 6px;
}

.dropdown-toggle::after {
  width: 9px;
  height: 9px;
  margin-left: 8px;
  vertical-align: 2px;
  border: solid currentColor;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

.dropdown-menu {
  min-width: 230px;
  margin-top: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(32, 36, 63, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.16);
}

.dropdown-item {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 10px;
  font-weight: 600;
      font-size: 15px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--orange);
  background: rgba(47, 169, 213, 0.08);
}

.mobile-menu-top,
.mobile-menu-search {
  display: none;
}

@media (min-width: 992px) {
  .donation-info-panel {
    position: sticky;
    top: 104px;
  }

  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .navbar .dropdown:hover > .dropdown-toggle,
  .navbar .dropdown:focus-within > .dropdown-toggle {
    color: var(--orange);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    font-size: 13px;
    padding-inline: 7px;
  }

  .header-menu {
    gap: 2px;
  }

  .btn-donate {
    min-width: 124px;
    padding-right: 12px;
    font-size: 0.76rem;
  }

  .brand-logo-frame {
    width: 96px;
  }

  .brand-logo-frame img {
    width: 92px;
  }
}

.navbar-toggler {
  border: 1px solid rgba(32, 36, 63, 0.16);
  box-shadow: none;
  background: transparent;
}

.menu-grid-toggle {
  display: none;
  width: 46px;
  height: 42px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  border-color: rgba(50, 57, 138, 0.18);
  border-radius: 10px;
}

.menu-grid-toggle:focus {
  box-shadow: 0 0 0 0.18rem rgba(47, 169, 213, 0.16);
}

.menu-grid-toggle span {
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 700;
  padding: 11px 22px;
  border: 1px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.btn-donate,
.btn-primary-ngo {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: 0;
  box-shadow: 0 10px 24px rgba(47, 169, 213, 0.24);
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 136px;
  justify-content: center;
  padding: 5px 16px 5px 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(47, 169, 213, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-donate span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.98rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.btn-donate:hover,
.btn-donate:focus-visible,
.btn-primary-ngo:hover,
.btn-primary-ngo:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-dark), #1f286f);
  box-shadow: 0 14px 30px rgba(47, 169, 213, 0.32);
}

.btn-donate:hover span,
.btn-donate:focus-visible span {
  color: var(--orange-dark);
  transform: scale(1.04);
}

.btn-outline-light-ngo {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-light-ngo:hover,
.btn-outline-light-ngo:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
}

.hero-section {
  position: relative;
  margin-top: 64px;
  color: var(--white);
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(246, 251, 255, 0.92));
}

.hero-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slide-item {
  height: 690px;
}

.hero-slider .slick-list {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  height: 690px;
  align-items: center;
  padding: 92px 0 118px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 52px),
    radial-gradient(circle at 18% 24%, rgba(47, 169, 213, 0.18), transparent 28%);
  background-size: 52px 52px, auto;
  opacity: 0.54;
}

.hero-slide .container {
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.94) 0%, rgba(19, 27, 60, 0.82) 43%, rgba(10, 24, 48, 0.44) 100%),
    linear-gradient(180deg, rgba(5, 8, 23, 0.26), rgba(5, 8, 23, 0.44));
}

.hero-slider .slick-dots {
  bottom: 34px;
  left: calc((100vw - min(100vw, 1320px)) / 2 + 12px);
  width: auto;
  text-align: left;
}

.hero-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px 0 0;
}

.hero-slider .slick-dots li button {
  width: 38px;
  height: 5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.hero-slider .slick-dots li button::before {
  display: none;
}

.hero-slider .slick-dots li.slick-active button {
  background: var(--orange);
}

.hero-arrow {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow.prev {
  right: 92px;
}

.hero-arrow:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--yellow);
}

.hero-section .section-kicker {
  margin-bottom: 14px;
  padding: 8px 13px;
  width: fit-content;
  color: #fff5d8;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  backdrop-filter: blur(10px);
}

.hero-section .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.hero-title {
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-slide-item .section-kicker,
.hero-slide-item .hero-title,
.hero-slide-item .hero-subtitle,
.hero-slide-item .hero-actions,
.hero-slide-item .hero-trust-strip {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider.slick-initialized .hero-slide-item:not(.slick-active) .section-kicker,
.hero-slider.slick-initialized .hero-slide-item:not(.slick-active) .hero-title,
.hero-slider.slick-initialized .hero-slide-item:not(.slick-active) .hero-subtitle,
.hero-slider.slick-initialized .hero-slide-item:not(.slick-active) .hero-actions,
.hero-slider.slick-initialized .hero-slide-item:not(.slick-active) .hero-trust-strip {
  opacity: 0;
}

.hero-slide-item.slick-active .section-kicker {
  animation: slideTextUp 0.65s ease forwards 0.15s;
}

.hero-slide-item.slick-active .hero-title {
  animation: slideTextUp 0.75s ease forwards 0.28s;
}

.hero-slide-item.slick-active .hero-subtitle {
  animation: slideTextUp 0.75s ease forwards 0.42s;
}

.hero-slide-item.slick-active .hero-actions {
  animation: slideTextUp 0.75s ease forwards 0.56s;
}

.hero-slide-item.slick-active .hero-trust-strip {
  animation: slideTextUp 0.75s ease forwards 0.68s;
}

@keyframes slideTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-trust-strip div {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 18px 18px 17px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(5, 8, 23, 0.18);
  backdrop-filter: blur(12px);
}

.hero-trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.hero-trust-strip strong,
.hero-trust-strip span {
  display: block;
}

.hero-trust-strip strong {
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 700;
}

.hero-trust-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-proof-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(10, 24, 48, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 28px 76px rgba(5, 8, 23, 0.28);
  backdrop-filter: blur(18px);
}

.hero-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), rgba(255, 255, 255, 0.7));
}

.hero-proof-logo {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(5, 8, 23, 0.2);
}

.hero-proof-logo img {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}

.hero-proof-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof-panel h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
  font-weight: 700;
}

.hero-proof-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-proof-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-proof-panel li i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 11px;
  font-size: 0.88rem;
}

.hero-proof-panel a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 800;
}

.hero-proof-panel a:hover {
  color: var(--yellow);
}

.home-impact-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  background: transparent;
}

.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(32, 36, 63, 0.14);
  backdrop-filter: blur(16px);
}

.home-impact-grid div {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(47, 169, 213, 0.24), rgba(255, 196, 87, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-impact-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(32, 36, 63, 0.1);
}

.home-impact-grid i {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 15px;
}

.home-impact-grid strong,
.home-impact-grid span {
  display: block;
}

.home-impact-grid strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

.home-impact-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section-padding {
  padding: 100px 0;
}

.soft-bg {
  background: var(--soft);
}

#programs {
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

#gallery {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

#campaigns {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 169, 213, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

#blog {
  background: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
  font-weight: 600;
}

.section-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-section {
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 169, 213, 0.12), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(255, 196, 87, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 80px;
  width: 360px;
  height: 360px;
  background: rgba(50, 57, 138, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.image-stack {
  position: relative;
  padding: 26px 26px 26px 0;
}

.image-stack::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 78%;
  background: linear-gradient(135deg, rgba(47, 169, 213, 0.18), rgba(50, 57, 138, 0.12));
  border-radius: 36px;
}

.image-stack::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: 0;
  width: 62%;
  height: 58%;
  background: linear-gradient(135deg, rgba(50, 57, 138, 0.08), rgba(47, 169, 213, 0.06));
  border-radius: 32px;
}

.main-image {
  position: relative;
  z-index: 1;
  min-height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(50, 57, 138, 0.18);
}

.about-video-stack {
  isolation: isolate;
}

.about-video {
  display: block;
  height: 520px;
  background: #071329;
  border: 12px solid var(--white);
  outline: 1px solid rgba(47, 169, 213, 0.2);
  box-shadow: 0 30px 80px rgba(32, 36, 63, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  cursor: pointer;
}

.about-video-play {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 3;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 24px 56px rgba(32, 36, 63, 0.28);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-video-play::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  animation: playPulse 1.7s ease infinite;
}

.about-video-play i {
  position: relative;
  z-index: 1;
  margin-left: 4px;
  font-size: 1.4rem;
}

.about-video-play:hover,
.about-video-play:focus-visible {
  box-shadow: 0 30px 70px rgba(47, 169, 213, 0.34);
  transform: translate(-50%, -50%) scale(1.04);
  outline: 0;
}

.about-video-stack.is-playing .about-video-play {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.88);
}

@keyframes playPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.about-video-caption {
  position: absolute;
  left: 26px;
  right: 52px;
  bottom: 0;
  z-index: 2;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(24, 32, 71, 0.92), rgba(47, 169, 213, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(32, 36, 63, 0.2);
  backdrop-filter: blur(14px);
}

.about-video-caption span,
.about-video-caption strong {
  display: block;
}

.about-video-caption span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-video-caption strong {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
}

.about-video-label {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(50, 57, 138, 0.9), rgba(24, 32, 71, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(5, 8, 23, 0.18);
  backdrop-filter: blur(12px);
}

.about-video-label i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
}

.about-video-label span {
  font-size: 0.82rem;
  font-weight: 600;
}

.experience-card {
  position: absolute;
  right: -24px;
  bottom: 38px;
  max-width: 210px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(47, 169, 213, 0.28);
}

.experience-card span {
  display: block;
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 600;
}

.experience-card p {
  margin: 8px 0 0;
  line-height: 1.35;
}

.trust-badge {
  position: absolute;
  left: -4px;
  bottom: 34px;
  display: flex;
  max-width: 290px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 20px;
  box-shadow: 0 22px 46px rgba(32, 36, 63, 0.13);
  backdrop-filter: blur(12px);
}

.trust-badge i {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 14px;
}

.trust-badge strong,
.trust-badge small {
  display: block;
}

.trust-badge strong {
  font-weight: 600;
}

.trust-badge small {
  color: var(--muted);
  line-height: 1.4;
}

.about-content {
  padding-left: 18px;
}

.about-content .section-title {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1.15;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 16px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(47, 169, 213, 0.12), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-highlights div {
  position: relative;
  min-height: 118px;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(50, 57, 138, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-highlights div::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.about-highlights div:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 169, 213, 0.3);
  box-shadow: 0 20px 44px rgba(50, 57, 138, 0.1);
}

.about-highlights i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 12px;
  font-size: 1rem;
}

.about-highlights span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.value-card,
.program-card,
.testimonial-card,
.contact-info,
.contact-form {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.07);
}

.value-card {
  padding: 24px;
}

.value-card > i {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 16px;
  font-size: 1.3rem;
}

.mission-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.mission-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -130px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 169, 213, 0.2), transparent 68%);
}

.mission-card {
  position: relative;
  min-height: 310px;
  padding: 36px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: rgba(47, 169, 213, 0.12);
  border-radius: 50%;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.mission-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1f245f);
  border-color: transparent;
}

.mission-card.featured p,
.mission-card.featured span {
  color: rgba(255, 255, 255, 0.78);
}

.mission-card.featured .value-icon {
  background: var(--orange);
}

.mission-card .value-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 18px;
  font-size: 1.35rem;
}

.mission-card span {
  position: absolute;
  top: 34px;
  right: 34px;
  color: rgba(32, 36, 63, 0.16);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.mission-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 600;
}

.mission-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.donation-impact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.donation-impact-section::before,
.donation-impact-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.donation-impact-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 169, 213, 0.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(47, 169, 213, 0.08), transparent 24%),
    radial-gradient(rgba(50, 57, 138, 0.075) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
}

.donation-impact-section::after {
  right: -220px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  background: rgba(50, 57, 138, 0.08);
  border-radius: 50%;
}

.donation-impact-section .container {
  position: relative;
  z-index: 1;
}

.donation-impact-card {
  position: relative;
  padding: clamp(30px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 36, 63, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(32, 36, 63, 0.13);
  backdrop-filter: blur(18px);
}

.donation-impact-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 22px;
  pointer-events: none;
}

.impact-stat-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: -70px;
  padding: 0 22px 22px;
}

.impact-mini-card {
  min-height: 112px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(32, 36, 63, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(32, 36, 63, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.impact-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 169, 213, 0.22);
  box-shadow: 0 22px 46px rgba(32, 36, 63, 0.13);
}

.impact-mini-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
  font-weight: 600;
}

.impact-mini-card span {
  color: #002d68;
  font-size: 0.86rem;
  font-weight: 700;
}

.impact-copy-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.impact-copy-panel p {
  margin-bottom: 20px;
  color: #34517e;
  font-size: 1.03rem;
  line-height: 1.75;
}

.impact-copy-panel .section-kicker {
  color: var(--blue);
}

.impact-copy-panel .impact-kicker {
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.impact-copy-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #050817;
  font-size: clamp(1.85rem, 3.6vw, 3.25rem);
  line-height: 1.12;
  font-weight: 600;
}

.impact-lead {
  max-width: 660px;
  color: #254879;
  font-size: 1.15rem;
}

.impact-copy-panel p strong {
  color: #002d68;
  font-weight: 600;
}

.impact-copy-panel p span {
  color: var(--orange);
  font-weight: 600;
}

.impact-copy-panel h3 {
  max-width: 670px;
  margin: 30px 0 18px;
  color: #002d68;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.35;
  font-weight: 600;
  text-transform: none;
}

.impact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.impact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
}

.impact-link:hover {
  color: var(--orange);
}

.impact-visual-panel {
  position: relative;
  padding-bottom: 18px;
}

.impact-visual-panel img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(32, 36, 63, 0.18);
}

.impact-floating-note {
  position: absolute;
  top: 24px;
  left: -24px;
  display: flex;
  max-width: 230px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.16);
}

.impact-floating-note i {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
}

.impact-floating-note span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.value-card h3,
.program-card h3,
.campaign-body h3,
.testimonial-card h3,
.blog-body h3,
.contact-row h3 {
  font-size: 1.14rem;
  font-weight: 600;
}

.value-card p,
.program-card p,
.campaign-body p,
.testimonial-card p,
.blog-body p,
.contact-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.program-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: rgba(47, 169, 213, 0.16);
  box-shadow: var(--shadow);
}

.program-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 23, 0.03), rgba(5, 8, 23, 0.42));
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.08);
}

.program-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(47, 169, 213, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.program-body {
  position: relative;
  padding: 30px;
}

.program-icon {
  position: absolute;
  top: -32px;
  left: 30px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 5px solid var(--white);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(32, 36, 63, 0.18);
  font-size: 1.3rem;
}

.program-body h3 {
  margin: 18px 0 12px;
}

.program-body p {
  min-height: 78px;
}

.program-body a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.program-body a:hover {
  color: var(--orange);
}

.program-body a i {
  transition: transform 0.25s ease;
}

.program-body a:hover i {
  transform: translateX(4px);
}

.impact-section {
  padding: 78px 0;
  color: var(--white);
  background: linear-gradient(135deg, #11304f, #1f6f56);
}

.impact-item {
  padding: 20px;
}

.counter {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
}

.impact-item p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.campaign-card,
.blog-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(20, 33, 61, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.campaign-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.campaign-card img,
.blog-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.campaign-body,
.blog-body {
  padding: 26px;
}

.progress {
  height: 10px;
  margin: 22px 0 12px;
  background: #edf2f7;
  border-radius: 999px;
}

.progress-bar {
  background: var(--orange);
  border-radius: 999px;
}

.progress-bar.green {
  background: var(--green);
}

.progress-bar.blue {
  background: var(--blue);
}

.campaign-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-card-action {
  width: 100%;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(50, 57, 138, 0.16);
}

.btn-card-action:hover,
.btn-card-action:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(47, 169, 213, 0.24);
}

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

#gallery {
  position: relative;
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 169, 213, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.gallery-heading,
.premium-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: 42px;
}

.gallery-heading .section-kicker,
.premium-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 9px 18px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: none;
  background: linear-gradient(180deg, var(--white), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(47, 169, 213, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(20, 33, 61, 0.08);
}

.gallery-heading .section-kicker::before,
.premium-heading .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(47, 169, 213, 0.08);
}

.gallery-heading .section-title,
.premium-heading .section-title {
  max-width: 900px;
  margin: 0 auto 16px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  line-height: 1.18;
}

.gallery-heading .section-text,
.premium-heading .section-text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(20, 33, 61, 0.11);
}

.gallery-item::after {
  content: "\f00e";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(20, 33, 61, 0.34));
  opacity: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 2rem;
  font-weight: 900;
  transition: opacity 0.25s ease;
}

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

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

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

.volunteer-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 8, 23, 0.88), rgba(50, 57, 138, 0.72)),
    url("../images/IMG-20260512-WA0005.jpg") center/cover no-repeat;
}

.volunteer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.volunteer-section .container {
  position: relative;
  z-index: 1;
}

.volunteer-section h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-weight: 600;
}

.volunteer-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.btn-light-action {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 12px 26px rgba(5, 8, 23, 0.18);
}

.btn-light-action:hover,
.btn-light-action:focus-visible {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(47, 169, 213, 0.28);
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.testimonial-section::after {
  display: none;
}

.testimonial-carousel {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-stage-outer {
  padding: 8px 0 8px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 390px;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 36, 63, 0.08);
  border-radius: 26px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--blue));
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.quote-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 18px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #f5b301;
  font-size: 0.9rem;
}

.testimonial-card p {
  flex: 1;
  margin-bottom: 28px;
  color: #34517e;
  font-size: 1rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-carousel .owl-item .testimonial-author img,
.testimonial-author img {
  display: block;
  flex: 0 0 58px;
  width: 58px !important;
  height: 58px !important;
  object-fit: cover;
  border: 3px solid rgba(47, 169, 213, 0.2);
  border-radius: 50%;
}

.testimonial-author > div {
  min-width: 0;
}

.testimonial-author h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-card span {
  display: block;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white) !important;
  background: var(--blue) !important;
  border-radius: 50% !important;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-carousel .owl-nav button:hover {
  background: var(--orange) !important;
  transform: translateY(-2px);
}

.testimonial-carousel .owl-dots {
  margin-top: 18px !important;
}

.testimonial-carousel .owl-dot span {
  width: 28px !important;
  height: 5px !important;
  background: rgba(50, 57, 138, 0.22) !important;
  border-radius: 999px !important;
}

.testimonial-carousel .owl-dot.active span {
  background: var(--orange) !important;
}

.partners-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.home-documents-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 169, 213, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 196, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.document-archive-link {
  display: inline-flex;
  color: var(--blue);
}

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

.home-document-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(32, 36, 63, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-document-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.home-document-card::after {
  content: "PDF";
  position: absolute;
  right: -16px;
  bottom: 18px;
  color: rgba(47, 169, 213, 0.07);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 800;
}

.home-document-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 30px 70px rgba(32, 36, 63, 0.13);
}

.home-document-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #20243f, #32398a);
  border-color: rgba(255, 255, 255, 0.12);
}

.home-document-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 18px;
  font-size: 1.25rem;
}

.home-document-card.featured .home-document-icon {
  color: var(--blue);
  background: var(--white);
}

.home-document-card span,
.home-document-card h3,
.home-document-card p,
.home-document-card a {
  position: relative;
  z-index: 1;
}

.home-document-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-document-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.home-document-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-document-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.home-document-card.featured span,
.home-document-card.featured h3,
.home-document-card.featured p,
.home-document-card.featured a {
  color: var(--white);
}

.home-document-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(32, 36, 63, 0.14);
}

.partner-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.partner-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 23, 0.42));
}

.partner-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(47, 169, 213, 0.94);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(47, 169, 213, 0.24);
}

.partner-image-badge strong,
.partner-image-badge span {
  display: block;
}

.partner-image-badge strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.partner-image-badge span {
  margin-top: 6px;
  font-weight: 700;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-logo {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 22px 46px rgba(20, 33, 61, 0.1);
}

.partner-logo i {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 16px;
}

.partner-logo span {
  display: block;
}

.blog-body span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 169, 213, 0.12), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(255, 196, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.68)),
    url("../images/hero-community.jpg") center/cover no-repeat;
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.58;
}

.contact-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(5, 8, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.contact-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), rgba(255, 255, 255, 0.65));
}

.contact-hero-panel > i {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(5, 8, 23, 0.18);
  font-size: 1.35rem;
}

.contact-hero-panel span,
.contact-hero-panel strong {
  display: block;
}

.contact-hero-panel span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
}

.contact-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-choice-band {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  background: transparent;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(32, 36, 63, 0.14);
  backdrop-filter: blur(16px);
}

.contact-choice-grid a {
  display: grid;
  min-height: 132px;
  padding: 22px;
  color: inherit;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid rgba(47, 169, 213, 0.12);
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-choice-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 20px 46px rgba(32, 36, 63, 0.1);
}

.contact-choice-grid i {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 15px;
}

.contact-choice-grid strong,
.contact-choice-grid span {
  display: block;
}

.contact-choice-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 800;
}

.contact-choice-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.premium-breadcrumb {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 13px 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(5, 8, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
  font-weight: 700;
}

.premium-breadcrumb a,
.premium-breadcrumb span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.premium-breadcrumb a {
  color: var(--white);
  transition: color 0.25s ease, transform 0.25s ease;
}

.premium-breadcrumb a:hover,
.premium-breadcrumb a:focus-visible {
  color: var(--yellow);
  transform: translateY(-1px);
  outline: 0;
}

.premium-breadcrumb a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(5, 8, 23, 0.14);
  font-size: 0.78rem;
}

.premium-breadcrumb > i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
}

.premium-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-hero {
  position: relative;
  margin-top: 64px;
  padding: 128px 0 98px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.68)),
    url("../images/IMG-20260512-WA0005.jpg") center/cover no-repeat;
}

.news-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.7)),
    url("../images/IMG-20260512-WA0036.jpg") center/cover no-repeat;
}

.documents-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.7)),
    url("../images/IMG-20260512-WA0053.jpg") center 38%/cover no-repeat;
}

.documents-page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.05rem, 3.5vw, 3.35rem);
  line-height: 1.1;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.68)),
    url("../images/IMG-20260512-WA0008.jpg") center/cover no-repeat;
}

.mission-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.68)),
    url("../images/IMG-20260512-WA0048.jpg") center/cover no-repeat;
}

.governance-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.68)),
    url("../images/IMG-20260512-WA0036.jpg") center/cover no-repeat;
}

.education-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/hero-education.jpg") center/cover no-repeat;
}

.food-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/hero-food.jpg") center/cover no-repeat;
}

.healthcare-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/hero-healthcare.jpg") center/cover no-repeat;
}

.women-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/women-empowerment.jpg") center/cover no-repeat;
}

.skill-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/IMG-20260512-WA0067.jpg") center/cover no-repeat;
}

.environment-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/environment.jpg") center/cover no-repeat;
}

.education-page-hero,
.food-page-hero,
.healthcare-page-hero,
.women-page-hero,
.skill-page-hero,
.environment-page-hero {
  padding: 116px 0 92px;
  isolation: isolate;
}

.education-page-hero::before,
.food-page-hero::before,
.healthcare-page-hero::before,
.women-page-hero::before,
.skill-page-hero::before,
.environment-page-hero::before {
  background:
    linear-gradient(110deg, rgba(5, 8, 23, 0.2), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.72;
}

.education-page-hero::after,
.food-page-hero::after,
.healthcare-page-hero::after,
.women-page-hero::after,
.skill-page-hero::after,
.environment-page-hero::after {
  width: 46%;
  height: 100%;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(255, 196, 87, 0.14), rgba(47, 169, 213, 0.22));
  border-radius: 0;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.campaign-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/IMG-20260512-WA0015.jpg") center/cover no-repeat;
}

.volunteer-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/hero-volunteer.jpg") center/cover no-repeat;
}

.partner-page-hero {
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.66)),
    url("../images/IMG-20260512-WA0036.jpg") center/cover no-repeat;
}

.campaign-page-hero,
.volunteer-page-hero,
.partner-page-hero {
  padding: 118px 0 94px;
  isolation: isolate;
}

.campaign-page-hero::before,
.volunteer-page-hero::before,
.partner-page-hero::before {
  background:
    linear-gradient(115deg, rgba(5, 8, 23, 0.14), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.72;
}

.campaign-page-hero::after,
.volunteer-page-hero::after,
.partner-page-hero::after {
  right: 0;
  bottom: 0;
  width: 47%;
  height: 100%;
  border-radius: 0;
  z-index: 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.campaign-page-hero::after {
  background: linear-gradient(135deg, rgba(255, 196, 87, 0.22), rgba(47, 169, 213, 0.2));
}

.volunteer-page-hero::after {
  background: linear-gradient(135deg, rgba(47, 169, 213, 0.24), rgba(71, 183, 108, 0.18));
}

.partner-page-hero::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 196, 87, 0.2));
}

.campaign-page-hero .education-hero-card,
.volunteer-page-hero .education-hero-card,
.partner-page-hero .education-hero-card {
  transform: translateY(16px);
}

.campaign-page-hero .education-hero-card {
  background:
    linear-gradient(145deg, rgba(255, 196, 87, 0.22), rgba(255, 255, 255, 0.08));
}

.volunteer-page-hero .education-hero-card {
  background:
    linear-gradient(145deg, rgba(47, 169, 213, 0.24), rgba(255, 255, 255, 0.08));
}

.partner-page-hero .education-hero-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 196, 87, 0.1));
}

.gallery-page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.gallery-page-hero {
  padding: 104px 0 76px;
}

.media-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(47, 169, 213, 0.28), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: 0.62;
}

.media-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 510px;
  height: 510px;
  background: rgba(47, 169, 213, 0.2);
  border-radius: 50%;
}

.media-hero .container {
  position: relative;
  z-index: 1;
}

.media-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.04;
  font-weight: 600;
}

.gallery-page-hero h1,
.about-page-hero h1,
.mission-page-hero h1,
.governance-page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.education-page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.food-page-hero h1,
.healthcare-page-hero h1,
.women-page-hero h1,
.campaign-page-hero h1,
.volunteer-page-hero h1,
.partner-page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.education-hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(5, 8, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.education-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), rgba(255, 255, 255, 0.65));
}

.education-hero-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.education-hero-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(5, 8, 23, 0.18);
  font-size: 1.35rem;
}

.education-hero-card span,
.education-hero-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.education-hero-card > span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.education-hero-card strong {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.05;
  font-weight: 600;
}

.education-hero-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
}

.education-hero-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--white);
  font-weight: 700;
}

.education-hero-card a:hover {
  color: var(--yellow);
}

.education-impact-band {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  background: transparent;
}

.education-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(32, 36, 63, 0.13);
  backdrop-filter: blur(14px);
}

.education-impact-grid div {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid rgba(47, 169, 213, 0.12);
  border-radius: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.education-impact-grid div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--cyan));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.education-impact-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 18px 42px rgba(32, 36, 63, 0.08);
}

.education-impact-grid div:hover::before {
  opacity: 1;
}

.education-impact-grid i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 14px;
}

.education-impact-grid strong,
.education-impact-grid span {
  position: relative;
  z-index: 1;
  display: block;
}

.education-impact-grid strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.education-impact-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.media-hero p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.media-hero-panel {
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(5, 8, 23, 0.22);
  backdrop-filter: blur(14px);
}

.media-hero-panel span,
.media-hero-panel strong {
  display: block;
}

.media-hero-panel span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.media-hero-panel strong {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 600;
}

.media-hero-panel p {
  margin: 0;
}

.gallery-feature-section,
.news-feature-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 169, 213, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.documents-trust-band {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding-bottom: 30px;
  background:
    linear-gradient(180deg, transparent 0 54px, rgba(246, 251, 255, 0.98) 54px 100%),
    radial-gradient(circle at 10% 90%, rgba(47, 169, 213, 0.12), transparent 30%);
}

.documents-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  border: 1px solid rgba(47, 169, 213, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(32, 36, 63, 0.16);
  backdrop-filter: blur(16px);
}

.documents-trust-grid div {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  padding: 28px 26px 24px;
  background: transparent;
  border-right: 1px solid rgba(47, 169, 213, 0.14);
  transition: background 0.25s ease, transform 0.25s ease;
}

.documents-trust-grid div:last-child {
  border-right: 0;
}

.documents-trust-grid div::before {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  border-radius: 999px 999px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.documents-trust-grid div::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.documents-trust-grid div:hover {
  background: rgba(47, 169, 213, 0.045);
  transform: translateY(-3px);
}

.documents-trust-grid div:hover::before {
  transform: scaleX(1);
}

.documents-trust-grid em {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(50, 57, 138, 0.12);
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.documents-trust-grid i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(50, 57, 138, 0.18);
}

.documents-trust-grid strong,
.documents-trust-grid span,
.documents-trust-grid small {
  position: relative;
  z-index: 1;
  display: block;
}

.documents-trust-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.documents-trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.documents-trust-grid small {
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.documents-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 169, 213, 0.12), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(255, 196, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 42%, #f6fbff 100%);
  padding-top: 70px;
}

.documents-feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 196, 87, 0.18), transparent 36%),
    linear-gradient(135deg, var(--blue), #101b2d);
  border-radius: 30px;
  box-shadow: 0 30px 78px rgba(32, 36, 63, 0.18);
}

.documents-feature-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.documents-feature-card h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.16;
  font-weight: 700;
}

.documents-feature-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.document-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(32, 36, 63, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.document-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.document-card::after {
  content: "PDF";
  position: absolute;
  right: -16px;
  bottom: 20px;
  color: rgba(47, 169, 213, 0.07);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 800;
}

.document-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 30px 70px rgba(32, 36, 63, 0.13);
}

.document-card.highlight {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #20243f, #32398a);
  border-color: rgba(255, 255, 255, 0.12);
}

.document-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 18px;
  font-size: 1.25rem;
}

.document-card.highlight .document-icon {
  color: var(--blue);
  background: var(--white);
}

.document-card span,
.document-card h3,
.document-card p,
.document-card a {
  position: relative;
  z-index: 1;
}

.document-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.document-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.document-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.document-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.document-card.highlight span,
.document-card.highlight h3,
.document-card.highlight p,
.document-card.highlight a {
  color: var(--white);
}

.document-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.education-impact-grid,
.home-impact-grid,
.contact-choice-grid {
  counter-reset: premium-strip;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  border: 1px solid rgba(47, 169, 213, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(32, 36, 63, 0.16);
  backdrop-filter: blur(16px);
}

.education-impact-grid > div,
.home-impact-grid > div,
.contact-choice-grid > a {
  counter-increment: premium-strip;
  position: relative;
  min-height: 186px;
  overflow: hidden;
  padding: 28px 26px 24px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.education-impact-grid > div:last-child,
.home-impact-grid > div:last-child,
.contact-choice-grid > a:last-child {
  border-right: 0;
}

.education-impact-grid > div::before,
.home-impact-grid > div::before,
.contact-choice-grid > a::before {
  content: none;
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: auto;
  height: auto;
  color: rgba(50, 57, 138, 0.12);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.education-impact-grid > div::after,
.home-impact-grid > div::after,
.contact-choice-grid > a::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.education-impact-grid > div:hover,
.home-impact-grid > div:hover,
.contact-choice-grid > a:hover {
  background: rgba(47, 169, 213, 0.045);
  transform: translateY(-3px);
  box-shadow: none;
}

.education-impact-grid i,
.home-impact-grid i,
.contact-choice-grid i {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(50, 57, 138, 0.18);
}

.education-impact-grid strong,
.home-impact-grid strong,
.contact-choice-grid strong {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
}

.education-impact-grid span,
.home-impact-grid span,
.contact-choice-grid span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-story-page-section,
.mission-values-page-section,
.governance-section,
.education-intro-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 169, 213, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.education-image-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(47, 169, 213, 0.44), rgba(255, 196, 87, 0.36)) border-box;
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 64px rgba(32, 36, 63, 0.13);
}

.education-image-panel::before {
  content: "";
  position: absolute;
  inset: 28px 28px auto auto;
  z-index: 2;
  width: 82px;
  height: 82px;
  border-top: 2px solid rgba(255, 255, 255, 0.84);
  border-right: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 0 18px 0 0;
  pointer-events: none;
}

.education-image-panel img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.45s ease;
}

.education-image-panel:hover img {
  transform: scale(1.035);
}

.education-floating-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 260px;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(5, 8, 23, 0.22);
  backdrop-filter: blur(12px);
}

.education-floating-card strong,
.education-floating-card span {
  display: block;
}

.education-floating-card strong {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
}

.education-floating-card span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.35;
}

.education-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.education-stat-row div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(32, 36, 63, 0.08);
}

.education-stat-row div::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.education-stat-row strong,
.education-stat-row span {
  position: relative;
  z-index: 1;
  display: block;
}

.education-stat-row strong {
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
}

.education-stat-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.education-support-section,
.education-process-section,
.education-pathway-section,
.education-campaign-section {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.education-pathway-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 169, 213, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.education-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.education-pathway-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.education-pathway-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: 0 26px 58px rgba(32, 36, 63, 0.12);
}

.education-pathway-grid article::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.education-pathway-grid span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 15px;
  font-weight: 700;
}

.education-pathway-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 600;
}

.education-pathway-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.education-support-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.education-support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}

.education-support-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.education-support-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 169, 213, 0.28);
  box-shadow: var(--shadow);
}

.education-support-card i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 18px;
  font-size: 1.22rem;
}

.education-support-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.16rem;
  font-weight: 600;
}

.education-support-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.education-process-list {
  display: grid;
  gap: 16px;
}

.education-process-list > div {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(32, 36, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.education-process-list > div:hover {
  transform: translateX(6px);
  box-shadow: 0 22px 48px rgba(32, 36, 63, 0.11);
}

.education-process-list span {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 17px;
  font-weight: 700;
}

.education-process-list h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.education-process-list p {
  margin: 0;
  color: var(--muted);
}

.education-campaign-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(47, 169, 213, 0.34), rgba(255, 196, 87, 0.3)) border-box;
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 30px;
  box-shadow: 0 32px 82px rgba(32, 36, 63, 0.14);
}

.education-campaign-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.education-campaign-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 8, 23, 0.34));
}

.education-campaign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.education-campaign-card:hover .education-campaign-media img {
  transform: scale(1.04);
}

.education-campaign-copy {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
}

.education-campaign-copy::before {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  border-radius: 999px;
}

.education-campaign-copy h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.14;
  font-weight: 600;
}

.education-campaign-copy p:not(.section-kicker) {
  color: var(--muted);
}

.education-progress-row {
  margin: 24px 0;
}

.education-progress-row .progress {
  height: 12px;
  margin: 0 0 12px;
  background: #edf6fb;
  box-shadow: inset 0 1px 2px rgba(32, 36, 63, 0.08);
}

.education-progress-row div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.education-cta-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.education-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 196, 87, 0.18), transparent 36%),
    linear-gradient(135deg, var(--blue), #101b2d);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(32, 36, 63, 0.18);
}

.education-cta-card h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.16;
  font-weight: 600;
}

.campaign-page-hero ~ .education-impact-band .education-impact-grid,
.volunteer-page-hero ~ .education-impact-band .education-impact-grid,
.partner-page-hero ~ .education-impact-band .education-impact-grid {
  padding: 0;
  border-radius: 28px;
}

.campaign-page-hero ~ .education-impact-band .education-impact-grid div,
.volunteer-page-hero ~ .education-impact-band .education-impact-grid div,
.partner-page-hero ~ .education-impact-band .education-impact-grid div {
  display: block;
  min-height: 186px;
  border-radius: 0;
}

.campaign-page-hero ~ .education-impact-band .education-impact-grid i,
.volunteer-page-hero ~ .education-impact-band .education-impact-grid i,
.partner-page-hero ~ .education-impact-band .education-impact-grid i {
  margin-bottom: 18px;
}

.campaign-page-hero ~ .education-support-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 196, 87, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.campaign-page-hero ~ .education-support-section .education-support-card {
  min-height: 330px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #20243f, #32398a);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(32, 36, 63, 0.16);
}

.campaign-page-hero ~ .education-support-section .row > div:nth-child(even) .education-support-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #113348, #2fa9d5);
}

.campaign-page-hero ~ .education-support-section .row > div:nth-child(3) .education-support-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #27315e, #47b76c);
}

.campaign-page-hero ~ .education-support-section .education-support-card i {
  color: var(--blue);
  background: var(--white);
}

.campaign-page-hero ~ .education-support-section .education-support-card h3,
.campaign-page-hero ~ .education-support-section .education-support-card p {
  color: var(--white);
}

.campaign-page-hero ~ .education-support-section .education-support-card p {
  color: rgba(255, 255, 255, 0.78);
}

.campaign-page-hero ~ .education-support-section .education-support-card .impact-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
}

.campaign-page-hero ~ .education-support-section .education-support-card .impact-link:hover {
  color: var(--blue);
  background: var(--white);
}

.volunteer-page-hero ~ .education-pathway-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(71, 183, 108, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.volunteer-page-hero ~ .education-pathway-section .education-pathway-grid {
  grid-template-columns: repeat(4, 1fr);
}

.volunteer-page-hero ~ .education-pathway-section .education-pathway-grid article {
  min-height: 250px;
  padding: 26px 22px;
  border-radius: 999px 999px 24px 24px;
  text-align: center;
}

.volunteer-page-hero ~ .education-pathway-section .education-pathway-grid span {
  margin-inline: auto;
  border-radius: 50%;
}

.volunteer-page-hero ~ .donate-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 169, 213, 0.12), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.volunteer-page-hero ~ .donate-section .donate-form-card,
.partner-page-hero ~ .donate-section .donate-form-card {
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(32, 36, 63, 0.13);
}

.volunteer-page-hero ~ .donate-section .donation-info-panel {
  background:
    radial-gradient(circle at 90% 0%, rgba(71, 183, 108, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.partner-page-hero ~ .education-pathway-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 196, 87, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.partner-page-hero ~ .education-pathway-section .education-pathway-grid article {
  min-height: 220px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(255, 196, 87, 0.38), rgba(47, 169, 213, 0.3)) border-box;
  border: 1px solid transparent;
}

.partner-page-hero ~ .donate-section {
  background:
    linear-gradient(135deg, rgba(32, 36, 63, 0.96), rgba(50, 57, 138, 0.92)),
    url("../images/partners.jpg") center/cover no-repeat;
}

.partner-page-hero ~ .donate-section .donate-form-head h2,
.partner-page-hero ~ .donate-section .section-kicker {
  color: var(--white);
}

.partner-page-hero ~ .donate-section .donate-form-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.partner-page-hero ~ .donate-section .donation-form .form-label {
  color: rgba(255, 255, 255, 0.86);
}

.partner-page-hero ~ .donate-section .donation-info-panel {
  background: rgba(255, 255, 255, 0.95);
}

.about-page-image,
.team-image-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 64px rgba(32, 36, 63, 0.13);
}

.about-page-image img,
.team-image-panel img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.about-page-badge,
.team-image-panel div {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 220px;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(5, 8, 23, 0.22);
}

.about-page-badge strong,
.about-page-badge span,
.team-image-panel strong,
.team-image-panel span {
  display: block;
}

.about-page-badge strong,
.team-image-panel strong {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
}

.about-page-badge span,
.team-image-panel span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  line-height: 1.35;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-proof-grid div,
.value-principle-card,
.governance-card {
  height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(32, 36, 63, 0.08);
}

.about-proof-grid i,
.value-principle-card i,
.governance-card i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 15px;
}

.about-proof-grid span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.about-timeline-section,
.values-grid-section,
.team-section {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.about-impact-band .education-impact-grid {
  margin-bottom: 12px;
}

.about-hero-card {
  transform: translateY(6px);
}

.about-signature-section,
.mission-pledge-section,
.governance-framework-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 169, 213, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.about-signature-card,
.mission-pledge-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 169, 213, 0.14), transparent 28%),
    var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(32, 36, 63, 0.12);
}

.about-signature-copy h2,
.mission-pledge-card h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.14;
  font-weight: 600;
}

.about-signature-copy p:not(.section-kicker),
.mission-pledge-card p {
  color: var(--muted);
}

.about-signature-list,
.mission-pledge-points {
  display: grid;
  gap: 14px;
}

.about-signature-list div,
.mission-pledge-points span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(32, 36, 63, 0.07);
  color: var(--ink);
  font-weight: 700;
}

.about-signature-list i,
.mission-pledge-points i {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 50%;
  font-size: 0.8rem;
}

.mission-pledge-card {
  grid-template-columns: 1.2fr 0.8fr;
}

.mission-pledge-points span {
  min-height: 64px;
}

.governance-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.governance-framework-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(32, 36, 63, 0.08);
}

.governance-framework-grid article::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.governance-framework-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 15px;
  font-weight: 700;
}

.governance-framework-grid h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 600;
}

.governance-framework-grid p {
  margin: 0;
  color: var(--muted);
}

.about-step-card,
.mission-value-page-card {
  position: relative;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(32, 36, 63, 0.09);
}

.about-step-card.featured,
.mission-value-page-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #101b2d);
}

.about-step-card > span,
.mission-value-page-card > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 17px;
  font-weight: 700;
}

.about-step-card.featured > span,
.mission-value-page-card.featured > span {
  background: rgba(255, 255, 255, 0.16);
}

.about-step-card h3,
.mission-value-page-card h2,
.value-principle-card h3,
.governance-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.about-step-card p,
.mission-value-page-card p,
.value-principle-card p,
.governance-card p {
  margin: 0;
  color: var(--muted);
}

.about-step-card.featured p,
.mission-value-page-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.mission-value-page-card i {
  position: absolute;
  right: 28px;
  top: 28px;
  color: rgba(47, 169, 213, 0.22);
  font-size: 3rem;
}

.mission-value-page-card.featured i {
  color: rgba(255, 255, 255, 0.22);
}

.governance-list {
  display: grid;
  gap: 14px;
}

.governance-list div {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(32, 36, 63, 0.07);
  font-weight: 600;
}

.governance-list i {
  color: var(--orange);
  margin-top: 4px;
}

.gallery-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.gallery-stat-strip div {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(32, 36, 63, 0.08);
}

.gallery-stat-strip strong,
.gallery-stat-strip span {
  display: block;
}

.gallery-stat-strip strong {
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}

.gallery-stat-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.gallery-feature-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
}

.gallery-feature-mosaic a,
.premium-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(32, 36, 63, 0.11);
}

.gallery-feature-mosaic a:first-child {
  grid-row: span 2;
}

.gallery-feature-mosaic img,
.premium-gallery-card img,
.featured-news-card img,
.news-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature-mosaic img,
.premium-gallery-card img {
  transition: transform 0.45s ease;
}

.gallery-feature-mosaic a:hover img,
.premium-gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-archive-section,
.updates-section {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.gallery-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -16px 0 34px;
}

.gallery-filter-pills span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 16px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(32, 36, 63, 0.07);
  font-size: 0.86rem;
  font-weight: 600;
}

.premium-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.premium-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 23, 0.02), rgba(5, 8, 23, 0.55));
}

.premium-gallery-card::before {
  content: "\f00e";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-size: 1.75rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.premium-gallery-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.premium-gallery-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(47, 169, 213, 0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.premium-gallery-card.wide {
  grid-column: span 2;
}

.premium-gallery-card.tall {
  grid-row: span 2;
}

.media-cta-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.media-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--blue), #101b2d);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(32, 36, 63, 0.18);
}

.media-cta-card h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  line-height: 1.16;
  font-weight: 600;
}

.featured-news-card,
.news-side-panel,
.news-card-premium,
.news-timeline {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(32, 36, 63, 0.1);
}

.featured-news-card {
  position: relative;
  min-height: 540px;
}

.featured-news-card img {
  position: absolute;
  inset: 0;
}

.featured-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 23, 0.04), rgba(5, 8, 23, 0.84));
}

.featured-news-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
}

.featured-news-body h2 {
  max-width: 760px;
  margin: 14px 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.12;
  font-weight: 600;
}

.featured-news-body p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.news-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.news-side-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.16;
  font-weight: 600;
}

.news-side-panel p:not(.section-kicker) {
  color: var(--muted);
}

.news-side-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.news-side-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: var(--ink);
  background: #f7fcff;
  border: 1px solid rgba(47, 169, 213, 0.12);
  border-radius: 16px;
  font-weight: 600;
}

.news-side-list i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 13px;
}

.news-card-premium {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.news-card-premium img {
  height: 240px;
}

.news-card-body {
  padding: 26px;
}

.news-card-body h3 {
  margin: 16px 0 12px;
  font-size: 1.2rem;
  line-height: 1.34;
  font-weight: 600;
}

.news-card-body p {
  color: var(--muted);
}

.news-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
}

.news-card-body a:hover {
  color: var(--orange);
}

.news-timeline-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 169, 213, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.news-timeline {
  display: grid;
  gap: 0;
  padding: 12px 30px;
}

.timeline-item {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item > span {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 17px;
  font-weight: 700;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 600;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.donate-hero {
  position: relative;
  margin-top: 64px;
  padding: 118px 0 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.9), rgba(50, 57, 138, 0.72)),
    url("../images/IMG-20260512-WA0014.jpg") center/cover no-repeat;
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 169, 213, 0.24), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.55;
}

.donate-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background: rgba(47, 169, 213, 0.2);
  border-radius: 50%;
}

.donate-hero .container {
  position: relative;
  z-index: 1;
}

.donate-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 600;
}

.donate-hero p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.donate-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.donate-hero .impact-link {
  color: var(--white);
}

.donate-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 34px;
}

.donate-trust-row div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(5, 8, 23, 0.16);
  backdrop-filter: blur(12px);
}

.donate-trust-row strong,
.donate-trust-row span {
  display: block;
}

.donate-trust-row strong {
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 600;
}

.donate-trust-row span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.donate-hero-card {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(5, 8, 23, 0.25);
  backdrop-filter: blur(14px);
}

.donate-hero-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(47, 169, 213, 0.28), rgba(50, 57, 138, 0.08));
  border-radius: 36px;
}

.donate-hero-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
}

.donate-hero-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  padding: 18px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(5, 8, 23, 0.22);
}

.donate-hero-badge strong,
.donate-hero-badge span {
  display: block;
}

.donate-hero-badge strong {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
}

.donate-hero-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.donate-hero-proof {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  gap: 10px;
  max-width: 220px;
}

.donate-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(5, 8, 23, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(5, 8, 23, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.8rem;
  font-weight: 700;
}

.donate-hero-proof i {
  color: var(--yellow);
}

.donate-impact-band .education-impact-grid {
  box-shadow: 0 30px 80px rgba(32, 36, 63, 0.16);
}

.donate-campaign-select-section {
  padding-top: 96px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 196, 87, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

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

.donate-campaign-option {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(32, 36, 63, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.donate-campaign-option:hover,
.donate-campaign-option.active {
  transform: translateY(-7px);
  border-color: rgba(47, 169, 213, 0.34);
  box-shadow: 0 30px 70px rgba(50, 57, 138, 0.14);
}

.donate-campaign-option img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 20px;
}

.donate-campaign-option div {
  padding: 22px 8px 8px;
}

.donate-campaign-option span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(47, 169, 213, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.donate-campaign-option.active span {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.donate-campaign-option h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.donate-campaign-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.donate-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 169, 213, 0.1), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.donate-form-card,
.donation-info-panel,
.donate-impact-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(32, 36, 63, 0.1);
}

.donate-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 38px);
}

.donate-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--indigo));
}

.donate-form-head h2 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.45vw, 2.12rem);
  line-height: 1.18;
  font-weight: 600;
}

.donation-mode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 6px;
  margin-bottom: 24px;
  background: #f6fbff;
  border: 1px solid rgba(47, 169, 213, 0.22);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(47, 169, 213, 0.08);
}

.donation-mode button {
  min-height: 48px;
  color: #28306f;
  background: transparent;
  border: 0;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.donation-mode button:hover,
.donation-mode button.active {
  color: var(--white);
  background: linear-gradient(135deg, #2fa9d5, #32398a);
  box-shadow: 0 14px 28px rgba(50, 57, 138, 0.2);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.amount-grid button {
  position: relative;
  min-height: 54px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(47, 169, 213, 0.24);
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(32, 36, 63, 0.045);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.amount-grid button:hover,
.amount-grid button.active {
  color: var(--white);
  background: linear-gradient(135deg, #2fa9d5, #32398a);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(50, 57, 138, 0.18);
}

.donation-form .form-label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.donation-form .form-control,
.donation-form .form-select {
  min-height: 54px;
  color: var(--ink);
  background-color: #f8fbff;
  border-color: rgba(47, 169, 213, 0.18);
  border-radius: 15px;
}

.donation-form .form-control:focus,
.donation-form .form-select:focus {
  border-color: rgba(47, 169, 213, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(47, 169, 213, 0.12);
}

.donation-form .btn {
  min-height: 56px;
}

.donation-info-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.secure-card,
.bank-card,
.upi-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.bank-card {
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 169, 213, 0.32), transparent 34%),
    linear-gradient(135deg, #20243f, #32398a);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 45px rgba(32, 36, 63, 0.18);
}

.secure-card,
.upi-card {
  display: flex;
  gap: 16px;
}

.secure-card i,
.upi-card i,
.donate-impact-card i {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 14px;
}

.secure-card h3,
.bank-card h3,
.donate-impact-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.secure-card p,
.donate-impact-card p,
.upi-card small {
  margin: 0;
  color: var(--muted);
}

.bank-card span,
.upi-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-card span {
  color: rgba(255, 255, 255, 0.72);
}

.bank-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
}

.bank-card strong,
.upi-card strong {
  color: var(--ink);
}

.bank-card h3,
.bank-card strong {
  color: var(--white);
}

.upi-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.donate-flow-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.donate-flow-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.donate-flow-card div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 169, 213, 0.12);
}

.donate-flow-card i {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 12px;
}

.donate-flow-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.donate-feature-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 169, 213, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.donate-cta-section {
  background: #ffffff;
}

.donate-impact-section {
  background: #ffffff;
}

.donate-impact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.donate-impact-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  background: rgba(47, 169, 213, 0.08);
  border-radius: 50%;
}

.donate-impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(50, 57, 138, 0.13);
}

.donate-impact-card i {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.donate-impact-card h3,
.donate-impact-card p {
  position: relative;
  z-index: 1;
}

.inner-page-hero {
  position: relative;
  margin-top: 64px;
  padding: 118px 0 88px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 8, 23, 0.88), rgba(50, 57, 138, 0.68)),
    url("../images/hands-support.jpg") center/cover no-repeat;
}

.inner-page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  background: rgba(47, 169, 213, 0.2);
  border-radius: 50%;
}

.inner-page-hero .container {
  position: relative;
  z-index: 1;
}

.inner-page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 600;
}

.inner-page-hero p:last-child {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.contact-info,
.contact-form {
  padding: 32px;
  border: 1px solid rgba(47, 169, 213, 0.14);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(32, 36, 63, 0.12);
}

.contact-info {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 169, 213, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f7fcff);
}

.contact-form {
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
}

.contact-info-head,
.contact-form-head {
  margin-bottom: 24px;
}

.contact-info-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  color: var(--blue);
  background: rgba(47, 169, 213, 0.1);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-head h3,
.contact-form-head h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
}

.contact-info-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row i {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(50, 57, 138, 0.16);
}

.map-placeholder {
  display: grid;
  min-height: 210px;
  margin-top: 24px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 8, 23, 0.78), rgba(50, 57, 138, 0.58)),
    url("../images/IMG-20260512-WA0036.jpg") center/cover no-repeat;
  border: 1px solid rgba(47, 169, 213, 0.16);
  border-radius: 22px;
  text-align: center;
}

.map-placeholder div {
  display: grid;
  justify-items: center;
}

.map-placeholder i {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 2rem;
}

.map-placeholder strong,
.map-placeholder span {
  display: block;
}

.map-placeholder strong {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.map-placeholder span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.form-label {
  color: var(--ink);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 54px;
  color: var(--ink);
  background-color: #f8fbff;
  border: 1px solid rgba(47, 169, 213, 0.18);
  border-radius: 15px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(47, 169, 213, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(47, 169, 213, 0.12);
}

.contact-cta-section {
  padding: 0 0 92px;
  background: #f3fbff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(47, 169, 213, 0.14);
}

.site-footer {
  position: relative;
  padding: 72px 0 26px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 169, 213, 0.18), transparent 28%),
    linear-gradient(135deg, #070b1d, #101b2d 55%, #1f245f);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.28;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(47, 169, 213, 0.26);
}

.footer-cta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.18;
}

.footer-main {
  margin-top: 58px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 600;
}

.footer-brand img {
  width: 54px;
  /*height: 54px;*/
  object-fit: cover;
  object-position: center 37%;
  background: var(--white);
  border-radius: 14px;
}

.footer-brand:hover {
  color: var(--yellow);
}

.site-footer h3 {
  position: relative;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  background: var(--orange);
  border-radius: 999px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.btn-footer-donate {
  display: inline-flex;
  min-width: 176px;
  align-items: center;
  justify-content: center;
  color: var(--orange) !important;
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 34px rgba(5, 8, 23, 0.18);
}

.btn-footer-donate:hover,
.btn-footer-donate:focus-visible {
  color: var(--white) !important;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(5, 8, 23, 0.24);
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--green);
}

.footer-small {
  max-width: 260px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.social-links a:hover {
  background: var(--orange);
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(47, 169, 213, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus-visible {
  box-shadow: 0 20px 42px rgba(50, 57, 138, 0.3);
  transform: translateY(-3px);
  outline: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .site-header {
    background: var(--white);
    box-shadow: 0 12px 34px rgba(32, 36, 63, 0.13);
  }

  .site-header .navbar {
    padding: 7px 0;
  }

  .site-header .container {
    position: relative;
  }

  .menu-grid-toggle {
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1042;
    transform: none;
    background: var(--white);
  }

  .navbar-expand-lg .menu-grid-toggle {
    display: flex;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1041;
    display: block !important;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 18px 0 22px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 24px 0 70px rgba(5, 8, 23, 0.28);
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease;
    will-change: transform;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    visibility: visible;
    transform: translateX(0);
  }

  .navbar-collapse.collapsing {
    height: 100vh !important;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease;
  }

  .navbar-collapse.is-closing {
    transform: translateX(-100%);
  }

  .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(5, 8, 23, 0.48);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .site-header.menu-open::after {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px 16px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-logo img {
    width: 118px;
    height: 62px;
    object-fit: contain;
  }

  .mobile-menu-close {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--blue);
    background: rgba(47, 169, 213, 0.08);
    border: 1px solid rgba(47, 169, 213, 0.16);
    border-radius: 50%;
    font-size: 1.15rem;
  }

  .mobile-menu-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 20px;
    padding: 0 12px 0 16px;
    background: #f6f8fc;
    border: 1px solid rgba(32, 36, 63, 0.06);
    border-radius: 6px;
  }

  .mobile-menu-search input {
    min-width: 0;
    flex: 1;
    height: 44px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 0.92rem;
  }

  .mobile-menu-search button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 0;
  }

  .navbar-nav .nav-link {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    padding: 12px 20px;
    border-top: 1px solid #eef1f5;
    font-size: 0.92rem;
    text-transform: none;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 1px solid #eef1f5;
  }

  .navbar-nav .dropdown-toggle::after {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: 12px;
    place-items: center;
    content: "+";
    color: var(--blue);
    background: #f6f8fc;
    border: 0;
    border-radius: 4px;
    transform: none;
    font-size: 1.25rem;
    line-height: 1;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  }

  .navbar-nav .dropdown-toggle.show::after {
    content: "-";
    color: var(--white);
    background: var(--blue);
    transform: rotate(180deg);
  }

  .header-menu {
    gap: 0;
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fbfdff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.34s ease;
  }

  .dropdown-menu.show {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-item {
    padding: 12px 20px 12px 38px;
    border-top: 1px solid #eef1f5;
    border-radius: 0;
    color: #2f365f;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .header-actions {
    align-items: stretch;
    gap: 12px;
    margin: 18px 20px 0;
  }

  .btn-donate {
    width: 100%;
  }

  .hero-section {
    margin-top: 62px;
  }

  .inner-page-hero {
    margin-top: 62px;
    padding: 92px 0 72px;
  }

  .media-hero {
    margin-top: 62px;
    padding: 96px 0 76px;
  }

  .education-page-hero,
  .food-page-hero,
  .healthcare-page-hero,
  .women-page-hero,
  .campaign-page-hero,
  .volunteer-page-hero,
  .partner-page-hero {
    padding: 92px 0 76px;
  }

  .education-page-hero::after,
  .food-page-hero::after,
  .healthcare-page-hero::after,
  .women-page-hero::after,
  .campaign-page-hero::after,
  .volunteer-page-hero::after,
  .partner-page-hero::after {
    width: 100%;
    opacity: 0.28;
    clip-path: none;
  }

  .campaign-page-hero ~ .education-impact-band .education-impact-grid,
  .volunteer-page-hero ~ .education-impact-band .education-impact-grid,
  .partner-page-hero ~ .education-impact-band .education-impact-grid {
    border-radius: 28px;
  }

  .campaign-page-hero ~ .education-impact-band .education-impact-grid div,
  .volunteer-page-hero ~ .education-impact-band .education-impact-grid div,
  .partner-page-hero ~ .education-impact-band .education-impact-grid div {
    border-radius: 22px;
  }

  .volunteer-page-hero ~ .education-pathway-section .education-pathway-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .volunteer-page-hero ~ .education-pathway-section .education-pathway-grid article {
    border-radius: 24px;
  }

  .gallery-page-hero {
    padding: 82px 0 62px;
  }

  .media-hero-panel {
    max-width: 520px;
  }

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

  .donate-hero {
    margin-top: 62px;
    padding: 92px 0 76px;
  }

  .donate-hero-card img {
    height: 360px;
  }

  .donate-trust-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

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

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

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide-item,
  .hero-slide {
    height: 620px;
  }

  .hero-slide {
    padding: 78px 0 96px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 8, 23, 0.92) 0%, rgba(19, 27, 60, 0.8) 58%, rgba(10, 24, 48, 0.56) 100%),
      linear-gradient(180deg, rgba(5, 8, 23, 0.22), rgba(5, 8, 23, 0.44));
  }

  .hero-trust-strip,
  .home-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-impact-strip {
    margin-top: -30px;
  }

  .hero-slider .slick-dots {
    left: 12px;
    bottom: 24px;
  }

  .hero-arrow {
    display: none;
  }

  .section-padding {
    padding: 76px 0;
  }

  .main-image {
    min-height: 390px;
  }

  .about-video {
    height: 430px;
  }

  .experience-card {
    right: 18px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content .section-title {
    font-size: clamp(1.85rem, 5vw, 2.6rem);
  }

  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .impact-copy-panel {
    max-width: none;
  }

  .impact-visual-panel {
    max-width: 620px;
    margin: 0 auto;
  }

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

  .gallery-feature-mosaic {
    grid-template-rows: 210px 210px;
  }

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

  .media-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .documents-trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 169, 213, 0.14);
  }

  .documents-trust-grid div:nth-child(odd) {
    border-right: 1px solid rgba(47, 169, 213, 0.14);
  }

  .documents-trust-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .documents-feature-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .education-campaign-card {
    grid-template-columns: 1fr;
  }

  .about-signature-card,
  .mission-pledge-card {
    grid-template-columns: 1fr;
  }

  .governance-framework-grid {
    grid-template-columns: 1fr;
  }

  .education-campaign-media {
    min-height: 360px;
  }

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

  .home-documents-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    margin-top: 42px;
  }

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

@media (max-width: 767.98px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }

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

  .campaign-card,
  .blog-card {
    max-width: 560px;
    margin-inline: auto;
  }

  .home-document-card {
    max-width: 560px;
    min-height: auto;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header .container,
  .media-hero .container,
  .education-impact-band .container {
    max-width: 100%;
  }

  .brand-logo-frame {
    width: 96px;
    height: 54px;
  }

  .brand-logo-frame img {
    width: 92px;
  }

  .hero-section {
    margin-top: 78px;
  }

  .inner-page-hero {
    margin-top: 56px;
    padding: 78px 0 60px;
  }

  .donate-hero {
    margin-top: 56px;
    padding: 78px 0 62px;
  }

  .media-hero {
    margin-top: 56px;
    padding: 78px 0 64px;
  }

  .education-page-hero,
  .food-page-hero,
  .healthcare-page-hero,
  .women-page-hero,
  .skill-page-hero,
  .environment-page-hero,
  .campaign-page-hero,
  .volunteer-page-hero,
  .partner-page-hero {
    padding: 74px 0 62px;
  }

  .gallery-page-hero {
    padding: 68px 0 52px;
  }

  .media-hero h1 {
    font-size: 2.15rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .media-hero p:not(.section-kicker),
  .education-hero-card {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .media-hero-panel,
  .media-cta-card,
  .featured-news-card,
  .news-side-panel,
  .news-card-premium,
  .news-timeline,
  .contact-hero-panel {
    border-radius: 20px;
  }

  .premium-breadcrumb {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 12px 8px 8px;
    font-size: 0.78rem;
  }

  .premium-breadcrumb a i {
    width: 28px;
    height: 28px;
  }

  .premium-breadcrumb span {
    flex: 1;
  }

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

  .contact-choice-band {
    margin-top: -24px;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 22px;
  }

  .contact-choice-grid a {
    min-height: auto;
    border-radius: 18px;
  }

  .about-page-image img,
  .team-image-panel img,
  .education-image-panel img {
    height: 360px;
  }

  .education-stat-row {
    grid-template-columns: 1fr;
  }

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

  .documents-trust-band {
    margin-top: -24px;
  }

  .documents-trust-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .documents-trust-grid {
    padding: 12px;
    border-radius: 22px;
  }

  .documents-trust-grid div,
  .documents-trust-grid div:nth-child(odd),
  .documents-trust-grid div:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 169, 213, 0.14);
  }

  .documents-trust-grid div:last-child {
    border-bottom: 0;
  }

  .education-campaign-card {
    grid-template-columns: 1fr;
  }

  .education-campaign-media {
    min-height: 340px;
  }

  .education-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-stat-strip,
  .gallery-feature-mosaic,
  .premium-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature-mosaic {
    grid-template-rows: none;
  }

  .gallery-feature-mosaic a,
  .premium-gallery-card,
  .premium-gallery-card.wide,
  .premium-gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .gallery-filter-pills {
    justify-content: flex-start;
  }

  .featured-news-card {
    min-height: 500px;
  }

  .news-timeline {
    padding: 4px 20px;
  }

  .timeline-item {
    gap: 16px;
  }

  .about-page-image,
  .team-image-panel,
  .education-image-panel,
  .education-hero-card,
  .education-impact-grid,
  .education-impact-grid div,
  .documents-trust-grid,
  .documents-trust-grid div,
  .documents-feature-card,
  .document-card,
  .education-pathway-grid article,
  .education-campaign-card,
  .about-signature-card,
  .mission-pledge-card,
  .governance-framework-grid article,
  .about-step-card,
  .mission-value-page-card,
  .value-principle-card,
  .governance-card,
  .education-support-card,
  .education-process-list > div,
  .education-cta-card {
    border-radius: 20px;
  }

  .about-page-badge,
  .team-image-panel div,
  .education-floating-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: none;
  }

  .education-process-list > div {
    flex-direction: column;
  }

  .education-impact-grid,
  .education-pathway-grid {
    grid-template-columns: 1fr;
  }

  .campaign-page-hero ~ .education-impact-band .education-impact-grid div,
  .volunteer-page-hero ~ .education-impact-band .education-impact-grid div,
  .partner-page-hero ~ .education-impact-band .education-impact-grid div {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .campaign-page-hero ~ .education-impact-band .education-impact-grid i,
  .volunteer-page-hero ~ .education-impact-band .education-impact-grid i,
  .partner-page-hero ~ .education-impact-band .education-impact-grid i {
    margin-inline: auto;
    margin-bottom: 12px;
  }

  .volunteer-page-hero ~ .education-pathway-section .education-pathway-grid {
    grid-template-columns: 1fr;
  }

  .education-impact-band {
    margin-top: -24px;
  }

  .education-cta-card .btn {
    width: 100%;
  }

  .donate-hero h1 {
    font-size: 2rem;
  }

  .donate-hero-actions,
  .secure-card,
  .upi-card {
    flex-direction: column;
  }

  .donate-hero-actions .btn,
  .donate-hero-actions .impact-link {
    width: 100%;
    justify-content: center;
  }

  .donate-hero-card img {
    height: 280px;
  }

  .donate-hero-badge {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .donate-hero-proof {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .donate-hero-proof span {
    justify-content: center;
    border-radius: 16px;
  }

  .donate-trust-row {
    grid-template-columns: 1fr;
  }

  .donate-campaign-select-section {
    padding-top: 64px;
  }

  .donate-campaign-grid {
    grid-template-columns: 1fr;
  }

  .donate-campaign-option {
    min-height: auto;
    border-radius: 20px;
  }

  .donate-campaign-option img {
    height: 220px;
    border-radius: 16px;
  }

  .donation-mode {
    border-radius: 18px;
  }

  .donation-mode button {
    min-height: 42px;
  }

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

  .donate-form-card,
  .donation-info-panel,
  .donate-impact-card,
  .donate-flow-card,
  .contact-info,
  .contact-form,
  .map-placeholder {
    border-radius: 20px;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide-item,
  .hero-slide {
    height: 700px;
  }

  .hero-slide {
    padding: 58px 0 78px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.15rem);
    line-height: 1.1;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-trust-strip,
  .home-impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-strip {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-trust-strip div {
    padding: 13px 15px;
    border-radius: 16px;
  }

  .home-impact-strip {
    margin-top: -18px;
  }

  .home-impact-grid {
    padding: 12px;
    border-radius: 22px;
  }

  .home-impact-grid div {
    min-height: auto;
    border-radius: 18px;
  }

  .hero-actions .btn {
    width: calc(100vw - 32px);
    max-width: 360px;
    justify-content: center;
  }

  .home-impact-grid span {
    max-width: 280px;
    overflow-wrap: break-word;
    font-size: 0.88rem;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  #gallery .section-heading,
  .premium-heading {
    text-align: center;
  }

  .gallery-heading .section-title,
  .premium-heading .section-title {
    font-size: 1.65rem;
    line-height: 1.22;
  }

  .premium-heading .section-text,
  .gallery-heading .section-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .value-card,
  .program-card,
  .testimonial-card,
  .contact-info,
  .contact-form {
    border-radius: 18px;
  }

  .image-stack {
    padding: 14px 14px 30px 0;
  }

  .about-video {
    height: 340px;
    border-width: 5px;
  }

  .about-video-caption {
    left: 14px;
    right: 20px;
    bottom: 0;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .about-video-caption span {
    font-size: 0.68rem;
  }

  .about-video-caption strong {
    font-size: 0.92rem;
  }

  .about-video-play {
    width: 68px;
    height: 68px;
    border-width: 6px;
  }

  .about-video-play i {
    font-size: 1.12rem;
  }

  .about-content .section-title {
    font-size: 1.9rem;
  }

  .about-video-label {
    top: 24px;
    left: 24px;
    padding: 8px 12px;
  }

  .trust-badge {
    right: 16px;
    left: 16px;
    bottom: 18px;
    max-width: none;
  }

  .experience-card {
    right: 18px;
    top: 22px;
    bottom: auto;
    max-width: 148px;
    padding: 16px;
  }

  .experience-card span {
    font-size: 1.9rem;
  }

  .mission-card {
    padding: 28px;
  }

  .testimonial-card {
    height: auto;
    min-height: 390px;
    padding: 28px;
  }

  .program-image {
    height: 200px;
  }

  .program-body {
    padding: 28px 24px;
  }

  .program-body p {
    min-height: auto;
  }

  .impact-stat-panel {
    grid-template-columns: 1fr;
    margin-top: -44px;
    padding: 0 14px 14px;
  }

  .impact-mini-card {
    min-height: 102px;
    padding: 18px;
  }

  .impact-actions .btn,
  .impact-link {
    width: 100%;
    justify-content: center;
  }

  .donation-impact-card {
    padding: 26px;
    border-radius: 22px;
  }

  .donation-impact-card::before {
    display: none;
  }

  .impact-visual-panel img {
    height: 280px;
  }

  .impact-floating-note {
    right: 14px;
    left: 14px;
    top: 14px;
    max-width: none;
  }

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

  .partner-image-card,
  .partner-image-card img {
    min-height: 300px;
  }

  .partner-logo {
    min-height: 96px;
    padding: 20px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .campaign-meta {
    flex-direction: column;
  }

  .footer-cta {
    padding: 26px;
    border-radius: 20px;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 380px) {
  .navbar-collapse {
    width: 100vw;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide-item,
  .hero-slide {
    height: 620px;
  }

  .hero-title {
    font-size: 1.78rem;
  }

  .section-padding {
    padding: 58px 0;
  }

  .about-video,
  .impact-visual-panel img {
    height: 250px;
  }

  .gallery-item {
    min-height: 205px;
  }
}

@media (max-width: 991.98px) {
  .education-impact-grid,
  .home-impact-grid,
  .contact-choice-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    border-radius: 28px;
  }

  .education-impact-grid > div,
  .home-impact-grid > div,
  .contact-choice-grid > a {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 169, 213, 0.14);
    border-radius: 0;
  }

  .education-impact-grid > div:nth-child(odd),
  .home-impact-grid > div:nth-child(odd),
  .contact-choice-grid > a:nth-child(odd) {
    border-right: 1px solid rgba(47, 169, 213, 0.14);
  }

  .education-impact-grid > div:nth-last-child(-n + 2),
  .home-impact-grid > div:nth-last-child(-n + 2),
  .contact-choice-grid > a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .education-impact-grid,
  .home-impact-grid,
  .contact-choice-grid {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 22px;
  }

  .education-impact-grid > div,
  .education-impact-grid > div:nth-child(odd),
  .education-impact-grid > div:nth-last-child(-n + 2),
  .home-impact-grid > div,
  .home-impact-grid > div:nth-child(odd),
  .home-impact-grid > div:nth-last-child(-n + 2),
  .contact-choice-grid > a,
  .contact-choice-grid > a:nth-child(odd),
  .contact-choice-grid > a:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 169, 213, 0.14);
    border-radius: 0;
    text-align: left;
  }

  .education-impact-grid > div:last-child,
  .home-impact-grid > div:last-child,
  .contact-choice-grid > a:last-child {
    border-bottom: 0;
  }

  .education-impact-grid i,
  .home-impact-grid i,
  .contact-choice-grid i {
    margin-inline: 0;
    margin-bottom: 18px;
  }
}
