:root {
  --font: "Manrope", sans-serif;
  --font-head: "Nunito", sans-serif;
  --font-script: "Caveat", cursive;
  --gray: #6f7775;
  --white: #ffffff;
  --base: #00715d;
  --base-rgb: 0, 113, 93;
  --black: #283734;
  --black-rgb: 40, 55, 52;
  --primary: #fbd45a;
  --primary-rgb: 251, 212, 90;
  --extra: #f9f4e8;
  --bdr: #eee9db;
  --radius: 20px;
  --muted: #98a8a5;
  --container: 1200px;
}

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

html { scroll-behavior: auto; font-size: 16px; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 30px;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: .5s ease; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--black);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.col-5 { width: 41.666%; }
.col-7 { width: 58.333%; }

@media (max-width: 1199px) {
  .col-lg-6 { width: 50%; }
  .col-lg-4 { width: 50%; }
  .col-lg-3 { width: 50%; }
  .col-lg-12 { width: 100%; }
}
@media (max-width: 991px) {
  .col-md-6 { width: 50%; }
  .col-md-12, .col-4, .col-3, .col-8, .col-5, .col-7 { width: 100%; }
}
@media (max-width: 767px) {
  .col-6, .col-lg-6, .col-md-6, .col-lg-4, .col-lg-3 { width: 100%; }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.list-unstyled { list-style: none; padding: 0; margin: 0; }

/* Buttons */
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background: var(--primary);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 15px 49px;
  overflow: hidden;
  z-index: 1;
  border: 0;
  cursor: pointer;
  letter-spacing: 0;
}
.thm-btn::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -230%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: var(--black);
  transition: top 800ms ease;
}
.thm-btn:hover { color: var(--white); }
.thm-btn:hover::before { top: -40%; }

.section-title { position: relative; margin-top: -4px; margin-bottom: 46px; }
.section-title__tagline {
  display: block;
  font-size: 24px;
  color: var(--base);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: var(--font-script);
}
.section-title__title {
  margin: 0;
  color: var(--black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 6px;
}
.section-title.text-center .section-title__tagline { color: var(--base); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader img { width: 92px; animation: flipY 1.6s ease-in-out infinite; }
@keyframes flipY {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* Custom cursor */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 100000; border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px; border: 1px solid #fff;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px; background: #fff;
  transform: translate(-50%, -50%);
}
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ========== HEADER (Oxpins Home One) ========== */
.main-header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 99;
  box-shadow: 0 10px 60px rgba(0,0,0,.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  position: relative;
  background: #fff;
}
.header-logo a { display: block; }
.header-logo img { height: 108px; width: auto; }
.header-right { display: flex; flex-direction: column; min-width: 0; }
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 16px 40px 16px 50px;
  position: relative;
}
.volunteer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.volunteer__icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,.08);
  color: var(--black);
  font-size: 18px;
}
.volunteer__text {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}
.volunteer__text span {
  position: relative;
  display: inline-block;
  color: var(--black);
}
.volunteer__text span::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--black);
}
.header-contact { display: flex; align-items: center; gap: 36px; }
.header-contact li { display: flex; align-items: center; gap: 12px; position: relative; }
.header-contact li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--bdr);
}
.header-contact .icon {
  color: var(--base);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.header-contact p { font-size: 13px; color: var(--gray); line-height: 1.2; margin: 0; }
.header-contact h5 {
  font-family: var(--font);
  font-size: 14px; font-weight: 700; letter-spacing: 0;
  color: var(--black); margin: 2px 0 0; line-height: 1.2;
}
.header-contact h5 a:hover { color: var(--base); }

.header-bottom {
  display: flex;
  align-items: center;
  background: var(--base);
  padding: 0 0 0 50px;
  border-top-left-radius: 15px;
  overflow: visible;
}
.main-menu { display: flex; align-items: center; gap: 0; flex: 1; min-width: 0; }
.main-menu > li { position: relative; padding: 17px 0; }
.main-menu > li + li { margin-left: 22px; }
.main-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  color: #90c8be;
  display: flex; align-items: center; gap: 6px;
}
.main-menu > li > a i { font-size: 11px; }
.main-menu > li:hover > a,
.main-menu > li.current > a { color: #fff; }
.main-menu > li > ul {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: var(--black);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: .35s ease;
  z-index: 30;
}
.main-menu > li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-menu > li > ul li a {
  display: block;
  padding: 8px 22px;
  color: #98a8a5;
  font-size: 15px;
  font-weight: 500;
}
.main-menu > li > ul li a:hover { color: var(--primary); padding-left: 28px; }

.header-donate {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--black);
  background: var(--primary);
  padding: 17px 48px 17px 40px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}
.header-donate::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 100vw;
  background: var(--primary);
  z-index: -1;
}
.header-donate:hover { color: var(--black); background: var(--primary); }
.header-donate i { font-size: 15px; }
.mobile-toggler {
  display: none;
  font-size: 22px; color: #fff;
  background: none; border: 0; cursor: pointer;
}

/* Sticky */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 1000;
  transform: translateY(-110%);
  transition: transform .4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .inner {
  display: flex; align-items: stretch; justify-content: space-between;
  padding: 0 0 0 15px;
}
.sticky-bar img { height: 64px; padding: 6px 12px; }
.sticky-bar .header-bottom {
  flex: 1;
  margin-left: 20px;
  padding: 0 0 0 30px;
  border-top-left-radius: 15px;
}
.sticky-bar .header-donate { padding-top: 14px; padding-bottom: 14px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 10000;
  visibility: hidden; pointer-events: none;
}
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; transition: .4s;
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: relative; width: 300px; height: 100%;
  background: var(--black);
  padding: 30px 18px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: .45s ease;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  color: #fff; background: none; border: 0; font-size: 20px; cursor: pointer;
}
.mobile-nav .logo { display: inline-block; background: #fff; border-radius: 12px; padding: 8px; margin-bottom: 24px; }
.mobile-nav .logo img { height: 52px; }
.mobile-nav ul a {
  display: block; color: #98a8a5; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06); font-weight: 600;
}
.mobile-nav ul a:hover { color: var(--primary); }
.mobile-nav .sub { padding-left: 14px; }
.mobile-nav .sub a { font-weight: 500; font-size: 14px; }



/* ========== HERO SLIDER ========== */
.main-slider {
  position: relative;
  z-index: 91;
  background: var(--black);
  overflow: hidden;
}
.slider-track { position: relative; min-height: 720px; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity;
  transform: scale(1);
  transition: transform 7s ease, opacity 1.5s ease-in;
}
.slide.active .slide__bg { transform: scale(1.15); }
.slide__bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,55,52,.45) 0%, rgba(40,55,52,.72) 55%, rgba(40,55,52,.82) 100%);
}
.slide__shape-1, .slide__shape-2 {
  position: absolute; top: -40px; right: -40px; z-index: 2; pointer-events: none;
}
.slide__shape-1 { width: 420px; opacity: .45; mix-blend-mode: color-dodge; }
.slide__shape-2 { width: 360px; top: 40px; right: 80px; opacity: .35; }
.slide .container {
  position: relative; z-index: 30;
  padding-top: 185px; padding-bottom: 190px;
}
.slide__content { text-align: center; }
.slide__content > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .9s ease, transform .9s ease;
}
.slide.active .slide__content > * { opacity: 1; transform: none; }
.slide.active .slide__title { transition-delay: .12s; }
.slide.active .slide__content > div { transition-delay: .22s; }
.slide__sub {
  font-size: 30px; color: var(--primary);
  font-weight: 700; line-height: 30px;
  font-family: var(--font-script);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.slide__title {
  font-size: 90px; color: var(--white);
  font-weight: 900; line-height: 110px;
  letter-spacing: -0.04em; text-transform: uppercase;
  margin: 18px 0 24px;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.slider-nav {
  position: absolute; right: 60px; bottom: 80px; z-index: 20;
  display: flex; gap: 10px;
}
.slider-nav button {
  width: 55px; height: 55px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff; cursor: pointer;
  font-size: 16px; transition: .4s;
}
.slider-nav button:hover { background: var(--primary); color: var(--black); border-color: var(--primary); }

/* ========== FEATURE TWO ========== */
.feature-two { position: relative; padding: 60px 0 80px; }
.feature-card { position: relative; margin-bottom: 30px; z-index: 1; }
.feature-card__inner {
  position: relative;
  background: var(--black);
  padding: 47px 50px 45px;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
}
.feature-card__inner::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; width: 235px;
  background: radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), .18), transparent 60%);
  z-index: -1;
}
.feature-card__box { display: flex; justify-content: space-between; align-items: flex-start; }
.feature-card__tag {
  font-size: 24px; color: var(--primary);
  font-family: var(--font-script); font-weight: 700; line-height: 24px;
}
.feature-card__title {
  font-size: 36px; font-weight: 900; line-height: 46px;
  letter-spacing: -0.04em; margin-top: 8px;
}
.feature-card__title a { color: var(--white); }
.feature-card__title a:hover { color: var(--primary); }
.feature-card__icon { font-size: 52px; color: var(--primary); transition: .5s .1s; }
.feature-card:hover .feature-card__icon { transform: scale(1.2); }
.feature-card__arrow {
  position: absolute; right: 50px; bottom: -25px; z-index: 2;
}
.feature-card__arrow a {
  width: 50px; height: 50px; border-radius: 50%;
  background: #fff; box-shadow: 0 3px 7px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 15px; transition: .5s;
}
.feature-card:hover .feature-card__arrow a { background: var(--primary); color: var(--base); }

/* ========== ABOUT TWO ========== */
.about-two { position: relative; padding: 0; overflow: hidden; }
.about-two .row { align-items: flex-start; }
.about-two__left { position: relative; margin-right: 40px; }
.about-two__img-box { position: relative; display: block; margin-bottom: 44px; }
.about-two__img-box::before {
  position: absolute; top: 0; left: -60px; content: "";
  height: 330px; width: 30px; border-radius: 15px;
  background-image: linear-gradient(180deg, #fbd45a 0%, #00715d 100%);
}
.about-two__img img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 520px; }
.about-two__img-two {
  position: absolute; bottom: -30px; left: -60px;
  width: 230px;
}
.about-two__img-two img { width: 230px; height: 230px; object-fit: cover; border-radius: var(--radius); border: 8px solid #fff; }
.about-two__help {
  position: absolute; left: 90px; bottom: -38px;
  font-size: 60px; color: var(--primary);
  font-weight: 700; font-family: var(--font-script); line-height: 60px;
  text-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.about-shape { position: absolute; pointer-events: none; }
.about-shape-1 { left: -80px; bottom: 280px; width: 90px; animation: bob 4s ease-in-out infinite; }
.about-shape-2 { left: 180px; bottom: 300px; width: 48px; animation: spin 12s linear infinite; }
.about-shape-3 { right: 20px; bottom: -40px; width: 70px; animation: bob 5s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.about-two__right { padding-top: 20px; }
.about-two__text { font-size: 16px; }
.about-points {
  display: flex; align-items: flex-start; gap: 23px;
  margin: 35px 0 36px; flex-wrap: wrap;
}
.about-points li { display: flex; flex: 1; min-width: 220px; }
.about-points .icon { color: var(--base); font-size: 32px; margin-top: 6px; }
.about-points .text { margin-left: 18px; }
.about-points h4 { font-size: 20px; font-weight: 900; line-height: 30px; }
.about-points p { font-size: 16px; }

.progress-wrap { margin-bottom: 28px; }
.progress-item { margin-bottom: 18px; }
.progress-item h4 { font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 6px; }
.progress-item .bar { width: 100%; height: 13px; background: #f8f3e7; border-radius: 7px; overflow: hidden; }
.progress-item .bar-inner {
  height: 100%; width: 0;
  background: var(--primary); border-radius: 7px;
  position: relative;
}
.progress-item .count { float: right; font-size: 16px; font-weight: 700; color: var(--black); }

/* ========== CAUSES (Oxpins Home Two) ========== */
.causes-two {
  position: relative;
  padding: 120px 0 120px;
  background-color: var(--extra);
  background-image: radial-gradient(rgba(40, 55, 52, 0.07) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  z-index: 1;
  overflow: hidden;
}
.causes-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}
.causes-top__left .section-title { margin-bottom: 0; }
.causes-top__right { padding-top: 21px; }
.causes-top__right p { font-size: 16px; line-height: 30px; color: var(--gray); }

.causes-body {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.causes-filters {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.tab-buttons {
  position: relative;
  z-index: 1;
}
.tab-buttons::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--bdr);
  z-index: 0;
}
.tab-btn { display: block; }
.tab-btn span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--gray);
  font-weight: 400;
  cursor: pointer;
  padding: 10px 10px 10px 47px;
  transition: .3s ease;
  z-index: 1;
}
.tab-btn span sup {
  font-size: 11px;
  font-weight: 700;
  top: -0.55em;
}
.tab-btn.active-btn span,
.tab-btn:hover span {
  color: var(--black);
  font-weight: 800;
}
.tab-btn span::before {
  content: "";
  position: absolute;
  left: 47px; right: 0; bottom: 16px;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
  z-index: -1;
}
.tab-btn.active-btn span::before { transform: scaleX(1); }
.tab-btn span::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--base);
  transform: scaleY(0);
  transition: .3s ease;
  z-index: -1;
}
.tab-btn.active-btn span::after { transform: scaleY(1); }

.causes-nav {
  display: flex;
  margin-top: auto;
  padding-top: 40px;
}
.causes-prev, .causes-next {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  background: var(--primary);
  transition: .5s ease;
  font-family: var(--font);
}
.causes-prev {
  padding: 0 22px 0 26px;
  border-radius: 30px 0 0 30px;
}
.causes-next {
  padding: 0 26px 0 22px;
  border-radius: 0 30px 30px 0;
}
.causes-prev:hover, .causes-next:hover { background: #fff; }
.causes-prev i, .causes-next i { font-size: 15px; }

.causes-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  padding-bottom: 10px;
}
.causes-arrow {
  position: absolute;
  top: 110px;
  z-index: 6;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--black);
  box-shadow: 0 3px 10px rgba(0,0,0,.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .4s ease;
}
.causes-arrow:hover {
  background: var(--primary);
  color: var(--black);
}
.causes-arrow--prev { left: 18px; }
.causes-arrow--next { right: 40px; }
.causes-track {
  display: flex;
  gap: 30px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.cause-card {
  flex: 0 0 370px;
  max-width: 370px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  cursor: pointer;
}
a.cause-card:hover { color: inherit; }
.cause-card.is-hidden { display: none; }
.cause-card__img {
  position: relative; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cause-card__img img {
  width: 100%; height: 270px; object-fit: cover;
  transition: .7s ease;
}
.cause-card:hover .cause-card__img img { transform: scale(1.1) rotate(2deg); }
.cause-card__img::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(var(--black-rgb), .3);
  transform: perspective(400px) rotateX(-90deg) scale(.2);
  transform-origin: top; transition: .5s; z-index: 1;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cause-card:hover .cause-card__img::before { transform: perspective(400px) rotateX(0) scale(1); }
.cause-card__cat {
  position: absolute; bottom: 30px; left: 30px; z-index: 2;
  background: var(--primary); padding: 6px 25px; border-radius: 15px;
  font-family: var(--font-script); font-size: 18px; font-weight: 700;
  color: var(--black); line-height: 18px;
}
.cause-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: .4s ease;
}
.cause-card:hover .cause-card__arrow {
  background: var(--primary);
  color: var(--black);
  transform: translateX(3px);
}
.cause-card__content {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--bdr); border-top: 0;
  padding: 22px 30px 30px;
}
.cause-card__title {
  font-size: 26px; line-height: 36px; font-weight: 800; letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.cause-card__title,
.cause-card__title a { color: var(--black); }
.cause-card:hover .cause-card__title,
.cause-card__title a:hover { color: var(--primary); }
.cause-card__text { padding: 11px 0 21px; font-size: 16px; }

.cause-progress {
  position: relative;
  padding: 40px 24px 18px;
  background: var(--extra);
  border-radius: var(--radius);
  border: 1px solid var(--bdr);
}
.cause-progress .bar {
  width: 100%; height: 7px; background: #fff; border-radius: 5px; margin-bottom: 8px;
}
.cause-progress .bar-inner {
  height: 7px; border-radius: 5px; background: var(--base); position: relative;
}
.cause-progress .count-text {
  position: absolute; right: 0; bottom: 14px;
  color: var(--base); font-size: 12px; font-weight: 700; line-height: 20px;
}
.cause-progress .count-text::after {
  content: "";
  position: absolute; left: 5px; top: 17px;
  height: 20px; width: 20px;
  background: var(--base); border-radius: 50%;
}
.cause-progress .count-text::before {
  content: "";
  position: absolute; left: 12px; top: 24px;
  height: 6px; width: 6px;
  background: #fff; border-radius: 50%; z-index: 1;
}
.cause-goals {
  display: flex; justify-content: space-between; align-items: center;
}
.cause-goals p { font-size: 14px; color: #707876; margin: 0; }
.cause-goals span { color: var(--black); font-weight: 700; }

.scroll-top {
  position: fixed; right: 30px; bottom: 30px; z-index: 90;
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--primary); color: var(--black);
  border: 0; cursor: pointer; font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: .35s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--black); color: var(--primary); }

/* ========== TESTIMONIALS ========== */
.testimonial-two { padding: 120px 0 140px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card {
  background: var(--extra);
  border-radius: var(--radius);
  padding: 40px 30px 36px;
  position: relative;
}
.testi-card__img {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  border: 4px solid #fff; margin-bottom: 22px;
}
.testi-card__img img { width: 100%; height: 100%; object-fit: cover; }
.testi-card p { font-size: 16px; margin-bottom: 18px; }
.testi-card h4 { font-size: 20px; margin-bottom: 2px; }
.testi-card .role { font-size: 14px; color: var(--base); font-weight: 700; }
.testi-card .stars { color: var(--primary); margin-bottom: 10px; font-size: 14px; }

/* ========== GALLERY STRIP ========== */
.gallery-two { position: relative; }
.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); }
.gallery-item { position: relative; overflow: hidden; height: 280px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .7s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__content {
  position: absolute; inset: 0;
  background: rgba(var(--black-rgb), .55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: .45s;
}
.gallery-item:hover .gallery-item__content { opacity: 1; }
.gallery-item__content p {
  font-family: var(--font-script); color: var(--primary);
  font-size: 22px; font-weight: 700;
}
.gallery-item__content h5 { color: #fff; font-size: 22px; margin-top: 4px; }

/* ========== HELP ========== */
.help {
  position: relative; padding: 110px 0;
  background: var(--black);
  overflow: hidden;
}
.help-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity; opacity: .28;
}
.help__single { display: flex; gap: 22px; align-items: flex-start; }
.help__icon {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--black);
}
.help__title { font-size: 24px; color: #fff; margin-bottom: 8px; }
.help__title a { color: #fff; }
.help__title a:hover { color: var(--primary); }
.help__text { color: #c5d0cd; font-size: 15px; }

/* ========== URGENT ========== */
.urgent-cause { padding: 40px 0 80px; position: relative; z-index: 2; }
.urgent-inner {
  position: relative;
  background: var(--black);
  border-radius: var(--radius);
  padding: 70px 70px 50px;
  overflow: hidden;
}
.urgent-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity; opacity: .22;
}
.urgent-top { display: flex; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.urgent-inner .section-title__tagline { color: var(--primary); }
.urgent-inner .section-title__title { color: #fff; }
.urgent-right { max-width: 320px; }
.urgent-right p { color: #c5d0cd; margin-bottom: 18px; }
.urgent-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--black);
  font-weight: 800; text-transform: uppercase; font-size: 14px;
  padding: 14px 34px; border-radius: 30px;
}
.urgent-btn:hover { background: #fff; color: var(--base); }
.urgent-date { margin-top: 14px; color: var(--primary); font-family: var(--font-script); font-size: 22px; font-weight: 700; }
.urgent-progress { position: relative; z-index: 1; margin-top: 36px; }
.urgent-progress .bar { height: 12px; background: rgba(255,255,255,.12); border-radius: 8px; overflow: hidden; }
.urgent-progress .bar-inner { height: 100%; width: 0; background: var(--primary); border-radius: 8px; }
.urgent-goals { display: flex; justify-content: space-between; margin-top: 12px; color: #c5d0cd; }
.urgent-goals span { color: #fff; font-weight: 800; }

/* ========== TEAM / PROGRAMS ========== */
.team-one { padding: 60px 0 72px; }
.team-one .section-title { margin-bottom: 28px; }
.team-card { margin-bottom: 30px; }
.team-card__img { position: relative; overflow: hidden; border-radius: var(--radius); }
.team-card__img img { width: 100%; height: 320px; object-fit: cover; transition: .6s; }
.team-card:hover .team-card__img img { transform: scale(1.08); }
.team-card__social {
  position: absolute; left: 0; right: 0; bottom: 20px;
  display: flex; justify-content: center; gap: 8px;
  transform: translateY(20px); opacity: 0; transition: .4s;
}
.team-card:hover .team-card__social { opacity: 1; transform: none; }
.team-card__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--black);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.team-card__social a:hover { background: var(--black); color: #fff; }
.team-card__content { text-align: center; padding-top: 18px; }
.team-card__content h3 { font-size: 22px; }
.team-card__content h3 a { color: var(--black); }
.team-card__content h3 a:hover { color: var(--base); }
.team-card__content p { color: var(--base); font-weight: 600; font-size: 14px; }

/* Map */
.google-map { line-height: 0; }
.google-map iframe { width: 100%; height: 450px; border: 0; filter: grayscale(.3); }

/* Contact bar */
.contact-one { margin-top: -70px; position: relative; z-index: 2; padding-bottom: 80px; }
.contact-bar {
  background: #fff;
  box-shadow: 0 10px 60px rgba(0,0,0,.1);
  padding: 42px 80px 43px;
  border-radius: var(--radius);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.contact-bar__item { display: flex; align-items: center; gap: 16px; position: relative; padding-right: 40px; }
.contact-bar__item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: var(--bdr);
}
.contact-bar__icon {
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 22px; transition: .4s;
}
.contact-bar__item:hover .contact-bar__icon { background: var(--base); color: #fff; }
.contact-bar__sub { font-size: 14px; font-weight: 600; }
.contact-bar__val { font-size: 16px; font-weight: 700; color: var(--black); }
.contact-bar__val a:hover { color: var(--base); }

/* News */
.news-two { padding: 120px 0 90px; }
.news-feature img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.news-feature { position: relative; margin-bottom: 30px; }
.news-feature__img { position: relative; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.news-date {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--primary); padding: 6px 22px; border-radius: 15px;
  font-family: var(--font-script); font-weight: 700; color: var(--black); font-size: 18px;
}
.news-feature__body { padding: 22px 8px 0; }
.news-meta { display: flex; gap: 16px; margin-bottom: 10px; font-size: 14px; color: var(--gray); }
.news-meta i { color: var(--primary); margin-right: 4px; }
.news-feature h3 { font-size: 28px; }
.news-feature h3 a { color: var(--black); }
.news-feature h3 a:hover { color: var(--base); }

.news-list li { display: flex; gap: 20px; margin-bottom: 22px; }
.news-list img { width: 140px; height: 110px; object-fit: cover; border-radius: 14px; flex-shrink: 0; }
.news-list h3 { font-size: 20px; line-height: 28px; }
.news-list h3 a { color: var(--black); }
.news-list h3 a:hover { color: var(--base); }

/* Stats strip */
.stats {
  background: var(--extra);
  padding: 50px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats-item h3 {
  font-size: 48px; color: var(--base); margin-bottom: 6px;
}
.stats-item p { font-weight: 700; color: var(--black); }

/* Footer */
.site-footer {
  position: relative;
  background: var(--black);
  z-index: 1;
}
.footer-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity; opacity: .04;
}
.footer-top { padding: 100px 0 80px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 30px; }
.footer-logo { display: inline-block; background: #fff; border-radius: 12px; padding: 8px 10px; }
.footer-logo img { height: 64px; }
.footer-about p { color: var(--muted); padding: 16px 0 20px; }
.footer-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--black);
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  padding: 10px 40px; border-radius: 25px;
}
.footer-btn:hover { background: #fff; color: var(--base); }
.footer-title { font-size: 20px; color: #fff; font-weight: 800; margin-bottom: 27px; }
.footer-links a {
  display: inline-block; font-size: 15px; color: var(--muted); margin-bottom: 11px;
}
.footer-links a:hover { color: #fff; padding-left: 12px; }
.footer-contact p, .footer-contact a { color: var(--muted); display: block; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--primary); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; position: relative; z-index: 1;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 14px; }
.footer-bottom a { color: var(--primary); }

/* Page header */
.page-header {
  position: relative;
  padding: 141px 0 132px;
  background: var(--black);
  z-index: 1;
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity; opacity: .45;
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(var(--black-rgb), .45);
  z-index: 1;
}
.page-header__inner { position: relative; z-index: 2; text-align: center; }
.page-header h2 { font-size: 40px; color: #fff; line-height: 50px; margin-bottom: 8px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; color: #fff; font-weight: 600; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover, .breadcrumb span { color: var(--primary); }

/* Inner content */
.page-section { padding: 120px 0; }
.page-section.alt { background: var(--extra); }
.content-img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.content-img.tall { height: 460px; }

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: stretch;
}
.split-block--reverse .split-block__media { order: 2; }
.split-block--reverse .split-block__copy { order: 1; }
.split-block__media {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.split-block__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-block__copy { display: flex; flex-direction: column; justify-content: flex-start; }
.split-block__copy .section-title { margin-bottom: 22px; }
.split-block__copy .section-title__title { font-size: 42px; line-height: 1.18; }
.split-block__copy .thm-btn { align-self: flex-start; }
.prose h3 { font-size: 26px; margin: 22px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 10px 0 20px 0; }
.prose ul li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
}
.prose ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; color: var(--base);
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.about-design { padding: 110px 0 90px; }
.about-design__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: stretch;
}
.about-design__photos {
  position: relative;
  min-height: 100%;
  padding: 0 36px 0 0;
}
.about-design__frame {
  position: absolute;
  top: 36px;
  left: 40px;
  right: 8px;
  bottom: 36px;
  border: 5px solid var(--primary);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}
.about-design__img-main {
  position: relative;
  z-index: 2;
  width: 86%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}
.about-design__img-sub {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 42%;
  z-index: 3;
  border-radius: var(--radius);
  border: 8px solid #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-design__copy { padding-top: 0; }
.about-design__copy .section-title { margin-top: 0; margin-bottom: 22px; }
.about-design__copy > p { margin-bottom: 22px; }
.about-vision-box {
  background: var(--extra);
  border-radius: var(--radius);
  padding: 28px 30px 24px;
  border-left: 5px solid var(--base);
}
.about-vision-box .section-title__tagline { display: block; margin-bottom: 10px; }
.about-vision-box p { margin: 0; font-size: 16px; line-height: 1.8; color: var(--gray); }

.mission-banner {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  margin-bottom: 70px;
}
.mission-banner__icon {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.mission-banner h3 {
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mission-banner p { margin: 0; font-size: 17px; line-height: 1.75; color: var(--gray); }

.values-grid--six { grid-template-columns: repeat(3, 1fr); }
.value-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: .4s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: transparent;
}
.value-card .ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--extra);
  color: var(--base);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.value-card h4 { font-size: 20px; margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 15px; color: var(--gray); }

@media (max-width: 991px) {
  .about-design__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-design__photos { padding: 0 30px 40px 0; }
  .about-design__img-main { width: 92%; min-height: 340px; height: 340px; }
  .mission-banner { flex-direction: column; padding: 28px 24px; }
  .values-grid--six { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .values-grid--six { grid-template-columns: 1fr; }
  .about-design__img-sub { width: 52%; }
}
/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--bdr); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 22px 28px; font-size: 18px; font-weight: 800;
  color: var(--black); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head);
}
.faq-item button i { color: var(--base); }
.faq-item .faq-body { display: none; padding: 0 28px 22px; color: var(--gray); }
.faq-item.open .faq-body { display: block; }
.faq-item.open button { color: var(--base); }

/* Gallery page */
.gallery-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-page-grid a {
  display: block; border-radius: var(--radius); overflow: hidden; height: 280px;
}
.gallery-page-grid img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.gallery-page-grid a:hover img { transform: scale(1.08); }

/* Contact / donate form */
.form-card {
  background: var(--extra); border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; color: var(--black); margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid var(--bdr); background: #fff;
  border-radius: 12px; padding: 12px 16px; outline: 0; color: var(--black);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--base); }
.form-note { font-size: 14px; margin-top: 10px; }
.form-success { display: none; background: var(--base); color: #fff; padding: 14px 18px; border-radius: 12px; margin-top: 12px; }

/* Donation listing */
.donation { padding: 120px 0 90px; }
.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.donation-grid .cause-card {
  flex: 0 1 auto;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

/* Donation details */
.donation-details { padding: 120px 0; }
.donation-details__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.donation-details__left,
.donation-details__sidebar { min-width: 0; }
.donation-details__img { position: relative; }
.donation-details__img img {
  width: 100%;
  max-width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
}
.donation-details__date {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary);
  box-shadow: 0 4px 7px rgba(0,0,0,.1);
  padding: 6px 25px;
  border-radius: 15px;
  z-index: 2;
}
.donation-details__date p {
  font-size: 18px;
  color: var(--black);
  line-height: 18px;
  font-family: var(--font-script);
  font-weight: 700;
  margin: 0;
}
.donation-details__content { margin-top: 32px; }
.donation-details__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: -0.04em;
  margin-bottom: 19px;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.donation-details__text,
.donation-details__summary-text-1,
.donation-details__summary-text-2 {
  font-size: 16px;
  line-height: 30px;
  overflow-wrap: anywhere;
}
.donation-details__donate {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--extra);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 36px 39px;
  overflow: hidden;
  margin: 51px 0 52px;
  z-index: 1;
}
.donation-details__donate-shape {
  position: absolute;
  inset: 0 220px 0 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 140px;
  opacity: .18;
  z-index: -1;
  pointer-events: none;
}
.donation-details__donate-list {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
}
.donation-details__donate-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.donation-details__donate-list .icon i {
  font-size: 40px;
  color: var(--base);
}
.donation-details__donate-list .text span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}
.donation-details__donate-list .text p {
  font-size: 20px;
  color: var(--black);
  font-weight: 700;
  line-height: 25px;
  margin: 0;
}
.donation-details__summary-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: -0.04em;
  margin-bottom: 19px;
}
.donation-details__summary-text-1,
.donation-details__summary-text-2 { font-size: 16px; line-height: 30px; }
.donation-details__summary-list {
  margin: 28px 0;
  padding: 0;
}
.donation-details__summary-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.donation-details__summary-list .icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.donation-details__summary-list .text p {
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.donation-details__form { margin-top: 50px; }
.donation-details__form-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.donation-details__organizer {
  display: flex;
  background: var(--extra);
  border-radius: var(--radius);
  padding: 40px 36px 36px;
  margin-bottom: 30px;
}
.donation-details__organizer-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
}
.donation-details__organizer-content { margin-left: 18px; margin-top: -2px; }
.donation-details__organizer-date {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-script);
  line-height: 22px;
  margin: 0;
}
.donation-details__organizer-title {
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 2px 0 0;
}
.donation-details__organizer-name {
  color: var(--base);
  font-weight: 800;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.donation-details__organizer-list { margin-top: 10px; padding: 0; }
.donation-details__organizer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.donation-details__organizer-list .icon i { color: var(--primary); font-size: 14px; width: 16px; }
.donation-details__organizer-list .text p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--gray);
}
.donation-details__posts {
  background: var(--extra);
  border-radius: var(--radius);
  padding: 40px 36px 36px;
}
.donation-details__posts-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.donation-details__post-list { margin: 0; padding: 0; }
.donation-details__post-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--bdr);
}
.donation-details__post-list li:first-child { border-top: 0; padding-top: 0; }
.donation-details__post-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.donation-details__post-list h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  margin: 0;
}
.donation-details__post-list h4 a { color: var(--black); }
.donation-details__post-list h4 a:hover { color: var(--base); }
.donation-details__post-list span {
  display: block;
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 4px;
}
.donation-details__share {
  background: var(--extra);
  border-radius: var(--radius);
  padding: 40px 36px;
  margin-top: 30px;
}
.donation-details__share h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.donation-details__share-social { display: flex; align-items: center; gap: 10px; }
.donation-details__share-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.donation-details__share-social a:hover {
  background: var(--base);
  color: #fff;
}

/* Events listing */
.events-page { padding: 120px 0 90px; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.event-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  min-width: 0;
}
.event-card__img {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  z-index: 1;
}
.event-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 45, 43, 0) 17%, rgb(33, 45, 43) 97%);
  z-index: 1;
}
.event-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--black-rgb), .3);
  transform: scale(1, 0);
  transform-origin: top center;
  transition: transform .5s ease;
  border-radius: var(--radius);
  z-index: 1;
}
.event-card:hover .event-card__img::after {
  transform: scale(1, 1);
  transform-origin: bottom center;
}
.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-card:hover .event-card__img img { transform: scale(1.05); }
.event-card__date {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--primary);
  padding: 6px 25px;
  border-radius: 15px;
  z-index: 2;
}
.event-card__date p {
  font-size: 18px;
  color: var(--black);
  line-height: 18px;
  font-family: var(--font-script);
  font-weight: 700;
  margin: 0;
}
.event-card__content {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  z-index: 2;
}
.event-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 8px;
  padding: 0;
}
.event-card__meta li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.event-card__meta li i {
  padding-right: 6px;
  color: var(--primary);
}
.event-card__title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 36px;
  color: #fff;
  margin: 0;
  overflow-wrap: anywhere;
}
.event-card:hover .event-card__title { color: var(--primary); }

/* Event details */
.event-details { padding: 120px 0; }
.event-details__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.event-details__left,
.event-details__right { min-width: 0; }
.event-details__date {
  display: inline-block;
  background: var(--primary);
  padding: 6px 25px;
  border-radius: 15px;
}
.event-details__date p {
  font-size: 18px;
  color: var(--black);
  line-height: 18px;
  font-family: var(--font-script);
  font-weight: 700;
  margin: 0;
}
.event-details__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 40px;
  margin: 14px 0 22px;
  overflow-wrap: anywhere;
}
.event-details__text-1,
.event-details__text-3,
.event-details__text-4,
.event-details__text-6 {
  font-size: 16px;
  line-height: 30px;
}
.event-details__text-2,
.event-details__text-5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--base);
  padding: 32px 0;
  line-height: 30px;
}
.event-details__img-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 51px 0 21px;
}
.event-details__img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.event-details__btn-box { margin-top: 36px; }
.event-details__info {
  background: #fff;
  box-shadow: 0 10px 60px rgba(0,0,0,.1);
  border-radius: var(--radius);
  padding: 36px 40px 40px;
  border-top: 4px solid var(--base);
}
.event-details__info-list { margin: 0; padding: 0; }
.event-details__info-list li + li { margin-top: 27px; }
.event-details__info-list li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}
.event-details__info-list li p {
  font-size: 16px;
  color: var(--black);
  font-weight: 800;
  line-height: 19px;
  margin: 0;
}
.event-details__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
}
.event-details__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--extra);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.event-details__social a:hover {
  background: var(--base);
  color: #fff;
}
.event-details__map {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--extra);
}
.event-details-map__one {
  display: block;
  border: 0;
  height: 430px;
  width: 100%;
  filter: grayscale(.3);
}

.volunteer-enroll {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}
.volunteer-enroll__left {
  background: var(--extra);
  padding: 50px 48px;
}
.volunteer-enroll__left img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.volunteer-enroll__left h3 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}
.volunteer-enroll__left > p { margin-bottom: 22px; }
.volunteer-points { list-style: none; margin: 0 0 28px; padding: 0; }
.volunteer-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--black);
}
.volunteer-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--base);
  box-shadow: inset 0 0 0 4px var(--base);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M4.5 8.5 2 6l.7-.7 1.8 1.8 4.8-4.8.7.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.volunteer-call {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--bdr);
  padding-top: 28px;
}
.volunteer-call__icon {
  width: 65px; height: 65px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.volunteer-call span {
  display: block;
  font-family: var(--font-script);
  color: var(--base);
  font-weight: 700;
  font-size: 18px;
}
.volunteer-call p { margin: 4px 0 0; font-size: 20px; font-weight: 800; }
.volunteer-call a { color: var(--black); }
.volunteer-call a:hover { color: var(--base); }
.volunteer-enroll__right {
  background: #fff;
  border: 1px solid var(--bdr);
  border-left: 0;
  padding: 50px 48px;
}
@media (max-width: 991px) {
  .volunteer-enroll { grid-template-columns: 1fr; }
  .volunteer-enroll__right { border-left: 1px solid var(--bdr); }
}

/* Volunteer team — Oxpins portraits + 3D hover flip */
.volunteer-team-sec { padding-bottom: 90px; }
.volunteer-team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.v-flip {
  height: 430px;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
}
.v-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4, .2, .2, 1);
}
.v-flip:hover .v-flip__inner,
.v-flip:focus-visible .v-flip__inner,
.v-flip.is-flipped .v-flip__inner {
  transform: rotateY(180deg);
}
.v-flip__face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.v-flip__front {
  background: #1a2a27;
  transform: rotateY(0deg);
}
.v-flip__front::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(20, 30, 28, .35));
  pointer-events: none;
}
.v-flip__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.v-flip:hover .v-flip__front img {
  transform: scale(1.06);
}
.v-flip--zoom .v-flip__front img {
  transform: scale(var(--zoom, 1.55));
}
.v-flip--zoom:hover .v-flip__front img {
  transform: scale(calc(var(--zoom, 1.55) * 1.05));
}
.v-flip__bar {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(40, 55, 52, .92);
  border-radius: 16px;
  padding: 16px 12px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.v-flip__bar h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.v-flip__bar p {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.v-flip__plus {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform .4s ease, background .4s ease;
}
.v-flip:hover .v-flip__plus,
.v-flip.is-flipped .v-flip__plus {
  transform: rotate(45deg);
  background: #fff;
}
.v-flip__back {
  background: var(--black) url("../images/shapes/dots.svg") right 12px bottom 12px no-repeat;
  background-size: 90px;
  color: #c5d0cd;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  transform: rotateY(180deg);
}
.v-flip__role {
  display: block;
  font-family: var(--font-script);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.v-flip__back h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 14px;
}
.v-flip__back p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.v-flip__back ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v-flip__back li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.v-flip__back li i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}
.v-flip:focus-visible {
  box-shadow: 0 0 0 3px var(--primary);
  border-radius: var(--radius);
}
@media (max-width: 1199px) {
  .volunteer-team { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v-flip { height: 460px; }
}
@media (max-width: 767px) {
  .volunteer-team-sec .section-title__title { font-size: 24px; line-height: 1.25; }
  .volunteer-team { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .v-flip { height: 480px; }
}
@media (hover: none) {
  .v-flip:hover .v-flip__inner { transform: none; }
  .v-flip.is-flipped .v-flip__inner { transform: rotateY(180deg); }
  .v-flip:hover .v-flip__front img { transform: none; }
  .v-flip--zoom .v-flip__front img,
  .v-flip--zoom:hover .v-flip__front img { transform: scale(var(--zoom, 1.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .v-flip__inner { transition: none; }
}

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: #fff; border: 1px solid var(--bdr); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
}
.price-card h3 { font-size: 20px; margin-bottom: 8px; }
.price-card .amt { font-size: 42px; color: var(--base); font-weight: 900; line-height: 1; margin: 10px 0; }
.price-card .amt span { font-size: 16px; color: var(--gray); font-weight: 600; }
.price-card.featured { background: var(--black); }
.price-card.featured h3, .price-card.featured p { color: #fff; }
.price-card.featured .amt { color: var(--primary); }

.timeline { border-left: 3px solid var(--primary); margin-left: 10px; padding-left: 28px; }
.timeline-item { margin-bottom: 28px; position: relative; }
.timeline-item::before {
  content: ""; position: absolute; left: -36px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--base); border: 3px solid var(--primary);
}
.timeline-item h4 { font-size: 20px; margin-bottom: 4px; }
.timeline-meta { color: var(--base); font-weight: 700; font-size: 14px; margin-bottom: 6px; }

.itinerary-table { width: 100%; border-collapse: collapse; margin: 16px 0 28px; }
.itinerary-table th, .itinerary-table td {
  border: 1px solid var(--bdr); padding: 12px 14px; text-align: left; font-size: 15px;
}
.itinerary-table th { background: var(--extra); color: var(--black); }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  z-index: 10002; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 12px; }
.lightbox button {
  position: absolute; top: 20px; right: 28px;
  background: none; border: 0; color: #fff; font-size: 32px; cursor: pointer;
}

/* Reveal helpers — GSAP animates from this; keep visible if JS is delayed */
.reveal { opacity: 1; }

/* Responsive */
@media (max-width: 1199px) {
  .slide__title { font-size: 64px; line-height: 78px; }
  .section-title__title { font-size: 40px; line-height: 50px; }
  .header-inner { grid-template-columns: 240px 1fr; }
  .header-logo img { height: 86px; }
  .header-top { padding-left: 30px; padding-right: 24px; }
  .header-bottom { padding-left: 30px; }
  .main-menu > li + li { margin-left: 18px; }
  .header-donate { padding-left: 28px; padding-right: 32px; font-size: 13px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .causes-body { grid-template-columns: 220px minmax(0, 1fr); }
  .cause-card { flex-basis: 320px; max-width: 320px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-bar { padding: 32px 28px; }
  .about-two__img-two { left: 0; }
  .about-two__img-box::before { left: -20px; }
  .urgent-inner { padding: 50px 30px; }
  .donation-grid,
  .events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-card__img { height: 400px; }
  .event-details__title { font-size: 30px; line-height: 36px; }
  .donation-grid .cause-card { flex-basis: auto; max-width: 100%; }
  .donation-details__title,
  .donation-details__summary-title { font-size: 30px; line-height: 40px; }
  .donation-details__img img { height: 400px; }
}
@media (max-width: 991px) {
  .header-top { display: none; }
  .header-inner { grid-template-columns: 1fr; }
  .header-bottom {
    padding: 8px 0 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top-left-radius: 0;
  }
  .main-menu { display: none !important; }
  .mobile-toggler { display: block; }
  .main-header .header-donate {
    position: relative;
    margin-left: auto;
    padding: 12px 22px;
    font-size: 12px;
  }
  .main-header .header-donate::before { display: none; }
  .header-logo { padding: 8px 14px; justify-content: flex-start; }
  .header-logo img { height: 64px; }
  .sticky-bar .main-menu { display: none; }
  .slide .container { padding: 120px 0 140px; }
  .slide__title { font-size: 42px; line-height: 52px; }
  .slide__sub { font-size: 22px; }
  .slider-track { min-height: 560px; }
  .about-two__left { margin: 0 0 24px; }
  .split-block { grid-template-columns: 1fr; gap: 28px; }
  .split-block--reverse .split-block__media,
  .split-block--reverse .split-block__copy { order: 0; }
  .split-block__media { min-height: 340px; }
  .causes-top { grid-template-columns: 1fr; gap: 10px; }
  .causes-body { grid-template-columns: 1fr; }
  .causes-carousel { margin-right: 0; }
  .causes-nav { margin-top: 16px; margin-bottom: 20px; }
  .cause-card { flex-basis: 100%; max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .urgent-top { flex-direction: column; }
  .values-grid, .price-cards, .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 90px 0 80px; }
  .donation-details__layout { display: block; }
  .donation-details__sidebar { margin-top: 40px; }
  .donation-details__left,
  .donation-details__sidebar { max-width: 100%; }
  .event-details__layout { display: block; }
  .event-details__right { margin-top: 40px; }
  .event-details__map { margin-bottom: 0; }
  .donation-details__donate { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .donation-details__donate-list { gap: 28px; }
  .donation-grid .cause-card { flex-basis: auto; max-width: 100%; }
}
@media (max-width: 767px) {
  .testi-grid, .values-grid, .price-cards, .gallery-page-grid { grid-template-columns: 1fr; }
  .donation-grid,
  .events-grid { display: block; }
  .events-grid .event-card { margin: 0 0 30px; }
  .event-card__img { height: 360px; }
  .event-card__title { font-size: 24px; line-height: 30px; }
  .event-card__content { left: 22px; right: 22px; bottom: 22px; }
  .event-card__date { top: 16px; right: 16px; padding: 6px 14px; }
  .event-details__img-box { grid-template-columns: 1fr; padding: 28px 0 10px; gap: 16px; }
  .event-details__img-box img { height: 220px; }
  .event-details__title { font-size: 24px; line-height: 30px; }
  .event-details-map__one { height: 280px; }
  .event-details__info { padding: 28px 22px; }
  .donation,
  .events-page { padding: 80px 15px 70px; }
  .donation-details,
  .event-details { padding: 80px 15px 80px; }
  .donation .container,
  .donation-details .container,
  .events-page .container,
  .event-details .container { padding-left: 0; padding-right: 0; width: 100%; }
  .donation-grid .cause-card {
    width: auto !important;
    max-width: 100% !important;
    flex: none !important;
    margin: 0 0 30px;
  }
  .cause-card__title a { white-space: normal; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-bar__item::after { display: none; }
  .section-title__title { font-size: 32px; line-height: 40px; }
  .feature-card__title { font-size: 28px; line-height: 36px; }
  .about-two__help { font-size: 40px; left: 20px; }
  .about-two__img img { height: 360px; }
  .news-list li { flex-direction: column; }
  .news-list img { width: 100%; height: 180px; }
  .slider-nav { right: 16px; bottom: 24px; }
  .slide__title { font-size: 28px; line-height: 36px; }
  .slide__sub { font-size: 20px; }
  .slide .container { padding: 70px 12px 110px; }
  .slide__shape-1, .slide__shape-2 { width: 220px; opacity: .25; }
  .donation-details__img img { height: 280px; }
  .donation-details__title,
  .donation-details__summary-title { font-size: 26px; line-height: 34px; }
  .donation-details__donate-list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .donation-details__organizer { padding: 28px 22px; }
  .page-header h2 { font-size: 28px; line-height: 36px; padding: 0 12px; }
  .cause-card__title { font-size: 22px; line-height: 30px; }
  .cause-card__content { padding: 18px 18px 22px; }
  .cause-progress { padding: 36px 16px 16px; }
  .donation-details__title { font-size: 22px; line-height: 30px; }
  .donation-details__summary-list .text p { overflow-wrap: anywhere; }
  .contact-bar { padding: 24px 18px; }
  .contact-bar__item { padding-right: 0; }
}
