.hero-section {
  height: auto;
  width: 100%;
  margin-top: 60px;
  position: relative;
  color: #ffffff;
  padding: 0 2rem;
  background: linear-gradient(to right, #012c6d, #3568b4, #ffffff00);
}

.hero-background {
  position: absolute;
  margin: auto;
  margin-right: 20%;
  right: 0;
  z-index: -1;
  height: 100%;
}

.hero-content {
  justify-content: space-between;
  margin: 4rem 0 4rem 0;
}

.hero-heading-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.hero-heading {
  font-size: 4rem;
}

.hero-sub-heading-1 {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 500;
  max-width: 70%;
}

.hero-sub-heading-2 {
  font-size: 1rem;
  font-weight: 300;
  color: #e6f0ff;
  margin-top: 1rem;
  max-width: 80%;
}

.hero-image-container {
  align-items: center;
  justify-content: center;
  width: 40%;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-cta-button {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  color: #012c6d;
  background: linear-gradient(90deg, #ffffff 0%, #ddedff 50%, #ffffff 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-position 600ms ease, color 240ms ease,
    box-shadow 300ms ease, transform 160ms ease;
}

.hero-cta-button:hover {
  color: #ffffff;
  background-position: 100% 0;
  background: #012c6d;
  border: solid 1px #ffffff;
  box-shadow: 0 6px 18px -6px rgba(0, 44, 109, 0.45);
  transform: translateY(-2px);
}

.hero-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px -4px rgba(0, 44, 109, 0.4);
}

.hero-cta-button:focus-visible {
  outline: 3px solid #ffcf4d;
  outline-offset: 3px;
}

.hero-cta-sub-text {
  background: #00000021;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #d0e4ff;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-button {
    transition: color 240ms ease, background-color 240ms ease;
    background-size: 100% 100%;
  }
  .hero-cta-button:hover {
    background-position: 0 0;
    transform: none;
    box-shadow: none;
  }
}

/* Horizontal infinite right-to-left image train */
.images-scrolling-rtl {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(to right, #012c6d, #3568b4, #ffffff00);
}

.images-scrolling-rtl::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Transparent center, soft blue fades on both edges */
  background: linear-gradient(
    to right,
    rgba(1, 44, 109, 0.85) 0%,
    rgba(1, 44, 109, 0.45) 4%,
    rgba(1, 44, 109, 0.15) 8%,
    rgba(1, 44, 109, 0) 12%,
    #ffffff00 88%,
    #ffffff26 92%,
    #ffffff73 96%,
    #ffffffd9 100%
  );
  z-index: 2;
}

.scrolling-wrapper-rtl {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: max-content;
  animation: scroll-rtl linear infinite;
  will-change: transform;
  position: relative;
  z-index: 1; /* below the fade overlay */
}

.scrolling-wrapper-rtl img {
  height: 160px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 1rem;
  border: solid 4px #e0eaff;
  transition: opacity 240ms ease, transform 240ms ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.scrolling-wrapper-rtl img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

@keyframes scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* (Removed previous @supports mask-image block) */

@media (max-width: 600px) {
  .scrolling-wrapper-rtl img {
    height: 56px;
  }
}

.arogyam-section {
  cursor: pointer;
  height: auto;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(
    to top,
    #108a00 0%,
    #108a00af 35%,
    #108a004f 70%,
    #ffffff00 100%
  );
  position: relative;
  overflow: hidden; /* already hides overflow */
}

.arogyam-section:hover .arogyam-arrow-container {
  border: solid 1.5px #ffffff;
  background: #0f9400c9;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35),
    0 2px 6px -2px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.05);
}

/* Make image 2x bigger while keeping rotation; center vertically */
.arogyam-background-image {
  position: absolute;
  opacity: 30%;
  top: 50%;
  right: -20%;
  height: 170%; /* 2x parent height */
  width: auto;
  pointer-events: none;
  z-index: -1;
  transform-origin: 50% 50%;
  animation: spin-slow 120s linear infinite;
}

.arogyam-background-image-static {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: auto;
  height: 90%;
  z-index: 1;
}

/* Preserve scale + vertical centering through keyframes */
@keyframes spin-slow {
  from {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
  to {
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arogyam-background-image {
    animation: none;
  }
}

.arogyam-section > div {
  position: relative;
  z-index: 1; /* keep text above the image */
}

.arogyam-heading {
  font-size: 4rem;
  text-align: start;
  font-weight: 800;
  color: #118f00;
  margin-left: 2rem;
}

.arogyam-sub-heading {
  font-size: 1.5rem;
  text-align: start;
  font-weight: 500;
  color: #13a500;
  margin-left: 2rem;
  margin-top: 1rem;
}

.arogyam-description {
  font-size: 1.2rem;
  text-align: start;
  font-weight: 300;
  color: #212121;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: 60%;
}

.arogyam-description-point {
  border-radius: 4px;
  background: #0f80005b;
  width: fit-content;
  position: relative;
  padding: 0.3rem 1rem;
  font-size: 1rem;
  text-align: start;
  font-weight: 300;
  color: #ffffff;
  margin-left: 2rem;
  margin-top: 0.3rem;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    background-color 240ms ease, box-shadow 260ms ease, opacity 240ms ease;
  will-change: transform;
}

.padding-bottom-3 {
  padding-bottom: 3rem;
}

.arogyam-bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.arogyam-points-container {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.arogyam-arrow-container {
  display: flex;
  height: 120px;
  width: 120px;
  margin-right: 2rem;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  background: #0f94006b;
  border-radius: 1rem;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    background-color 240ms ease, box-shadow 260ms ease;
}

.arogyam-arrow-container:hover {
  border: solid 1.5px #ffffff;
  background: #0f9400c9;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35),
    0 2px 6px -2px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.05);
}

.arogyam-arrow-image {
  height: 48px;
  width: auto;
}

.sankalp-section {  
  cursor: pointer;
  height: auto;
  width: 100%;
  padding: 5rem 2rem;
  background: linear-gradient(
    to top,
    #be4c00 0%,
    #be4c00af 35%,
    #be4c004f 70%,
    #ffffff00 100%
  );
  position: relative;
  overflow: hidden; /* already hides overflow */
}

.sankalp-section:hover .sankalp-arrow-container {
  border: solid 1.5px #ffffff;
  background: #be4c00c9;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35),
    0 2px 6px -2px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.05);
}

.sankalp-section > div {
  position: relative;
  z-index: 1; /* keep text above the image */
}

.sankalp-background-image {
  position: absolute;
  opacity: 30%;
  top: 50%;
  left: -25%;
  height: 170%; /* 2x parent height */
  width: auto;
  pointer-events: none;
  z-index: -1;
  transform-origin: 50% 50%;
  animation: spin-slow 120s linear infinite;
}

.sankalp-background-image-static {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  z-index: 1;
}

.sankalp-main-container {
  margin-left: auto;
  width: 60%;
  position: relative;
  z-index: 1; /* keep text above the image */
}

.sankalp-heading {
  font-size: 4rem;
  text-align: start;
  font-weight: 800;
  color: #be4c00;
  margin-left: 2rem;
}

.sankalp-sub-heading {
  font-size: 1.5rem;
  text-align: start;
  font-weight: 500;
  color: #d65600;
  margin-left: 2rem;
  margin-top: 1rem;
}

.sankalp-description {
  font-size: 1.2rem;
  text-align: start;
  font-weight: 300;
  color: #212121;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: 100%;
}

.sankalp-bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sankalp-points-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.sankalp-description-point {
  border-radius: 4px;
  background: #be4c005b;
  width: fit-content;
  position: relative;
  padding: 0.3rem 1rem;
  font-size: 1rem;
  text-align: start;
  font-weight: 300;
  color: #ffffff;
  margin-left: 2rem;
  margin-top: 0.3rem;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    background-color 240ms ease, box-shadow 260ms ease, opacity 240ms ease;
  will-change: transform;
}

.sankalp-description-point:hover {
  transform: translateY(-4px) scale(1.025);
  background-color: #be4c00c9;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35),
    0 2px 6px -2px rgba(0, 0, 0, 0.25);
}

.sankalp-arrow-container {
  display: flex;
  height: 120px;
  width: 120px;
  min-width: 120px;
  margin-right: 2rem;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  background: #be4c006b;
  border-radius: 1rem;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    background-color 240ms ease, box-shadow 260ms ease;
}

.sankalp-arrow-container:hover {
  border: solid 1.5px #ffffff;
  background: #be4c00c9;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.35),
    0 2px 6px -2px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.05);
}

.sankalp-arrow-image {
  height: 48px;
  width: auto;
}

.mission-vision-section {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  padding: 5rem 2rem 3rem 2rem;
  background: radial-gradient(circle at top, rgba(28, 104, 210, 0.08), transparent 55%),
    #f7f9fc;
  position: relative;
  overflow: hidden; /* hide any overflow if needed */
}

.mission-vision-heading {
  font-size: 4rem;
  text-align: center;
  font-weight: 800;
  color: #005cc5;
}

.mission-vision-heading span {
  font-weight: 100;
  font-size: 4rem;
  color: #212121;
}

.mission-vision-sub-heading {
  font-size: 2rem;
  text-align: center;
  font-weight: 100;
  color: #4b4b4b;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.two-by-two-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 3rem;
  width: 100%;
  margin: 0 auto;
}

.mission-vision-card {
  background: #ffffff9d;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: row;
  text-align: center;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    box-shadow 260ms ease;
  will-change: transform;
}

.mission-vision-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mission-vision-card-icon {
  height: 60px;
  width: auto;
  margin-right: 1rem;
}

.mission-vision-card-heading-container {
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.mission-vision-card-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 1rem;
  text-align: start;
}

.mission-vision-card-description {
  font-size: 1rem;
  font-weight: 300;
  color: #616161;
  text-align: start;
}

.default-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  width: 100%;
  padding: 5rem 2rem 3rem 2rem;
  background: #f1f1f193;
  position: relative; /* anchor absolutely positioned child */
  overflow: hidden; /* hide any overflow if needed */
}

.default-section-leading-text {
  font-size: 4rem;
  font-weight: 100;
  color: #212121;
}

.default-section-heading {
  margin: 0;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  color: #005cc5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.default-section-sub-heading {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: start;
  opacity: 0.95;
}

.default-section-description {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
  color: #141414;
  margin-top: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.padding-bottom-5 {
  padding-bottom: 5rem;
}

.default-section-background {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  display: block;
}

.default-cards-container {
  margin-top: 2rem;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.default-card {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #ffffff9d;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 30%;
  padding: 1.5rem;
  text-align: center;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    box-shadow 260ms ease;
  will-change: transform;
}

.default-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.default-card-icon {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.default-card-heading {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #212121;
}

.default-card-description {
  font-size: 1rem;
  text-align: center;
  font-weight: 300;
  color: #616161;
  margin-top: 0.5rem;
}

.donation-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
  padding: 3rem 2rem 0 2rem;
  background: linear-gradient(to top, #012c6d, #3568b4, #b8d4ff);
  position: relative;
  overflow: hidden;
}

.donation-heading {
  font-size: 4rem;
  text-align: center;
  margin-left: 2rem;
  margin-bottom: 210px;
  font-weight: 600;
  padding: 1rem 0 1rem 0;
  text-align: start;
  color: #ffffff;
  width: 100%;
}

.donation-lead {
  font-size: 4rem;
  font-weight: 100;
  color: #ffffff;
}

.donation-title {
  margin: 0;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.donation-sub {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #ffffff;
  text-align: start;
  opacity: 0.95;
}

.dontaion-cta-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  width: fit-content;
}

.donation-cta {
  margin: auto;
  font-size: 1.5rem;
  font-weight: 500;
  color: #dadada;
}

.donation-button {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  width: fit-content;
  min-width: 400px;
  color: #ffffff; /* inverted text */
  background: linear-gradient(90deg, #012c6d 80%, #3568b4 50%, #012c6d 100%);
  background-size: 200% 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 3rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-position 600ms ease, color 240ms ease,
    box-shadow 300ms ease, transform 160ms ease, border-color 240ms ease;
}

.donation-button:hover {
  color: #012c6d; /* inverted hover text */
  background-position: 100% 0;
  background: linear-gradient(90deg, #ffffff 0%, #ddedff 50%, #ffffff 100%);
  border: 1px solid #012c6d; /* inverted hover border */
  box-shadow: 0 6px 18px -6px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.image-in-button {
  height: 20px;
  width: 20px;
}

.donation-image {
  height: 380px;
  max-height: 400px;
  z-index: 1;
  width: auto;
  left: 2rem;
  margin-top: auto;
}

.donation-section-background {
  position: absolute;
  bottom: 0;
  padding: 0 0 0 5rem;
  left: 0;
  right: 0; /* stick to bottom of parent */
  width: auto; /* full width */
  height: fit-content; /* keep aspect ratio */
  pointer-events: none;
  z-index: 0; /* behind content */
  display: block;
}

/* Donation scrolling (same as hero scroller) */
.donation-images-scrolling-rtl {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 1.5rem 0;
}

.donation-images-scrolling-rtl::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #012c6dd9 0%,
    #012c6d73 4%,
    #012c6d26 8%,
    #012c6d00 12%,
    #012c6d00 88%,
    #012c6d26 92%,
    #012c6d73 96%,
    #012c6dd9 100%
  );
  z-index: 2;
}

.donation-scrolling-wrapper-rtl {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  width: max-content;
  animation: donation-scroll-rtl linear infinite;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.donation-scrolling-image-rtl {
  height: 160px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.donation-scrolling-image-rtl:hover {
  opacity: 1;
  transform: translateY(-4px);
}

@keyframes donation-scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .donation-scrolling-image-rtl {
    height: 120px;
  }
}

.donation-section-2 {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
  padding: 0 2rem 0 0;
  background: radial-gradient(circle at top, rgba(28, 104, 210, 0.08), transparent 55%),
    #f7f9fc;
  /* background: linear-gradient(to top, #012c6d, #3568b4, #b8d4ff); */
  position: relative;
  overflow: hidden;
}

.top-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b8d4ff;
  pointer-events: none;
  z-index: 2;
}

.bottom-foreground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b8d4ff;
  pointer-events: none;
  z-index: 2;
}

.top-faded-foreground {
  position: absolute;
  top: 0;
  margin-top: 80px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    #b8d4ff 0%,
    #b8d4ff 10%,
    #ffffff00 100%
  );
  pointer-events: none;
  z-index: 2;
}

.bottom-faded-foreground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 40px;
  height: 80px;
  background: linear-gradient(to top, #f1f1f1 0%, #f1f1f1 10%, #ffffff00 100%);
  pointer-events: none;
  z-index: 2;
}

.donation-heading-2 {
  z-index: 2;
  font-size: 4rem;
  text-align: center;
  margin-left: 2rem;
  font-weight: 600;
  padding: 7rem 0 5rem 0;
  text-align: start;
  color: #212121;
  width: 100%;
}

.donation-lead-2 {
  font-size: 4rem;
  font-weight: 100;
  color: #212121;
}

.donation-title-2 {
  margin: 0;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  color: #005cc5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.donation-title-2-strong {
  font-weight: 800;
  color: #005cc5;
}

.donation-sub-2 {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: start;
  opacity: 0.95;
}

.dontaion-cta-container-2 {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  width: fit-content;
}

.donation-cta-2 {
  margin: auto;
  font-size: 1.5rem;
  font-weight: 500;
  color: #005cc5;
}

.donation-button-2 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  width: fit-content;
  min-width: 400px;
  color: #ffffff; /* inverted text */
  background: linear-gradient(90deg, #005cc5 80%, #3568b4 50%, #012c6d 100%);
  background-size: 200% 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 3rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-position 600ms ease, color 240ms ease,
    box-shadow 300ms ease, transform 160ms ease, border-color 240ms ease;
}

.donation-button-2:hover {
  color: #012c6d; /* inverted hover text */
  background-position: 100% 0;
  background: linear-gradient(90deg, #ffffff 0%, #ddedff 50%, #ffffff 100%);
  border: 1px solid #012c6d; /* inverted hover border */
  box-shadow: 0 6px 18px -6px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.donation-section-background-2 {
  max-width: 30%;
  height: 100%;
  max-height: 480px;
  pointer-events: none;
  display: block;
}

.donation-images-scrolling-rtl-2 {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 0 1.5rem;
}

.donation-images-scrolling-rtl-2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* background: linear-gradient(
    to bottom,
    rgba(1,44,109,0.85) 0%,
    rgba(1,44,109,0.45) 4%,
    rgba(1,44,109,0.15) 8%,
    rgba(1,44,109,0.0) 12%,
    rgba(255,255,255,0.0) 88%,
    rgba(255,255,255,0.15) 92%,
    rgba(255,255,255,0.45) 96%,
    rgba(255,255,255,0.85) 100%
  ); */
  z-index: 2;
}

.donation-scrolling-wrapper-rtl-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  width: max-content;
  animation: donation-scroll-ttb-2 linear infinite;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.donation-scrolling-image-rtl-2 {
  width: 180px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 1rem;
  border: solid 2px #005cc5;
  transition: opacity 240ms ease, transform 240ms ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.donation-scrolling-image-rtl-2:hover {
  opacity: 1;
  transform: translateY(-4px);
}

@keyframes donation-scroll-ttb-2 {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .donation-scrolling-image-rtl-2 {
    height: 120px;
  }
}

.donation-scrolling-wrapper-rtl-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  width: max-content;
  animation: donation-scroll-btt-3 linear infinite; /* bottom → top */
  will-change: transform;
  position: relative;
  z-index: 1;
}

.donation-scrolling-image-rtl-3 {
  width: 180px; /* match v2 vertical look */
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 1rem;
  border: solid 2px #005cc5;
  transition: opacity 240ms ease, transform 240ms ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.donation-scrolling-image-rtl-3:hover {
  opacity: 1;
  transform: translateY(-4px);
}

@keyframes donation-scroll-btt-3 {
  from {
    transform: translateY(0);
  } /* start at first set */
  to {
    transform: translateY(-50%);
  } /* move up by one set (seamless) */
}

.default-cards-container-2 {
  margin-top: 2rem;
  padding: 0 3rem 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.default-card-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #ffffff9d;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 30%;
  padding: 1.5rem;
  text-align: center;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    box-shadow 260ms ease;
  will-change: transform;
}

.default-card-2:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.default-card-icon-2 {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.default-card-heading-2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #212121;
}

.default-card-description-2 {
  font-size: 1rem;
  text-align: center;
  font-weight: 300;
  color: #616161;
  margin-top: 0.5rem;
}

.donation-heading-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  padding: 5rem 0 2rem 0;
  text-align: start;
  color: #212121;
  width: 100%;
}

.donation-title-3 {
  margin: 0;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  color: #005cc5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.donation-lead-3 {
  font-size: 4rem;
  font-weight: 100;
  color: #212121;
}

.donation-sub-3 {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: start;
  opacity: 0.95;
}

.donation-sub-4 {
  font-weight: 500;
  margin: 2rem 0 0 0;
  font-size: 2rem;
  color: #0056b8;
  text-align: center;
  opacity: 0.85;
}

.dontaion-cta-container-3 {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  width: fit-content;
}

.donation-cta-3 {
  margin: auto;
  font-size: 1.5rem;
  font-weight: 500;
  color: #005cc5;
}

.donation-button-3 {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  width: fit-content;
  min-width: 400px;
  color: #ffffff; /* inverted text */
  background: linear-gradient(90deg, #005cc5 80%, #3568b4 50%, #012c6d 100%);
  background-size: 200% 100%;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 3rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-position 600ms ease, color 240ms ease,
    box-shadow 300ms ease, transform 160ms ease, border-color 240ms ease;
}

.donation-button-3:hover {
  color: #012c6d; /* inverted hover text */
  background-position: 100% 0;
  background: linear-gradient(90deg, #ffffff 0%, #ddedff 50%, #ffffff 100%);
  border: 1px solid #012c6d; /* inverted hover border */
  box-shadow: 0 6px 18px -6px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.default-cards-container-3 {
  margin-top: 1rem;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.default-card-container-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  background: #e4e4e4;
  border-radius: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.team-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
  padding: 0 2rem 0 0;
  background: radial-gradient(circle at top, rgba(28, 104, 210, 0.08), transparent 55%),
    #f7f9fc;
  /* background: linear-gradient(to top, #012c6d, #3568b4, #b8d4ff); */
  position: relative;
  overflow: hidden;
}

.horizontal-scrollable-container {
  display: flex; /* lay out children horizontally */
  flex-wrap: nowrap; /* no wrapping */
  width: 100%;
  margin-top: 1rem;
  justify-content: flex-start;
  gap: 2rem;
  overflow-x: auto; /* enable horizontal scroll */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; /* optional smooth snapping */
  padding: 1rem 2rem;
}

.horizontal-scrollable-container > * {
  flex: 0 0 auto; /* prevent shrinking; stay side-by-side */
  scroll-snap-align: start; /* optional */
}

.team-member-card {
  display: inline-block;
  background: #ffffff9d;
  margin: auto;
  overflow: hidden;
  border-radius: 2rem;
  border: #0056b8 solid 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: center;
  margin-right: 1rem;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    box-shadow 260ms ease;
  will-change: transform;
}

.team-member-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member-name {
  margin: 0 1rem 0 1rem;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #212121;
}

.team-member-role {
  margin: 0 1rem 0 1rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: #616161;
  margin-top: 0.5rem;
}

.team-member-description {
  margin: 0 1rem 2rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 300;
  color: #424242;
  margin-top: 0.5rem;
}

.wisdom-section {
  width: 100%;
  padding: 5rem 2rem 2rem 2rem;
  background: radial-gradient(circle at top, rgba(28, 104, 210, 0.08), transparent 55%),
    #f7f9fc;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wisdom-heading {
  margin: auto;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  text-align: center;
  color: #005cc5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.wisdom-sub-heading {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: start;
  opacity: 0.95;
}

.wisdom-content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.wisdom-card {
  background: #ffffff;
  border: 2px solid #e0eaff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 240ms cubic-bezier(.25,.6,.3,1), box-shadow 260ms ease, border-color 240ms ease;
}
.wisdom-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: #cfe0ff;
}

.wisdom-card-heading {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212121;
}

.wisdom-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  color: #424242;
  line-height: 1.4;
}

.wisdom-card-arrow {
  align-self: end;
  margin-top: auto;
  height: 32px;
  padding: 0.4rem;
  background: #0066ff;
  border-radius: 0.3rem;
  width: auto;
  transition: filter 240ms ease;
}

.news-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 2px solid #e0eaff; /* subtle blue border like other cards */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 320px;
  margin: auto;
  overflow: hidden;
  text-align: left;
  transition: transform 240ms cubic-bezier(0.25, 0.6, 0.3, 1),
    box-shadow 260ms ease, border-color 240ms ease;
  will-change: transform;
}
.news-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #cfe0ff;
}

.news-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 1rem 1rem 0.75rem 1rem;
  display: grid;
  gap: 0.35rem;
}

.news-date {
  margin: 0;
  font-size: 0.78rem;
  color: #6d6d6d;
  letter-spacing: 0.02em;
}

.news-title {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.05;
  color: #005cc5; /* site blue tone */
  text-align: start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.news-subtitle {
  margin: 0;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
  color: #424242;
  text-align: start;
}

.news-readmore {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #007bff00;
  width: 40px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 200ms ease,
    border-color 200ms ease, box-shadow 240ms ease;
}

.news-readmore:hover {
  background: #005cc5;
  border-color: #005cc5;
  box-shadow: 0 6px 18px -6px rgba(0, 92, 197, 0.45);
  transform: translateY(-2px);
}

.news-readmore:active {
  transform: translateY(0);
}
.news-readmore-icon {
  filter: invert(1);
  height: 18px;
  width: auto;
}
.news-readmore:hover .news-readmore-icon {
  filter: brightness(0) invert(1); /* make arrow white on blue */
}

.news-articles-section {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: radial-gradient(circle at top, rgba(28, 104, 210, 0.08), transparent 55%),
    #f7f9fc;
  border-top: 1px solid rgba(12, 39, 87, 0.08);
  border-bottom: 1px solid rgba(12, 39, 87, 0.08);
}

.news-articles-heading-wrapper {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.news-articles-heading {
  margin: auto;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.05;
  text-align: center;
  color: #005cc5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.news-articles-lead {
  font-weight: 300;
  color: #212121;
  margin-right: 0.6rem;
}

.news-articles-subheading {
  font-weight: 100;
  margin: 0.25rem 0 0 0;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: center;
  opacity: 0.95;
}

.news-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.news-articles-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  background: rgba(12, 39, 87, 0.04);
  color: #4a5468;
  font-size: 1rem;
  border: 1px dashed rgba(12, 39, 87, 0.18);
}

.news-articles-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 35px -25px rgba(13, 53, 116, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(12, 39, 87, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-articles-card--link {
  cursor: pointer;
}

.news-articles-card--link:focus-visible {
  outline: 2px solid #0a63ff;
  outline-offset: 4px;
}

.news-articles-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -30px rgba(10, 46, 105, 0.55);
}

.news-articles-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-articles-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.news-articles-date {
  font-size: 0.9rem;
  color: #7a8396;
}

.news-articles-title {
  font-size: 1.25rem;
  color: #0b2b5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-articles-subtitle {
  font-size: 1rem;
  color: #1c68d2;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-articles-description {
  font-size: 0.95rem;
  color: #4a5468;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .news-section {
    padding: 3rem 1rem;
  }
  .news-card {
    width: 260px;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 999;
}

.contact-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 23, 55, 0.55);
}

.contact-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  max-width: 480px;
  width: calc(100% - 2rem);
  box-shadow: 0 30px 60px -40px rgba(8, 33, 70, 0.7);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-modal__lottie {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.contact-modal__title {
  font-size: 1.6rem;
  color: #0a63ff;
  margin: 0;
}

.contact-modal__message {
  margin: 0;
  font-size: 1rem;
  color: #4a5468;
  line-height: 1.6;
}

.contact-modal__button {
  border: none;
  background: linear-gradient(120deg, #0a63ff, #1c8dff);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 2.25rem;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.contact-modal__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px -12px rgba(10, 99, 255, 0.8);
}

.footer-copyright-line {
  font-weight: 500;
  color: #ffffff;
}

.footer-brand-accent {
  font-weight: 600;
  color: #e98800;
}

.footer-crafted-line {
  font-size: 0.95em;
  color: #b0b0b0;
}

.contact-us-section {
  width: 100%;
  padding: 5rem 2rem 2rem 2rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-us-content {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e0eaff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.contact-us-heading {
  margin: 0 0 0.5rem 0;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  color: #005cc5;
  text-align: start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.contact-us-sub-heading {
  font-size: 1.1rem;
  font-weight: 300;
  color: #4b4b4b;
  margin: 0 0 1.25rem 0;
  max-width: 70ch;
}

.contact-us-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.contact-us-input,
.contact-us-textarea {
  width: 100%;
  background: #ffffff;
  border: 2px solid #e0eaff;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  color: #212121;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-us-input::placeholder,
.contact-us-textarea::placeholder {
  color: #8a8a8a;
}

.contact-us-input:focus,
.contact-us-textarea:focus {
  outline: none;
  border-color: #005cc5;
  box-shadow: 0 0 0 3px rgba(0, 92, 197, 0.15);
}

.contact-us-textarea {
  min-height: 140px;
  resize: vertical;
  grid-column: 1 / -1; /* span both columns */
}

.contact-us-submit-button:hover {
  color: #012c6d; /* inverted hover text */
  background-position: 100% 0;
  background: linear-gradient(90deg, #ffffff 0%, #ddedff 50%, #ffffff 100%);
  border: 1px solid #012c6d; /* inverted hover border */
  box-shadow: 0 6px 18px -6px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.contact-us-submit-button {
  justify-self: start;
  margin-top: 0.25rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(90deg, #005cc5 80%, #3568b4 50%, #012c6d 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 5px;
  grid-column: 1 / -1; /* take full row width */
  justify-self: end;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-position 600ms ease, color 240ms ease,
    box-shadow 300ms ease, transform 160ms ease, border-color 240ms ease;
}

.contact-us-submit-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px -4px rgba(0, 44, 109, 0.4);
}

.contact-us-submit-button:focus-visible {
  outline: 3px solid #ffcf4d;
  outline-offset: 3px;
}

.map {
  margin-top: 5rem;
  width: 100%;
}

.footer {
  margin-top: 0 !important;
}

.other-links {
  align-self: center;
  width: 0%;
  font-size: 1rem;
  text-decoration: none;
  transition: color 240ms ease;
}

.other-links-div {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.other-links-div a {
  color: #005cc5;
}

.other-links-div a:hover {
  color: #003a7c;
}