:root {
  --ink: #061d22;
  --muted: rgba(6, 29, 34, 0.66);
  --soft: #fffffc;
  --paper: #ffffff;
  --sky: #deeff8;
  --sky-2: #ebf8ff;
  --teal: #116e99;
  --teal-dark: #16526e;
  --sand: #fff2e3;
  --leaf: #f9fae3;
  --line: rgba(6, 29, 34, 0.08);
  --shadow: 0 24px 80px rgba(8, 54, 74, 0.12);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Apply same font to all common elements */
* {
  box-sizing: border-box;
}

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

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

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

.container {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

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

.center {
  text-align: center;
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

/* ================================
   HEADER
================================ */

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;

  opacity: 0;
  transform: translateY(-120%);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.35s ease;
}
.site-header.header-show {
  opacity: 1;
  transform: translateY(0);
}
.site-header.is-scrolled {
  top: 14px;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: 0 16px 50px rgba(4, 45, 64, 0.16);
}

.nav-shell {
  pointer-events: auto;
  border: 1px solid rgba(6, 29, 34, 0.08);
  border-radius: 15px;
  background: #fff;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 10px 12px 10px 24px;
  box-shadow: 0 10px 40px rgba(8, 54, 74, 0.08);
}

.brand img {
  width: 80px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #16526e99;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
}

/* ================================
   BUTTONS
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(22, 82, 110, 0.18);
  transition: 0.28s ease;
  cursor: pointer;
}

.btn:hover {
  background: #0f4f65;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 10px 03px inset;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-light,
.btn-outline {
  background: #ffffff;
  color: var(--teal-dark);
  border-color: var(--line);
}

/* ================================
   HOME HERO SECTION
   Use this HTML structure:
   <section class="hero-framer">
     <img class="hero-bg-img" src="...">
     <div class="hero-bottom-fade"></div>
     <div class="hero-content">...</div>
   </section>
================================ */

.hero-framer {
  position: relative;
  height: 95vh;
  margin: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-framer::before {
  display: none !important;
  content: none !important;
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 238px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 90%) 60%, #ffffff 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(760px, 92%);
  margin-top: 0px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
/* Hero inner elements animation only */

.hero-content h1,
.hero-main-btn,
.hero-donor-strip {
  opacity: 0;
  transform: translateY(-35px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content.hero-content-show h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.hero-content.hero-content-show .hero-main-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.hero-content.hero-content-show .hero-donor-strip {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}
.hero-content h1 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-align: center;
  font-size: 54px;
}

.hero-content h1 span {
  display: inline-block;
  margin: 12px 0 10px;
  padding: 10px 36px 16px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 54px;
  color: var(--teal);
  transform: rotate(-2.5deg);
}

.hero-main-btn {
    position: relative;
    z-index: 6;
    padding: 10px 20px;
    margin-top: 100px;
    border-radius: 10px;
    background: var(--teal-dark);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 800;
    transition: 0.3s ease;
}

.hero-main-btn:hover {
  background: #0f4f65;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 10px 03px inset;
}

.hero-donor-strip {
  position: relative;
  z-index: 6;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #16526e99;
  font-size: 16px;
  font-weight: 800;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 34px;
  height: 34px;
  margin-left: -9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.hero-avatars img:first-child {
  margin-left: 0;
}
/* carousol hone logo  */
.recognized-carousel-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 20px 60px;
  overflow: hidden;
}

.recognized-carousel-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.recognized-carousel-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #00000080;
  margin-bottom: 24px;
}

.recognized-carousel {
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.recognized-carousel-track {
  display: flex;
  width: max-content;
  animation: recognizedScroll 22s linear infinite;
  will-change: transform;
}

.recognized-carousel-group {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  flex-shrink: 0;
}

.recognized-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognized-logo-item img {
  max-height: 26px;
  max-width: 118px;
  width: auto;
  height: auto;
  display: block;
  opacity: 0.55;
  filter: grayscale(100%);
}

@keyframes recognizedScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* carousol end  */
/* home first section  */
.purpose-section {
  width: 100%;
  background: #fdfdfb;
  padding: 60px 0px;
}

.purpose-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.purpose-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #deeff8;
  color: #116e99;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 18px;
  border-radius: 11px;
  margin-bottom: 31px;
}

.purpose-heading {
  margin: 0;
  color: #000000;
  font-size: 46px;
  font-weight: 700;
}

.purpose-text {
    margin: 26px 0 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

/* first section end home */
/* testonomials  */
.trusted-section {
    position: relative;
    background: #deeff8;
    padding: 60px 0 60px;
    overflow: hidden;
    font-family: "Instrument Sans", sans-serif;
}

.trusted-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.trusted-head {
  max-width: 800px;
  margin-bottom: 55px;
}

.trusted-badge {
    display: inline-block;
    background: #ffffff;
    margin-bottom: 26px;
    color: #16526e;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}

.trusted-head h2 {
    margin: 0;
    color: #16526e;
    line-height: 1.05;
    font-size: 46px;
    font-weight: 700;
}

.trusted-head p {
    margin: 20px 0 0;
    color: #16526e99;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

.trusted-arrows {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  transform: none !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
}

.trusted-arrow {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: #ffffff;
  color: #16526e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  transform: none !important;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.trusted-arrow svg {
  width: 22px;
  height: 22px;
}

.trusted-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trusted-arrow:hover {
  background: #ffffff;
  color: #16526e;
  transform: none !important;
  box-shadow: none !important;
}

.trusted-arrow.is-disabled,
.trusted-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/* Curved marquee */
.trusted-moving-line {
  position: absolute;
  top: -170px;
  right: -40px;
  width: 100%;
  height: 520px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.trusted-marquee-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.trusted-marquee-ribbon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 70;
  stroke-linecap: butt;
}

.trusted-marquee-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  fill: #16526e;
}

/* Carousel */
.trusted-carousel {
  width: calc(100vw - ((100vw - 1280px) / 2) - 20px) !important;
  overflow: hidden !important;
   opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.trusted-carousel.show-trusted {
  opacity: 1;
  transform: translateY(0);
}
.trusted-track {
  display: flex;
  gap: 160px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.trusted-slide {
  min-width: 1000px;
  flex: 0 0 1000px;
}

.trusted-card {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    border-radius: 4px;
    overflow: hidden;
    min-height: auto !important;
    height: 360px !important;
    align-items: stretch !important;
    background: transparent !important;
    gap: 14px !important;
}

.trusted-content {
    height: 360px !important;
    min-height: 360px !important;
    padding: 34px 36px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.trusted-content p {
    margin: 0;
    color: #116e99;
    font-size: 24px;
    font-weight: 600;
}

.trusted-content span {
    margin-top: 28px;
    display: block;
    color: #116e99;
    font-size: 20px;
    font-weight: 600;
    border-top: solid 1px #0000000d;
    padding-top: 24px;
}

.trusted-img {
  height: 100%;
  min-height: 210px;
  background: transparent !important;
}

.trusted-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px !important;
}

/* testonomials end  */
/* events statrt  */
.events-carousel-section .events-container,
.events-carousel-section .events-carousel-wrap,
.events-carousel-section .events-track {
  background: transparent !important;
}

.events-carousel-section {
  background: #fff;
  padding: 60px 0px;
  overflow: hidden;
  font-family: "Instrument Sans", sans-serif;
}

.events-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.events-head {
  margin-bottom: 65px;
}

.events-badge {
    display: inline-block;
    margin-bottom: 18px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}

.events-head h2 {
    margin: 0;
    color: #000000;
    font-size: 46px;
    font-weight: 700;
}

.impact-head p {
    margin: 18px 0 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

.events-carousel-wrap {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 12px;
}

.events-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: eventsMove 32s linear infinite;
}

.events-carousel-wrap:hover .events-track {
  animation-play-state: paused;
}

.event-card {
  position: relative;
  width: 350px;
  height: 430px;
  flex: 0 0 350px;
  border-radius: 15px !important;
  overflow: hidden;
  display: block;
  text-decoration: none;
   background: transparent !important;
  padding: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease !important;
  transform: scale(1) translateY(0) !important;
}

.event-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Top white box */
.event-top-box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #116e99 !important;
  font-size: 14px;
  font-weight: 500 !important;
  margin-bottom: 14px;
  line-height: 1;
}

.event-date svg {
  width: 18px;
  height: 18px;
  stroke: #116e99;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-top-box h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
}

/* Bottom location box */
.event-location {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 185px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.event-location-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: #edf6fd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-location-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2f8fcb;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-location-text small {
    display: block;
    color: #0006;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 7px;
    font-weight: 500;
}
.events-head p {
    margin: 18px auto 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}
.event-location-text strong {
  display: block;
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

@keyframes eventsMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

/* events end  */
/* form start */
.volunteer-section,
.upper-section {
  position: relative;
  overflow: hidden;
}
.upper-moving-line,
.volunteer-moving-line {
  z-index: 3 !important;
  pointer-events: none;
}
.upper-moving-line {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  overflow: visible;
}
.upper-marquee-svg {
  position: absolute;
  left: 0;
  bottom: -200px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.upper-marquee-shadow {
  fill: none;
  stroke-width: 112;
  stroke-linecap: butt;
  transform: translateY(14px);
}
.upper-marquee-ribbon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 70;
  stroke-linecap: butt;
}

.upper-marquee-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  fill: #16526e;
}
.volunteer-section {
  position: relative;
  min-height: 720px;
  padding: 60px 0px;
  overflow: visible !important;
  z-index: 20 !important;
  font-family: "Instrument Sans", sans-serif;
  background: #62b4d7;
}

.volunteer-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.volunteer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.volunteer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(58, 158, 204, 0.25);
  z-index: 2;
}

.volunteer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.volunteer-left {
  padding-top: 10px;
  color: #ffffff;
}

.volunteer-badge {
    display: inline-block;
    margin-bottom: 18px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}

.volunteer-left h2 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 700;
}

.volunteer-left p {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

.volunteer-points {
  margin-top: 70px;
  width: 100%;
  max-width: 560px;
  padding: 28px 34px;
  border-radius: 24px;
  background: #e6edf5b3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.volunteer-point {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #16526e;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 24px;
}

.volunteer-point:last-child {
  margin-bottom: 0;
}

.volunteer-point span {
  font-size: 21px;
  font-weight: 700;
  color: #16526e;
}

/* Form */
.volunteer-form-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.volunteer-form-card form {
  margin: 0;
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #000c;
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #eeeeee;
  outline: none;
  background: #ffffff;
  border-radius: 3px;
  padding: 13px 14px;
  color: #111111;
  font-size: 14px;
  font-family: inherit;
  box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b6b6b6;
}

.form-group select {
  color: #999999;
  appearance: auto;
}

.form-group textarea {
  height: 105px;
  resize: none;
}

.volunteer-submit {
  width: 100%;
  border: 0;
  outline: none;
  background: #16526e;
  color: #ffffff;
  border-radius: 7px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.volunteer-submit:hover {
    background: #0f4f65;
    box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 10px 03px inset;
}

/* Moving curved ribbon */
.volunteer-moving-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -95px;
  height: 360px;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.volunteer-marquee-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.volunteer-marquee-ribbon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 70;
  stroke-linecap: butt;
}

.volunteer-marquee-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  fill: #16526e;
}

/* from end  */
/* notes */
.notes-section {
  position: relative;
  z-index: 5 !important;
  background: #ffffff;
  padding: 120px 0 0;
  overflow: visible;
  font-family: "Instrument Sans", sans-serif;
}

.notes-container {
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto;
  padding: 0 !important;
  overflow: visible !important;
}

.notes-head {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 58px;
}

.notes-head h2 {
  margin: 0;
  color: #000000;
  font-size: 46px;
  font-weight: 700;
}

.notes-head p {
  margin: 18px auto 0;
  color: #00000080;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.6px;
}

.notes-btn {
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 10px;
  background: var(--teal-dark);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.notes-btn:hover {
  background: #0f4f65;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 10px 03px inset;
}

/* Notes row */
.notes-board {
  position: relative;
  z-index: 10 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 1320px !important;
  margin: 0 auto -125px;
  padding: 20px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  overflow: visible;

  /* changed: keeps board inside container */
  transform: none;
}

.note-card {
  position: relative;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  height: 315px;
  padding: 28px 28px 24px;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease;
  /* changed: stronger overlap so 6 cards fit inside 1320px */
  margin-left: -102px;

  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-origin: center bottom;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease;
}

/* .note-card:hover {
  z-index: 20;
  transform: translateY(-16px) rotate(0deg) !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
} */
.note-card:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}
.note-card.is-dragging {
  cursor: grabbing;
  z-index: 999 !important;
  transition: none !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.20);
}
.note-card:first-child {
  margin-left: 0;
}

.note-card p {
  margin: 0;
  color: #000;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.note-card span {
  display: block;
  padding-top: 22px;
  border-top: solid 1px rgba(0, 0, 0, 0.08);
  color: #000 !important;
  font-size: 16px;
  line-height: 1;
  font-weight: 600 !important;
}

/* note colors */
.note-pink {
  background: #ffd4f0;
}

.note-cream {
  background: #fff0d8;
}

.note-yellow {
  background: #f5fadf;
}

.note-purple {
  background: #d8c2ff;
}

.note-peach {
  background: #ffe4c7;
}

.note-green {
  background: #f5fadf;
}

.notes-board .note-card:nth-child(1) {
  z-index: 1;
  transform: rotate(-1deg) translateY(46px);
  background: #fadbff;
}

.notes-board .note-card:nth-child(2) {
  z-index: 2;
  transform: rotate(-1deg) translateY(20px);
  background: #ffead1;
}

.notes-board .note-card:nth-child(3) {
  z-index: 3;
  transform: rotate(-3deg) translateY(34px);
  background: #f9fae3;
}

.notes-board .note-card:nth-child(4) {
  z-index: 4;
  transform: rotate(4deg) translateY(16px);
  background: #ddd1ff;
}

.notes-board .note-card:nth-child(5) {
  z-index: 5;
  transform: rotate(-1deg) translateY(30px);
  background: #ffead1;
}

.notes-board .note-card:nth-child(6) {
  z-index: 6;
  transform: rotate(-7deg) translateY(28px);
  background: #ddd1ff;
} 

.site-footer,
footer {
  position: relative;
  z-index: 1;
  background: #e5f5fc;
  overflow: hidden;
  padding-top: 200px;
}
/* make marquee visually land on notes section */
.volunteer-section + .notes-section {
  margin-top: -10px;
}

/* notes end */

/* faqs */
.altru-faq-section {
  background: #ffffff;
  padding: 60px 0px;
  overflow: hidden;
  font-family: "Instrument Sans", sans-serif;
}

.altru-faq-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.altru-faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.altru-faq-badge {
    display: inline-block;
    margin-bottom: 18px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}


.altru-faq-head h2 {
    margin: 0;
    color: #000000;
    font-size: 46px;
    font-weight: 700;
}

.altru-faq-head p {
    margin: 18px auto 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

.altru-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.altru-faq-item {
  background: #ebf8ff;
  border-radius: 16px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.altru-faq-question {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: #000;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.altru-faq-question span:first-child {
  transform: none !important;
  rotate: 0deg !important;
  writing-mode: horizontal-tb !important;
}

/* Plus / minus icon */
.altru-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: block;
  transition: transform 0.35s ease;
}

.altru-faq-icon::before,
.altru-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #050505;
  border-radius: 20px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.altru-faq-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.altru-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer animation */
.altru-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.altru-faq-answer-inner {
    overflow: hidden;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
    padding: 0 26px;
    transition: opacity 0.28s ease, transform 0.28s ease, padding-bottom 0.28s ease;
}

/* Open state */
.altru-faq-item.is-open .altru-faq-answer {
  grid-template-rows: 1fr;
}

.altru-faq-item.is-open .altru-faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 24px;
}


.altru-faq-item.is-open .altru-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}
.altru-faq-item.is-open .altru-faq-icon {
  transform: rotate(180deg);
}
.altru-faq-item.is-open .altru-faq-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
/* faqs end */
/* what stands for section  */
.stand-section {
  position: relative;
  position: relative;
  overflow: visible;
  z-index: 2;
  width: 100%;
  min-height: 720px;
  padding: 135px 20px 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Instrument Sans", sans-serif;
  transition: opacity 0.35s ease;
}

.stand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 50, 64, 0.18);
  z-index: 1;
  pointer-events: none;
}

.stand-section.bg-changing {
  opacity: 0.92;
}

.stand-card {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}
.stand-card.stand-card-visible {
  opacity: 1;
  transform: translateY(0);
}
.stand-title {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #000000;
  letter-spacing: -0.8px;
}

.stand-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stand-tab {
    width: 100%;
    border: 0;
    background: #fbfdfe;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 13px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    color: #000c;
    font-size: 24px;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.25s ease;
}

.stand-tab:hover,
.stand-tab.active {
  background: #e6edf5b3;
}

.stand-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 6px;
  background: #edf9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #155f71;
  transition: all 0.25s ease;
}

.stand-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stand-tab.active .stand-icon {
  background: #16526e;
  color: #ffffff;
}

.stand-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  min-height: 380px;
  background: #eeeeee;
}

.stand-image-box img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.stand-image-box.is-changing img {
  opacity: 0;
  transform: scale(1.04);
}

.stand-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 33, 45, 0.65) 0%,
    rgba(0, 33, 45, 0.22) 45%,
    rgba(0, 33, 45, 0.02) 100%
  );
}

.stand-image-box h3 {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 30px;
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  max-width: 560px;
}

/* Moving Line */

.impact-carousel-section {
  position: relative;
  overflow: visible !important;
}

/* Same style as stand-moving-line, but for impact section */
.impact-upper-moving-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -260px;
  height: 780px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.impact-upper-marquee-svg {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.impact-upper-marquee-shadow {
  fill: none;
  stroke-width: 112;
  stroke-linecap: butt;
  transform: translateY(14px);
}

.impact-upper-marquee-ribbon {
  fill: none;
  stroke: rgb(255 255 255);
  stroke-width: 70;
  stroke-linecap: butt;
}

.impact-upper-marquee-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  fill: #16526e;
}

/* keep carousel above background but below marquee */
.impact-carousel-wrap {
  position: relative;
  z-index: 4;
}

/* below section should allow marquee over it */
.purpose-section,
.section.purpose-section {
  position: relative;
  z-index: 1;
}


.stand-moving-line {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.stand-marquee-svg {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.stand-marquee-shadow {
  fill: none;
  stroke-width: 112;
  stroke-linecap: butt;
  transform: translateY(14px);
}

.stand-marquee-ribbon {
  fill: none;
  stroke: rgb(237, 242, 248);
  stroke-width: 70;
  stroke-linecap: butt;
}

.stand-marquee-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  fill: #16526e;
}
/* what stands for section end  */

/* image proudly carousle */

.impact-carousel-section {
  position: relative;
  background: #fff;
  padding: 60px 0px;
  overflow: hidden;
  font-family: "Instrument Sans", sans-serif;
}
.purpose-section,
.section.purpose-section {
  position: relative;
  z-index: 1;
}
.impact-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.impact-head {
  margin-bottom: 40px;
}

.impact-badge {
    display: inline-block;
    margin-bottom: 18px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}

.impact-head h2 {
    margin: 0;
    color: #000000;
    font-size: 46px;
    font-weight: 700;
}

.impact-head p {
    margin: 18px 0 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

/* Marquee stays inside impact section */
.impact-marquee-area {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: -30px;
  margin-bottom: -215px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.impact-marquee-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.impact-marquee-shadow {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 66;
  stroke-linecap: round;
}

.impact-marquee-ribbon {
  fill: none;
  stroke: #d8ea8a;
  stroke-width: 54;
  stroke-linecap: round;
}

.impact-marquee-text {
  fill: #0f2b5f;
  font-family: "Libre Baskerville", "Libre Baskerville Placeholder", serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Carousel */
.impact-carousel-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 35px 20px 42px;
}

.impact-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: impactRotate 24s linear infinite;
}

.impact-card {
  position: relative;
  width: calc((100vw - 40px - 66px) / 4);
  flex: 0 0 calc((100vw - 40px - 66px) / 4);
  height: 26  0px;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  margin-top: 0 !important;
  box-shadow: none;
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* label */
.impact-card-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 7px;
  font-family: "Libre Baskerville", "Libre Baskerville Placeholder", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  box-shadow: 1px 2px 0 rgb(0 0 0);
}

.blue-label {
  background: #dff2ff;
}

.cream-label {
  background: #fff3dc;
}

.pink-label {
  background: #ffd4f0;
}

/* continuous movement */
@keyframes impactRotate {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-33.333% - 15px));
  }
}
/* image produly end  */

/* mission goals  */
.goals-stack-section {
  background: #fff;
  padding: 60px 0px;
  overflow: visible;
}

.goals-stack-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.goals-stack-head {
  text-align: center;
  margin-bottom: 30px;
}

.goals-stack-head span {
    display: inline-block;
    margin-bottom: 18px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}

.goals-stack-head h2 {
    margin: 0;
    color: #000000;
    font-size: 46px;
    font-weight: 700;
}

.goals-stack-head p {
    margin: 18px auto 0;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

/* Stack wrapper */
.goals-stack-list {
  position: relative;
}

/* Sticky cards */
.goals-stack-card {
  width: 100%;
  height: 520px !important;
  min-height: 520px !important;
  margin: 0 auto 1vh;
  position: sticky;
  top: 90px;
  overflow: hidden;

}

.goal-stack-1 {
  z-index: 1;
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.goal-stack-1.show-goal {
  opacity: 1;
  transform: translateY(0);
}
.goal-stack-2 {
  z-index: 2;
}

.goal-stack-3 {
  z-index: 3;
  margin-bottom: 0 !important;
}
.goals-stack-list::after {
   display: none !important;
}
/* Inner layout */
.goals-stack-layout {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  background: #fff;
  padding: 20px 0px;
}

.goals-stack-layout.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.goals-stack-main-img,
.goals-stack-content {
  height: 100%;
  min-height: 0 !important;
  overflow: hidden;
  border-radius: 10px;
}

.goals-stack-main-img img {
  width: 100%;
  height: 100%;
   display: block;
  object-fit: cover;
}

.goals-stack-content {
  position: relative;
  padding: 48px;
  display: flex;
  align-items: flex-end;
}

.peach-card {
  background: #fff2e3;
}

.green-card {
  background: #f9fae3;
}

.blue-card {
  background: #deeff8;
}

/* Small image */
.goals-stack-small-img {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 235px;
  border: 5px solid #fff;
  border-radius: 14px;
  z-index: 2;
}

.goals-stack-small-img.left-small {
  left: 40px;
  right: auto;
}

.goals-stack-small-img img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 9px;
}

.goals-stack-note {
  position: absolute;
  left: -108px;
  bottom: 20px;
  background: #fffaf0;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 12px 18px;
  color: #111;
  font-family: "Libre Baskerville", "Libre Baskerville Placeholder", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.08;
  box-shadow: 2px 1px 0 rgb(0 0 0 / 30%);
  white-space: nowrap;
}

.goals-stack-small-img.left-small .goals-stack-note {
  left: 155px;
  bottom: 82px;
}

/* Text */
.goals-stack-text h3 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 700;
  color: #6e4616;
}

.green-card .goals-stack-text h3 {
  color: #6e5f16;
}

.blue-card .goals-stack-text h3 {
  color: #16526e;
}

.goals-stack-text p {
  max-width: 560px;
  margin: 0;
  color: #6e4616;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.green-card .goals-stack-text p {
  color: #6e5f16;
}

.blue-card .goals-stack-text p {
  color: #16526e;
}
/* mission goals end  */

/* ongoing home  */
.ongoing-projects-section {
  width: 100%;
  background: #fff;
  padding: 60px 0px;
  font-family: "Instrument Sans", sans-serif;
  overflow: hidden;
}

.ongoing-container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}

.ongoing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #deeff8;
  color: #116e99;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 18px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.ongoing-title {
  margin: 0;
  color: #000000;
  font-size: 46px;
  font-weight: 700;
}

.ongoing-desc {
    margin: 24px 0 58px;
    color: #00000080;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.6px;
}

.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.ongoing-card {
  position: relative;
  min-height: 440px;
  border-radius: 17px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.ongoing-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay one by one */
.ongoing-card:nth-child(1) {
  transition-delay: 0.05s;
}

.ongoing-card:nth-child(2) {
  transition-delay: 0.18s;
}

.ongoing-card:nth-child(3) {
  transition-delay: 0.31s;
}
.raised-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 13px;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.raised-badge span {
  color: #000000cc;
  font-weight: 400;
  margin-right: 4px;
}

.project-info {
  width: 100%;
  background: #ffffff;
  border-radius: 13px;
  padding: 18px 15px 15px;
}

.project-info h3 {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.project-info p {
  margin: 8px 0 20px;
  color: #00000066;
  font-size: 14px;
  font-weight: 500;
}

.donate-btn {
    width: 100%;
    min-height: 50px;
    background: #16526e;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.25s ease;
}

.donate-btn:hover {
  background: #0f4f65;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 10px 03px inset;
}
/* ongoing home end  */
/* ================================
   PARTNERS / LOGO MARQUEE
================================ */

.partners {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.partners-inner {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.partners p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.logo-marquee {
  overflow: hidden;
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 46px;
  animation: logoMarquee 28s linear infinite;
}

.logo-track img {
  max-height: 42px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
}

@keyframes logoMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   TYPOGRAPHY / SECTION HEADINGS
================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(17, 110, 153, 0.1);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.split-heading h2,
.section-head h2,
.join-grid h2,
.footer-cta h2,
.content-card h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.split-heading p,
.section-head p,
.join-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.section-head {
  max-width: 750px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head .eyebrow {
  margin-inline: auto;
}

.light h2,
.light p {
  color: #ffffff;
}

.light .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #e9f9ff;
}

.page-hero h1 span,
.volunteer-page-grid h1 span {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}

/* ================================
   TICKERS
================================ */

.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--teal-dark);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.ticker div {
  width: max-content;
  display: flex;
  animation: ticker 30s linear infinite;
}

.ticker span {
  padding: 18px 16px;
}

.cream-ticker {
  background: var(--sand);
  color: #6e4616;
}

.impact-ticker {
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.volunteer-ticker {
  background: var(--sky);
  color: var(--teal-dark);
}

.top-ticker {
  padding-top: 118px;
}

@keyframes ticker {
  to {
    transform: translateX(-33.333%);
  }
}

/* ================================
   PURPOSE SECTION
================================ */

.purpose-section {
  background: #ffffff;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 70px;
}

.purpose-tabs {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.purpose-tabs h4 {
  margin: 0 0 26px;
  font-size: 20px;
}

.purpose-tabs button {
  width: 100%;
  display: flex;
  margin-top: 10px;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: 0.25s ease;
}

.purpose-tabs button.active,
.purpose-tabs button:hover {
  background: var(--teal-dark);
  color: #ffffff;
}

.purpose-showcase {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sky);
  box-shadow: var(--shadow);
}

.purpose-showcase img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: 0.4s ease;
}

.purpose-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.44));
}

.purpose-showcase h3 {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

/* ================================
   CARDS / PROJECTS / EVENTS
================================ */

.card-grid {
  display: grid;
  gap: 26px;
}

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

.projects-all {
  grid-template-columns: repeat(4, 1fr);
}

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

.project-card,
.event-card,
.testimonial-card,
.note-card,
.content-card,
.contribution-card,
.event-sidebar,
.event-main,
.mission-card,
.impact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.project-card,
.event-card {
  transition: 0.3s ease;
}

.project-card:hover,
.event-card:hover {
  transform: translateY(-8px);
}

.project-image,
.event-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky);
}

.project-image img,
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.event-card:hover img {
  transform: scale(1.06) translateY(-10px) !important;
}

.project-body,
.event-body {
  padding: 24px;
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.project-topline a {
  color: var(--teal-dark);
  font-weight: 900;
}

.project-body h3,
.event-body h3 {
  margin: 14px 0 24px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.progress-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.progress {
  height: 8px;
  margin-top: 9px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(17, 110, 153, 0.13);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--teal);
}

.event-date {
  display: inline-flex;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.event-body p {
  margin: 0;
  color: var(--muted);
}

.event-body strong {
  color: var(--ink);
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.compact-event {
  border-radius: 24px;
}

.compact-event .event-body {
  padding: 18px;
}

.compact-event .event-body h3 {
  font-size: 20px;
}

.compact-event .event-image {
  aspect-ratio: 1.1 / 1;
}

/* ================================
   MISSION / IMPACT
================================ */

.mission-list {
  display: grid;
  gap: 22px;
}

.mission-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
}

.mission-card img {
  width: 100%;
  height: 245px;
  border-radius: 22px;
  object-fit: cover;
}

.mission-card span {
  color: var(--teal);
  font-weight: 900;
}

.mission-card h3 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.impact-section {
  overflow: hidden;
  background: var(--teal-dark);
  color: #ffffff;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.impact-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.impact-card.tall img {
  height: 380px;
}

.impact-card h3 {
  margin: 24px;
  font-size: 28px;
  line-height: 1.08;
}

/* ================================
   TESTIMONIALS / FAQ
================================ */

.testimonial-section {
  background: var(--soft);
}

.testimonial-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 20px;
  padding: 26px;
}

.testimonial-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.testimonial-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.testimonial-card img {
  width: 100%;
  height: 210px;
  border-radius: 22px;
  object-fit: cover;
}

.faq-section {
  background: var(--sky);
}

.faq-list {
  max-width: 870px;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 0;
  background: #ffffff;
  font-size: 21px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  transition: 0.25s ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

/* ================================
   JOIN / FORMS
================================ */

.join-section {
  background: linear-gradient(135deg, var(--sky), #ffffff);
}

.join-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.join-grid h2 {
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  list-style: none;
  padding-left: 32px;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.join-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.join-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.join-form .full {
  grid-column: 1 / -1;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fcfd;
  color: var(--ink);
  outline: 0;
  transition: 0.2s ease;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(17, 110, 153, 0.1);
}

.join-form button {
  width: max-content;
  margin-top: 4px;
}

/* ================================
   PAGE HERO / LIST PAGES
================================ */

.page-hero {
  padding: 190px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.page-hero .container {
  max-width: 850px;
}

.page-hero h1,
.volunteer-page-grid h1,
.detail-hero h1,
.event-main h1 {
  margin: 20px 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.page-hero p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.page-list-section {
  padding-top: 80px;
}

/* ================================
   VOLUNTEER PAGE
================================ */

.volunteer-page-hero {
  padding: 170px 0 100px;
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.volunteer-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.volunteer-image img {
  width: 100%;
  height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.volunteer-page-grid p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.volunteer-page-grid .join-form {
  grid-template-columns: 1fr;
  margin-top: 32px;
}

/* ================================
   DETAIL PAGES
================================ */

.detail-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.detail-grid > img {
  width: 100%;
  height: 590px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.detail-hero p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.detail-stats div {
  min-width: 180px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.detail-stats span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-stats strong {
  color: var(--teal-dark);
  font-size: 27px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 60px;
  align-items: start;
}

.content-card {
  padding: 44px;
}

.content-card h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.content-card p,
.event-main p,
.event-main li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.contribution-card {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.contribution-card h3 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.aside-image {
  width: 100%;
  height: 210px;
  margin-bottom: 18px;
  border-radius: 22px;
  object-fit: cover;
}

.contribution-card .join-form,
.event-sidebar .join-form {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.contribution-card .join-form label,
.event-sidebar .join-form label {
  font-size: 14px;
}

/* ================================
   EVENT DETAIL
================================ */

.event-detail-top {
  padding: 150px 0 100px;
  background: linear-gradient(180deg, #ffffff, var(--sky-2));
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.event-sidebar {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.event-sidebar h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.event-sidebar p {
  color: var(--muted);
  font-weight: 800;
}

.event-sidebar img {
  width: 100%;
  height: 250px;
  margin: 18px 0;
  border-radius: 24px;
  object-fit: cover;
}

.event-main {
  padding: 46px;
}

.spot-badge {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--sand);
  color: #6e4616;
  font-weight: 900;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.event-meta span {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--teal-dark);
  font-weight: 900;
}

.event-main-image {
  width: 100%;
  height: 420px;
  margin: 30px 0;
  border-radius: 26px;
  object-fit: cover;
}

.event-main h3 {
  margin: 34px 0 12px;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.event-main ul {
  padding-left: 22px;
}

/* ================================
   FOOTER
================================ */

.footer-top {
  padding: 70px 0 20px;
  background: var(--sky);
}

.footer-cta {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.footer-cta-logo {
  width: 150px;
}

.footer-cta h2 {
  margin: 0 0 10px;
}

.footer-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  background: var(--sky);
}

.footer-notes {
  padding: 44px 0;
  background: var(--sky);
}

.notes-marquee {
  overflow: hidden;
}

.notes-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: notesMove 44s linear infinite;
}

.note-card {
  width: 335px;
  padding: 24px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
}

.note-card p {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.45;
}

.note-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

@keyframes notesMove {
  to {
    transform: translateX(-50%);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 50px;
  padding: 30px 0 58px;
  
  border-bottom: 1px solid rgba(6, 29, 34, 0.08);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 20px;
}

.site-footer h3 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #116e99;
    font-weight: 700;
}
.footer-socials {
    display: flex;
    gap: 30px;
}
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}
.footer-socials a {
    font-size: 24px;
    color: #116e99 !important;
    opacity: 0.5;
}
.footer-socials a:hover {
    font-size: 24px;
    color: #116e99 !important;
    opacity: 1;
}
.site-footer a {
  display: block;
  margin: 11px 0;
  color: var(--muted);
  font-weight: 800;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #116e99;
}
.footer-bottom a {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #116e99;
    opacity: 0.8;
}
.footer-bottom a:hover {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #116e99;
    opacity: 1;
}
.footer-col a {
    font-size: 16px !important;
    font-weight: 600;
    color: #16526e;
    opacity: 0.5;
}
.footer-col a:hover {
    font-size: 16px !important;
    font-weight: 600;
    color: #16526e;
    opacity: 1;
}
.footer-address p {
    color: #16526e99;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.8;
}
/* ================================
   UTILITIES / ANIMATIONS
================================ */

.thankyou-page {
  min-height: 70vh;
}

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

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ================================
   RESPONSIVE - TABLET
================================ */

@media (max-width: 1100px) {

  /* ongoing home  */
  .ongoing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ongoing-title {
    font-size: 46px;
  }

  .ongoing-desc {
    font-size: 20px;
  }
  /* ongoing home end  */
/* carousol start home  */
.recognized-carousel-section {
    padding: 58px 0 54px;
  }

  .recognized-carousel-wrap {
    width: min(100% - 36px, 900px);
  }

  .recognized-carousel-title {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .recognized-carousel-track {
    gap: 56px;
    animation-duration: 19s;
  }

  .recognized-logo-item {
    width: 155px;
    height: 42px;
  }

  .recognized-logo-item img {
    max-height: 36px;
  }
/* carousol end  */

  .projects-row,
  .testimonial-stack,
  .events-all {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .split-heading,
  .purpose-grid,
  .join-grid,
  .volunteer-page-grid,
  .detail-grid,
  .detail-content,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .purpose-grid {
    margin-top: 40px;
  }

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

  .impact-card.tall img,
  .impact-card img {
    height: 340px;
  }

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

  .contribution-card,
  .event-sidebar {
    position: static;
  }

  .partners-inner {
    grid-template-columns: 1fr;
  }

  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-sidebar {
    order: 2;
  }

  .hero-framer {
    min-height: 680px;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-main-btn {
    margin-top: 220px;
  }
  .impact-upper-moving-line {
    height: 360px !important;
    bottom: -105px !important;
    overflow: visible !important;
}
    .impact-upper-marquee-svg {
        bottom: -114px !important;
        height: 480px !important;
        overflow: visible !important;
    }
.impact-upper-marquee-shadow {
    stroke-width: 82px !important;
}
.impact-upper-marquee-ribbon {
    stroke-width: 80px !important;
}
.impact-upper-marquee-text {
    font-size: 30px !important;
    font-weight: 600 !important;
    fill: #16526e !important;
    letter-spacing: 5px;
}
/* mission goals  */

.goals-stack-section {
    padding: 70px 0 !important;
    overflow: visible !important;
  }

  .goals-stack-container {
    max-width: 760px !important;
    padding: 0 24px !important;
  }

  .goals-stack-head {
    margin-bottom: 38px !important;
  }

  .goals-stack-head h2 {
    font-size: 46px !important;
  }

  .goals-stack-head p {
    font-size: 20px !important;
  }

  .goals-stack-list {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Keep desktop sticky functionality */
  .goals-stack-card {
    position: sticky !important;
    top: 88px !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    margin: 0 auto 12vh !important;
    overflow: visible !important;
  }

  .goal-stack-3 {
    margin-bottom: 0 !important;
  }

  /* All cards: image first, content second */
  .goals-stack-layout,
  .goals-stack-layout.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    height: auto !important;
    padding: 0 !important;
    background: #fff !important;
  }

  .goals-stack-main-img {
    order: 1 !important;
    width: 100% !important;
    height: 360px !important;
    min-height: 360px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .goals-stack-main-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  .goals-stack-content {
    order: 2 !important;
    width: 100% !important;
    min-height: 360px !important;
    height: auto !important;
    border-radius: 12px !important;
    padding: 36px !important;
    display: flex !important;
    align-items: flex-end !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .goals-stack-small-img,
  .goals-stack-small-img.left-small {
    position: absolute !important;
    top: 32px !important;
    right: 32px !important;
    left: auto !important;
    width: 190px !important;
    border: 5px solid #ffffff !important;
    border-radius: 14px !important;
    z-index: 5 !important;
  }

  .goals-stack-small-img img {
    height: 135px !important;
    border-radius: 9px !important;
    object-fit: cover !important;
  }

  .goals-stack-note,
  .goals-stack-small-img.left-small .goals-stack-note {
    left: -120px !important;
    right: auto !important;
    bottom: 18px !important;
    width: 175px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .goals-stack-text {
    max-width: 520px !important;
    padding-top: 150px !important;
  }

  .goals-stack-text h3 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    margin-bottom: 18px !important;
  }

  .goals-stack-text p {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

/* mission goals end  */

/* proudly start  */
.impact-carousel-section {
        padding: 0px 0px 60px 0px;
    }

  .impact-head {
    margin-bottom: 45px;
  }

  .impact-head h2 {
    font-size: 46px;
  }

  .impact-line {
    width: 90px;
  }

  .impact-card {
    width: 260px;
    height: 165px;
    flex-basis: 260px;
  }

  .impact-bg-text {
    font-size: 28px;
  }
/* proudly end  */
/* events start  */
 .events-carousel-section {
    padding: 80px 0;
  }

  .events-head {
    margin-bottom: 45px;
  }

  .events-head h2 {
    font-size: 46px;
  }

  .events-head p {
    font-size: 20px;
  }

  .events-track {
    gap: 20px;
    animation-duration: 28s;
  }

  .event-card {
    width: 280px;
    height: 460px;
    flex-basis: 280px;
    border-radius: 20px;
  }

  .event-top-box {
    top: 18px;
    left: 18px;
    right: 18px;
    border-radius: 16px;
    padding: 16px;
  }

  .event-top-box h3 {
    font-size: 18px;
  }

  .event-location {
    right: 18px;
    bottom: 18px;
    min-width: 170px;
  }
/* events end  */
/* form start  */
 .volunteer-section {
    padding: 90px 20px 120px;
  }

  .volunteer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .volunteer-left h2 {
    font-size: 46px;
  }

  .volunteer-left p {
    font-size: 20px;
  }

  .volunteer-points {
    margin-top: 45px;
        width: 100%;
    max-width: 100%;
  }

  .volunteer-form-card {
    
        width: 100%;
    max-width: 100%;
  }

  .volunteer-moving-line {
    bottom: -120px;
    height: 300px;
  }

  .volunteer-marquee-text {
    font-size: 24px;
  }
  .upper-moving-line {
    height: 360px !important;
    bottom: -105px !important;
    overflow: visible !important;
}
.upper-marquee-svg {
    bottom: -1080px !important;
    height: 700px !important;
    overflow: visible !important;
}
#upperMarqueePath {
    stroke-width: 80px !important;
}
.upper-marquee-ribbon {
    stroke-width: 82px !important;
}
.upper-marquee-text {
    font-family: "Instrument Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    fill: #16526e;
    letter-spacing: 5px;
}
/* form end  */

.notes-board .note-card:nth-child(-n+3) {
  display: none !important;
}
.site-footer, footer{
  padding-top: 60px;
}
/* notes */
  .notes-section {
    padding-top: 90px;
  }

  .notes-head h2 {
    font-size: 46px;
  }

  .notes-board {
    width: 100%;
    
    margin: 0;
    padding: 30px 20px 0px;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }
   
.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-col:nth-child(2) {
    grid-column: 1 !important;
  }

  .footer-col:nth-child(3) {
    grid-column: 2 !important;
  }

  .footer-col:nth-child(4),
  .footer-address {
    grid-column: 3 !important;
  }

  .note-card {
    width: 250px;
    min-width: 250px;
    height: 285px;
    margin-left: -18px;
  }

  .note-card p {
    font-size: 17px;
  }

  .note-card span {
    font-size: 15px;
  }
/* notes end  */
/* faqs */
 .altru-faq-section {
        padding: 0px 15px 60px 15px;
    }

  .altru-faq-head h2 {
    font-size: 46px;
  }

  .altru-faq-question {
    font-size: 20px;
  }
/* faqs end  */

/* nav new  */
 .site-header {
    top: 16px !important;
    padding: 0 18px !important;
    z-index: 9999 !important;
  }

  .nav-shell {
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding: 12px 14px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 0 !important;
    align-items: center !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }

  .brand img {
    width: 82px !important;
  }

  /* hamburger button */
  .nav-toggle {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 20 !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #116e99 !important;
    border-radius: 20px !important;
    transition: transform 0.28s ease, opacity 0.2s ease, background 0.2s ease !important;
  }

  /* close X */
  .nav-toggle.is-open {
    background: transparent !important;
  }

  .nav-toggle.is-open span {
    background: #116e99 !important;
  }

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

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

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

  /* menu should open inside same header box */
  .main-nav {
    position: static !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;

    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: hidden !important;

    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease !important;
  }

  .main-nav.is-open,
  .main-nav.open {
    max-height: 260px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding-top: 12px !important;
  }

  .main-nav a {
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 0 !important;
    color: #16526e !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #e5f4fb !important;
    color: #0f5a6b !important;
  }

  .nav-shell .btn-small,
  .nav-donate-btn {
    display: none !important;
  }
  .nav-shell .btn-small,
  .nav-donate-btn {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    height: 36px !important;
    margin-top: 10px !important;
    border-radius: 6px !important;
    font-size: 13px !important;

    display: none !important;
  }

  .nav-shell.menu-open .btn-small,
  .nav-shell.menu-open .nav-donate-btn {
    display: flex !important;
  }
/* nav end  */
/* nav */
 .nav-shell {
    position: relative;
    width: 90%;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border: none;
    background: #16526e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    z-index: 20;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    z-index: 15;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    color: #16526e;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #e5f4fb;
    color: #0f5a6b;
    border-radius: 0px;
    padding: 10px;
  }

  .nav-shell .btn-small {
    display: none;
  }
/* nav end  */
  /* whats section  */
  .stand-section {
    padding: 100px 18px 110px;
    min-height: auto;
  }

  .stand-card {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .stand-tab {
    font-size: 24px;
  }

  .stand-image-box h3 {
    font-size: 31px;
  }

  /* testonomials */
  .trusted-section {
    padding: 70px 0 !important;
  }

  .trusted-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 24px !important;
  }

  .trusted-head {
    margin-bottom: 22px !important;
  }

  .trusted-head h2 {
    font-size: 46px !important;
    line-height: 1.1 !important;
    margin-bottom: 14px !important;
  }

  .trusted-head p {
    font-size: 20px !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
  }

  /* arrows */
  .trusted-controls {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
  }

  .trusted-arrow {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 8px !important;
  }

  /* carousel */
  .trusted-carousel {
    width: 100% !important;
    overflow: hidden !important;
  }

  .trusted-track {
    display: flex !important;
    gap: 0 !important;
  }

  .trusted-slide {
    min-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* main card -> stacked like first image */
  .trusted-card {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 12px !important;
    height: auto !important;
    min-height: unset !important;
    background: transparent !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  .trusted-content {
    width: 100% !important;
    min-height: 155px !important;
    height: auto !important;
    padding: 18px 16px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .trusted-arrows {
    display: flex;
    gap: 10px;
    margin-top: 34px;
    transform: none !important;
    transition: background-color 0.25s ease, color 0.25s ease !important;
    justify-content: flex-end;
}
  .trusted-content p,
  .trusted-quote {
    font-size: 22px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  .trusted-person,
  .trusted-role,
  .trusted-name {
    margin-top: 16px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .trusted-img {
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  .trusted-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 8px !important;
  }
  /* testonomials ends  */
  /* whats section end  */
  .stand-moving-line {
    height: 360px !important;
    bottom: -105px !important;
    overflow: visible !important;
  }

  .stand-marquee-svg {
    bottom: -700px !important;
    height: 700px !important;
    overflow: visible !important;
  }

  .stand-marquee-ribbon {
    stroke-width: 80px !important;
  }

  .stand-marquee-shadow {
    stroke-width: 82px !important;
  }

  .stand-marquee-text {
    font-size: 30px !important;
    font-weight: 600 !important;
    fill: #16526e !important;
    letter-spacing: 5px;
  }
  .recognized-carousel-group {
    display: flex;
    align-items: center;
    gap: 52px;
    padding-right: 0px;
    flex-shrink: 0;
}

.stand-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .stand-tab {
    width: 100% !important;
    min-height: 86px !important;
    padding: 13px 15px !important;
    font-size: 20px !important;
    gap: 14px !important;
  }

  .stand-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
  }

  .stand-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .ongoing-projects-section {
    width: 100%;
    background: #fff;
    padding: 60px 20px;
    font-family: "Instrument Sans", sans-serif;
    overflow: hidden;
}
}


@media screen and (max-width: 991px) {
  .site-header {
    top: 30px !important;
    left: 0;
    right: 0;
    padding: 0 10px;
    z-index: 9999;
  }

  .nav-shell {
    width: 100% !important;
    max-width: 660px !important;
    margin: 0 auto !important;
    padding: 15px 12px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 0 !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  .brand {
    display: inline-flex;
    align-items: center;
  }

  .brand img {
    width: 80px !important;
  }

  /* 3-line hamburger */
  .nav-toggle {
    display: flex !important;
    width: 28px !important;
    height: 28px !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
  }

   .nav-toggle span {
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    background: #116e99 !important;
    border-radius: 20px !important;
    transition: 0.25s ease !important;
  }

  /* close X */
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

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

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


  /* hidden menu initially */
  .main-nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;

    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: hidden !important;

    transition: max-height 0.3s ease, opacity 0.25s ease !important;
  }

    .hero-main-btn {
        margin-top: 400px;
    }
 .main-nav.is-open,
  .main-nav.open {
    max-height: 230px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding-top: 8px !important;
    border: 0px;
  }
  .main-nav a {
    width: 100% !important;
    padding: 9px 12px !important;
    color: #5f91aa !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #e5f4fb !important;
    color: #116e99 !important;
  }
   .nav-donate-btn,
  .nav-shell .btn-small {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    height: 26px !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    font-size: 11px !important;

    display: none !important;
  }
   .nav-shell.menu-open .nav-donate-btn,
  .nav-shell.menu-open .btn-small {
    display: flex !important;
  }

  /* donate button inside opened panel */
  .nav-donate-btn {
    grid-column: 1 / -1;
    width: 100%;
    height: 26px;
    margin-top: 0;
    padding: 0 16px !important;
    border-radius: 5px !important;
    font-size: 11px !important;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease,
      margin-top 0.25s ease;
  }

  .nav-shell.menu-open .nav-donate-btn {
    opacity: 1;
    visibility: visible;
    max-height: 40px;
    margin-top: 4px;
    transform: translateY(0);
  }

  .nav-shell.menu-open {
    align-items: start;
  }

}


/* ================================
   RESPONSIVE - MOBILE
================================ */

@media (max-width: 760px) {

  .stand-moving-line {
    height: 260px !important;
    bottom: -80px !important;
    overflow: visible !important;
  }

  .stand-marquee-svg {
    bottom: -700px !important;
    height: 350px !important;
    overflow: visible !important;
  }

  .stand-marquee-ribbon {
    stroke-width: 100px !important;
  }

  .stand-marquee-shadow {
    stroke-width: 64px !important;
  }

      .stand-marquee-text {
        font-size: 42px !important;
        font-weight: 600 !important;
        fill: #16526e !important;
        letter-spacing: 5px !important;
    }
  /* ongoing home  */
  .ongoing-projects-section {
    padding: 60px 16px 70px;
  }

  .ongoing-badge {
    font-size: 16px;
    padding: 10px 14px;
  }

  .ongoing-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .ongoing-desc {
    font-size: 18px;
    margin: 18px 0 35px;
  }
.purpose-text{
  font-size: 18px;
  padding: 0px 10px;
}
  .ongoing-desc br {
    display: none;
  }

  .ongoing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ongoing-card {
    min-height: 420px;
  }
  /* ongoing home end  */

  /* carousol start home */
  .recognized-carousel-section {
    padding: 46px 0 42px;
  }

  .recognized-carousel-wrap {
    width: min(100% - 28px, 520px);
  }

  .recognized-carousel-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 24px;
  }

  .recognized-carousel-track {
    gap: 36px;
    animation-duration: 16s;
  }

  .recognized-logo-item {
    width: 125px;
    height: 36px;
  }

  .recognized-logo-item img {
    max-height: 30px;
  }

  .recognized-carousel::before,
  .recognized-carousel::after {
    width: 42px;
  }
  /* carousol end  */
  .container {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    top: 12px;
  }

  .nav-shell {
    width: min(100% - 24px, 800px);
   
    border-radius: 28px;
    padding: 9px 10px 9px 18px;
  }

  .brand img {
    width: 118px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .site-header .btn-small {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .hero-framer {
    min-height: 620px;
    margin: 8px;
    border-radius: 12px 12px 0px 0px;
  }

  .hero-content {
    margin-top: 60px;
  }

  .hero-content h1 {
    max-width: 360px;
    font-size: 44px;
  }

  .hero-content h1 span {
    padding: 8px 24px 12px;
  }

  .hero-main-btn {
    width: 220px;
    height: 56px;
    margin-top: 130px;
  }

  .hero-donor-strip {
    font-size: 16px;
  }

  .hero-avatars img {
    width: 30px;
    height: 30px;
  }

  .partners {
    padding: 24px 0;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    max-width: 120px;
    max-height: 34px;
  }

  .split-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .split-heading h2,
  .section-head h2,
  .join-grid h2,
  .footer-cta h2 {
    font-size: 40px;
  }

  .purpose-tabs button {
    font-size: 20px;
  }

  .purpose-showcase,
  .purpose-showcase img {
    min-height: 390px;
  }

  .projects-row,
  .projects-all,
  .testimonial-stack,
  .events-all,
  .event-strip {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 18px;
  }

  .mission-card img {
    height: 230px;
  }

  .join-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
        gap: 20px;
  }
.footer-grid {
    padding: 30px 0px 30px 0px !important;
   
}
.footer-bottom a {
    text-align: right;
}


  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1,
  .volunteer-page-grid h1,
  .detail-hero h1,
  .event-main h1 {
    font-size: 50px;
  }

  .volunteer-page-hero,
  .detail-hero,
  .event-detail-top {
    padding: 120px 0 70px;
  }

  .volunteer-image img,
  .detail-grid > img {
    height: 390px;
  }

  .content-card,
  .event-main {
    padding: 24px;
  }

  .event-main-image {
    height: 280px;
  }

  .ticker {
    font-size: 15px;
  }

  .top-ticker {
    padding-top: 92px;
  }

  .footer-top {
    padding-top: 55px;
  }

  .impact-upper-moving-line {
    height: 260px !important;
    bottom: -80px !important;
    overflow: visible !important;
}
.impact-upper-marquee-svg {
    bottom: -60px !important;
    height: 350px !important;
    overflow: visible !important;
}
.impact-upper-marquee-shadow {
    stroke-width: 64px !important;
}
.impact-upper-marquee-ribbon {
    stroke-width: 100px !important;
}
.impact-upper-marquee-text {
    font-size: 42px !important;
    font-weight: 600 !important;
    fill: #16526e !important;
    letter-spacing: 5px !important;
}
/* mission goals */
 .goals-stack-section {
    padding: 60px 0 !important;
    background: #ffffff !important;
    overflow: visible !important;
  }

  .goals-stack-container {
    width: 100% !important;
    max-width: 390px !important;
    padding: 0 22px !important;
    margin: 0 auto !important;
  }

  .goals-stack-head {
    margin-bottom: 28px !important;
    text-align: center !important;
  }

  .goals-stack-head span {
    font-size: 16px !important;
    
  }

  .goals-stack-head h2 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
  }
  .purpose-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #deeff8;
    color: #116e99;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 11px;
    margin-bottom: 31px;
}
  .goals-stack-head p {
    font-size: 18px !important;
    line-height: 1.35 !important;
    margin-top: 10px !important;
  }
  .purpose-heading {
    margin: 0;
    color: #000000;
    font-size: 34px;
    font-weight: 700;
    padding: 0px 10px;
}
  .goals-stack-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .goals-stack-card {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: auto !important;
    margin-bottom: 0px !important;
  }

  .goals-stack-layout,
  .goals-stack-layout.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  /* For reverse desktop card, keep image first on mobile */
  

  .goals-stack-main-img {
    width: 100% !important;
    height: 235px !important;
    min-height: 235px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    order: 1 !important;
  }

  .goals-stack-main-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  .goals-stack-content {
    width: 100% !important;
    min-height: 355px !important;
    height: auto !important;
    border-radius: 8px !important;
    padding: 20px 20px 22px !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    order: 2 !important;
  }
  .goals-stack-layout {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 20px;
    background: #fff;
    padding: 0px 0px !important;
}
  .goals-stack-small-img,
  .goals-stack-small-img.left-small {
    position: absolute !important;
    top: 22px !important;
    right: 20px !important;
    left: auto !important;
    width: 125px !important;
    border: 4px solid #ffffff !important;
    border-radius: 12px !important;
    z-index: 5 !important;
  }

  .goals-stack-small-img img {
    height: 105px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
  }

  .goals-stack-note,
  .goals-stack-small-img.left-small .goals-stack-note {
    left: -88px !important;
    right: auto !important;
    bottom: 18px !important;
    width: 150px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    border-radius: 6px !important;
    border: 2px solid #000000 !important;
    white-space: normal !important;
    text-align: center !important;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25) !important;
  }

  .goals-stack-text {
    padding-top: 175px !important;
  }

  .goals-stack-text h3 {
    margin: 0 0 18px !important;
    font-size: 25px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
  }

  .goals-stack-text p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    margin: 0 !important;
  }

  .peach-card {
    background: #fff2e3 !important;
  }

  .green-card {
    background: #f9fae3 !important;
  }

  .blue-card {
    background: #deeff8 !important;
  }
/* mission goals end  */
/* produly start  */
 .impact-carousel-section {
    padding: 70px 0;
  }

  .impact-head {
    display: block;
  }

  .impact-line {
    margin-top: 24px;
  }

  .impact-head h2 {
    font-size: 34px;
  }

  .impact-head p {
    font-size: 18px;
  }

  .impact-track {
    gap: 16px;
    animation-duration: 20s;
  }

  .impact-card {
    width: 235px;
    height: 150px;
    flex-basis: 235px;
  }

  .impact-card-label {
    font-size: 11px;
    padding: 6px 9px;
  }

  .impact-bg-text {
    font-size: 22px;
    bottom: 8px;
  }
/* produly end  */
/* events start */
.events-carousel-section {
    padding: 70px 0;
  }

  .events-container {
    padding: 0 16px;
  }

  .events-head {
    margin-bottom: 38px;
  }

  .events-head h2 {
    font-size: 34px;
  }

  .events-head p {
    font-size: 18px;
  }

  .events-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .event-card {
    width: 255px;
    height: 410px;
    flex-basis: 255px;
    border-radius: 18px;
  }

  .event-top-box {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 14px;
    border-radius: 14px;
  }

  .event-date {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 10px;
  }

  .event-date svg {
    width: 16px;
    height: 16px;
  }

  .event-top-box h3 {
    font-size: 16px;
  }

  .event-location {
    right: 14px;
    bottom: 14px;
    min-width: 150px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .event-location-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .event-location-icon svg {
    width: 19px;
    height: 19px;
  }

  .event-location-text small {
    font-size: 11px;
  }

  .event-location-text strong {
    font-size: 13px;
  }
/* events end  */
/* form start */
 .volunteer-section {
    padding: 70px 16px 100px;
  }

  .volunteer-left h2 {
    font-size: 34px;
  }

  .volunteer-left p {
    font-size: 18px;
  }

  .volunteer-points {
    padding: 22px;
    border-radius: 18px;
  }

  .volunteer-point {
    font-size: 16px;
    gap: 12px;
    margin-bottom: 18px;
  }

  .volunteer-form-card {
    padding: 20px;
  }

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

  .form-group {
    margin-bottom: 18px;
  }

  .volunteer-moving-line {
    bottom: -105px;
    height: 250px;
  }

  .volunteer-marquee-ribbon {
    stroke-width: 54;
  }

  .volunteer-marquee-text {
    font-size: 20px;
  }
/* form ends */
/* notes */ .notes-section {
    padding-top: 75px;
  }

  .notes-head {
    margin-bottom: 35px;
  }

  .notes-head h2 {
    font-size: 34px;
  }

  .notes-head p {
    font-size: 18px;
  }

  .notes-board {
    padding: 24px 16px 0px;
  }

  .note-card {
    width: 200px;
    min-width: 200px;
    height: 260px;
    padding: 22px;
    margin-left: -12px;
  }
.notes-board .note-card:nth-child(5) {
    z-index: 5;
    transform: rotate(6deg) translateY(30px);
    background: #ffead1;
}
.notes-board .note-card:nth-child(6) {
    z-index: 6;
    transform: rotate(-2deg) translateY(28px);
    background: #ddd1ff;
}
  .note-card p {
    font-size: 15px;
  }

  .note-card span {
    font-size: 14px;
  }
/* notes end */
/* faqs */
    .altru-faq-section {
        padding: 0px 15px 60px 15px;
    }

  .altru-faq-container {
    max-width: 100%;
  }

  .altru-faq-head h2 {
    font-size: 34px;
  }

  .altru-faq-head p {
    font-size: 18px;
  }

  .altru-faq-list {
    gap: 12px;
  }

  .altru-faq-question {
    padding: 20px 20px;
    font-size: 18px;
  }

  .altru-faq-answer-inner {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .altru-faq-item.is-open .altru-faq-answer-inner {
    padding-bottom: 20px;
  }

  
/* faqs ends */
.stand-tabs {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .stand-tab {
    width: 100% !important;
  }
  
  /* whats section start  */
  .stand-section {
    padding: 70px 16px 95px;
  }

  .stand-card {
    padding: 20px;
    border-radius: 16px;
    gap: 22px;
  }

  .stand-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .stand-tab {
    font-size: 19px;
    gap: 14px;
    padding: 10px;
  }

  .stand-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .stand-icon svg {
    width: 25px;
    height: 25px;
  }

  .stand-image-box,
  .stand-image-box img {
    min-height: 280px;
  }

  .stand-image-box h3 {
    top: 22px;
    left: 22px;
    right: 22px;
    font-size: 26px;
  }

  

  .stand-moving-track span {
    font-size: 22px;
    padding-right: 24px;
  }
  /* whats section end  */
  /* testonomials */
   .trusted-container {
    padding: 0 16px !important;
  }
.impact-badge {
    display: inline-block;
    margin-bottom: 16px;
    background: #deeff8;
    color: #116e99;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 13px 18px;
    border-radius: 10px;
}
  .trusted-head h2 {
    font-size: 34px !important;
  }

  .trusted-head p {
    font-size: 18px !important;
  }

  .trusted-content {
    padding: 16px 14px !important;
    min-height: 150px !important;
  }

  .trusted-content p,
  .trusted-quote {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }
.trusted-content span {
    margin-top: 28px;
    display: block;
    color: #116e99;
    font-size: 16px;
    font-weight: 600;
    border-top: solid 1px #0000000d;
    padding-top: 24px;
}
  .trusted-person,
  .trusted-role,
  .trusted-name {
    font-size: 12px !important;
  }

  .trusted-img {
    height: 180px !important;
    min-height: 180px !important;
  }
  /* testonomials end  */

  /* form marques */
.upper-moving-line {
    height: 260px !important;
    bottom: -80px !important;
    overflow: visible !important;
}
.upper-marquee-svg {
    bottom: -1080px !important;
    height: 350px !important;
    overflow: visible !important;
}
#upperMarqueePath {
    stroke-width: 64px !important;
}
.upper-marquee-ribbon {
    stroke-width: 100px !important;
}
.upper-marquee-text {
    font-size: 42px !important;
    font-weight: 600 !important;
    fill: #16526e !important;
    letter-spacing: 5px !important;
}
  /* end */
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: auto !important;
  }

  .footer-col:nth-child(4),
  .footer-address {
    grid-column: 1 / -1 !important;
  }
  .notes-board .note-card:nth-child(-n+4) {
    display: none !important;
  }
}
