/* =========================================================
   SARTHAK SOCIAL HELP SOCIETY — Main Stylesheet
   Theme strictly derived from the official logo palette
   ========================================================= */

:root {
  /* ---- Logo colour tokens (do not introduce colours outside this set) ---- */
  --blue-deep: #123B70;
  /* dark navy from logo text / hands shadow */
  --blue: #1D63B5;
  /* primary blue - hands & center figure   */
  --blue-light: #4C9BE0;
  /* lighter blue for gradients/hover        */
  --green: #2E9E4F;
  /* leaves / left figure                    */
  --green-deep: #1F7A3B;
  --orange: #F2A63D;
  /* right figure                            */
  --red: #E44B3F;
  /* heart                                   */
  --white: #FFFFFF;
  --off-white: #F6F9FC;
  --ink: #1B2430;
  /* body text, derived neutral from navy    */
  --ink-soft: #55627A;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(18, 59, 112, 0.08);
  --shadow-md: 0 10px 30px rgba(18, 59, 112, 0.12);
  --shadow-lg: 0 20px 50px rgba(18, 59, 112, 0.18);

  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.65;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 .5em;
  line-height: 1.25;
  color: var(--blue-deep);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

/* ---------- utility ---------- */
.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background: var(--off-white);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  background: rgba(46, 158, 79, 0.1);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.section-head p {
  font-size: 1.05rem;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: .3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(228, 75, 63, .35);
}

.btn-primary:hover {
  background: #c93b30;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(228, 75, 63, .45);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-deep);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--blue-deep);
  color: #dfe9f7;
  font-size: .85rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dfe9f7;
  flex-wrap: wrap;
  max-width: 100%;
}

.topbar-item i {
  color: var(--orange);
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  margin-left: 8px;
  transition: .3s;
}

.topbar-social a:hover {
  background: var(--red);
}

/* ---------- navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(18, 59, 112, .08);
  transition: .3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .name {
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.15rem;
  letter-spacing: .2px;
}

.brand-text .tag {
  font-weight: 500;
  color: var(--green-deep);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:not(.btn) {
  padding: 10px 16px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 50px;
  position: relative;
  transition: .25s;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(29, 99, 181, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue-deep);
  border-radius: 3px;
  transition: .3s;
}

@media(max-width:991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    gap: 0;
    box-shadow: 0 12px 24px rgba(18, 59, 112, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .3s ease;
    border-top: 1px solid #eef2f7;
  }

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

  .nav-links a:not(.btn) {
    padding: 14px 10px;
    border-bottom: 1px solid #eef2f7;
    border-radius: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn-donate-nav {
    display: none;
  }
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 100px 0 100px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: var(--orange);
  top: -160px;
  right: -120px;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: var(--green);
  bottom: -150px;
  left: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-badge i {
  color: var(--orange);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}

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

.hero p.lead {
  color: #e4edf9;
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stats .stat b {
  display: block;
  font-size: 1.8rem;
  color: var(--orange);
}

.hero-stats .stat span {
  font-size: .85rem;
  color: #cfe0f5;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-modern-composition {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-modern-composition .main-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--orange);
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 50%;
  animation: pulseGlow 4s infinite alternate;
}

.hero-modern-composition .hero-image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: floatMain 6s ease-in-out infinite;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.floating-card i {
  background: var(--white);
  color: var(--blue);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.floating-card.card-1 {
  top: 10%;
  left: -5%;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card.card-2 {
  bottom: 15%;
  left: 0%;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.floating-card.card-3 {
  top: 40%;
  right: -10%;
  animation: floatCard 7s ease-in-out infinite 2s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes floatMain {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

/* wave divider */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 70px;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--blue) 0%, var(--green) 100%);
  /* padding: 26px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media .frame img {
  border-radius: var(--radius-md);
}

.about-media {
  margin-bottom: 34px;
}

.about-media .exp-badge {
  position: absolute;
  bottom: -70px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  text-align: center;
  max-width: calc(100% - 40px);
}

.about-media .exp-badge b {
  display: block;
  font-size: 1.7rem;
  color: var(--red);
}

.about-media .exp-badge span {
  font-size: .75rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 26px 0;
}

.about-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 99, 181, .1);
  color: var(--blue);
}

.about-point h4 {
  font-size: .98rem;
  margin-bottom: 2px;
}

.about-point p {
  font-size: .85rem;
  margin: 0;
}

/* ---------- mission vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue);
  transition: .3s;
}

.mv-card:nth-child(2) {
  border-top-color: var(--green);
}

.mv-card:nth-child(3) {
  border-top-color: var(--orange);
}

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

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.mv-card:nth-child(2) .mv-icon {
  background: linear-gradient(135deg, var(--green), #57c47c);
}

.mv-card:nth-child(3) .mv-icon {
  background: linear-gradient(135deg, var(--orange), #f8c169);
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: .35s;
  position: relative;
  overflow: hidden;
}

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

.service-card .num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(18, 59, 112, .06);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 75, 63, .1);
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card:nth-child(4n+2) .service-icon {
  background: rgba(29, 99, 181, .1);
  color: var(--blue);
}

.service-card:nth-child(4n+3) .service-icon {
  background: rgba(46, 158, 79, .1);
  color: var(--green);
}

.service-card:nth-child(4n+4) .service-icon {
  background: rgba(242, 166, 61, .15);
  color: var(--orange);
}

.service-card h3 {
  font-size: 1.08rem;
}

.service-card p {
  font-size: .88rem;
}

.service-card a.more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
}

/* ---------- working areas ---------- */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 9px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  background: var(--off-white);
  color: var(--blue-deep);
  border: 1px solid #e2ebf5;
}

.districts-box {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid #e5edf6;
}

.districts-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.districts-list {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ---------- impact / counters ---------- */
.impact {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.impact .section-head h2 {
  color: var(--white);
}

.impact .section-head p {
  color: #dbe7f7;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}

.impact-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: 34px 20px;
}

.impact-card i {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 14px;
  display: inline-block;
}

.impact-card .count {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}

.impact-card span.label {
  font-size: .9rem;
  color: #d9e6f7;
}

/* ---------- gallery ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-filter button {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #e2ebf5;
  background: var(--white);
  font-weight: 500;
  font-size: .85rem;
  transition: .25s;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  background: #f7f7f7;
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.tall {
  grid-row: span 1;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: .5s;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 59, 112, .85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: .3s;
}

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

.gallery-item .overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
}

.gallery-item .overlay i {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 35, .92);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: .25s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--red);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-nav.prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 26px;
  color: #fff;
  font-size: .9rem;
  opacity: .8;
}

/* ---------- PDF Modal ---------- */
.pdf-modal {
  position: fixed; inset: 0; background: rgba(10, 20, 35, 0.92);
  z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.pdf-modal.open { display: flex; }
.pdf-modal-content {
  background: #fff; width: 100%; max-width: 900px; height: 90vh;
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pdf-modal-close {
  position: absolute; top: 10px; right: 20px;
  background: var(--red); color: var(--white);
  width: 40px; height: 40px; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: 0.25s; z-index: 3001; cursor: pointer;
}
.pdf-modal-close:hover { background: #c93b30; transform: scale(1.05); }
.pdf-modal iframe { flex-grow: 1; width: 100%; height: 100%; border: none; }

/* ---------- certificates ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .3s;
  border: 1px solid #eef2f7;
}

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

.cert-card .cert-img {
  height: 220px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-card .cert-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.cert-card .cert-body {
  padding: 20px 22px;
}

.cert-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cert-card p {
  font-size: .82rem;
  margin: 0;
}

.cert-card .tag {
  display: inline-block;
  background: rgba(46, 158, 79, .1);
  color: var(--green-deep);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ---------- donation CTA ---------- */
.donate-cta {
  background: linear-gradient(120deg, var(--red), #f0715f);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.donate-cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  right: -100px;
  top: -100px;
}

.donate-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.donate-cta p {
  color: #ffe6e2;
  margin: 0;
  max-width: 480px;
}

.donate-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.donate-method {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.donate-method i {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.donate-method h4 {
  font-size: 1rem;
}

.donate-method p {
  font-size: .85rem;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
}

.contact-info {
  background: var(--blue-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info h3 {
  color: var(--white);
}

.contact-info p {
  color: #cfe0f5;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.contact-item h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  color: #cfe0f5;
  font-size: .88rem;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.contact-social a:hover {
  background: var(--red);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e2ebf5;
  font-family: inherit;
  font-size: .92rem;
  transition: .25s;
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.map-box iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- footer ---------- */
.footer {
  background: var(--blue-deep);
  color: #cfe0f5;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  
}

.footer-brand img {
  height: 52px;
  border-radius: 50%;
}

.footer-brand .name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-brand .tag {
  font-size: .7rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b9cbe3;
  font-size: .9rem;
  transition: .25s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--red);
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px 0 0 10px;
  border: none;
  font-family: inherit;
}

.footer-newsletter {
  display: flex;
  margin-top: 6px;
}

.footer-newsletter button {
  padding: 0 18px;
  border-radius: 0 10px 10px 0;
  border: none;
  background: var(--red);
  color: #fff;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: .85rem;
  color: #9db4d3;
}

.footer-bottom a {
  color: var(--orange);
}

/* ---------- floating buttons ---------- */
.floating-btns {
  position: fixed;
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--white);
  font-size: 1.4rem;
  border: none;
  transition: .3s;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-donate {
  background: var(--red);
  animation: pulse 2.2s infinite;
}

.fab-top {
  background: var(--blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

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

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(228, 75, 63, .5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(228, 75, 63, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(228, 75, 63, 0);
  }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-hero .breadcrumb {
  color: #cfe0f5;
  font-size: .9rem;
}

.page-hero .breadcrumb a {
  color: var(--orange);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--orange);
  opacity: .15;
  border-radius: 50%;
  top: -100px;
  left: -80px;
}

/* ---------- team / office bearers ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px 24px 34px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eef2f7;
  z-index: 1;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  z-index: -1;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 6px;
  box-shadow: 0 12px 30px rgba(18, 59, 112, 0.15);
  transition: all 0.4s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(18, 59, 112, 0.25);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #eef2f7;
}

.team-card h4 {
  margin-bottom: 6px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.team-card span {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* ---------- timeline (about page) ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2ebf5;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--red);
}

.timeline-item h4 {
  margin-bottom: 4px;
}

.timeline-item span.date {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- process / how to help (donate page) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.1rem;
}

.step-card:nth-child(2) .step-num {
  background: var(--green-deep);
}

.step-card:nth-child(3) .step-num {
  background: var(--orange);
}

.step-card:nth-child(4) .step-num {
  background: var(--red);
}

/* ---------- FAQ (contact / donate) ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid #e5edf6;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--blue-deep);
}

.faq-q i {
  transition: .3s;
  color: var(--red);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 24px 20px;
}

.faq-a p {
  margin: 0;
  font-size: .9rem;
}

/* ---------- bank details table (donate) ---------- */
.bank-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bank-table tr {
  border-bottom: 1px solid #eef2f7;
}

.bank-table tr:last-child {
  border-bottom: none;
}

.bank-table td {
  padding: 16px 22px;
  font-size: .92rem;
}

.bank-table td:first-child {
  font-weight: 600;
  color: var(--blue-deep);
  width: 40%;
  background: var(--off-white);
}

/* ---------- 404 / empty ---------- */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state i {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 20px;
}

/* ---------- AOS fallback ---------- */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .about-grid,
  .areas-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    margin-bottom: 30px;
  }

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

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

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

@media(max-width:768px) {
  .section {
    padding: 60px 0;
  }

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

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

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

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

  .donate-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }

  .donate-methods {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .topbar .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 6px 0;
  }

  .topbar-item {
    justify-content: center;
    text-align: center;
    font-size: .8rem;
  }
}

@media(max-width:560px) {
  .topbar-item span[style] {
    margin-left: 6px !important;
  }

  .topbar-social {
    margin-top: 4px;
  }

  .services-grid,
  .team-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .brand-text .name {
    font-size: .95rem;
  }

  .brand img {
    height: 44px;
    width: 44px;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .fab {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px;
  }

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

  .impact-card {
    padding: 24px 14px;
  }

  .impact-card .count {
    font-size: 1.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

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

  .mv-grid,
  .team-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .hero-stats .stat b {
    font-size: 1.5rem;
  }

  .donate-cta {
    padding: 32px 18px;
  }

  .contact-form,
  .contact-info {
    padding: 26px 20px;
  }

  .about-media .frame {
    padding: 16px;
  }

  .about-media .exp-badge {
    right: 10px;
    padding: 14px 16px;
  }

  .about-media .exp-badge b {
    font-size: 1.3rem;
  }

  .section {
    padding: 50px 0;
  }

  .hero-visual .ring {
    padding: 16px;
  }

  .footer-grid {
    gap: 30px;
  }
}