:root {
  --brand-primary: #082b57;
  --brand-deep: #041c3c;
  --orange: #00ad63;
  --gold: #91cf3e;
  --soft: #f2faff;
  --text: #102a43;
  --border: rgba(17, 175, 227, 0.24);
  --brand-navy: #082b57;
  --brand-navy-deep: #041c3c;
  --brand-cyan: #11afe3;
  --brand-green: #00ad63;
  --brand-lime: #91cf3e;
  --brand-sky: #eaf8fd;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, rgba(15, 143, 104, 0.08), transparent 24%),
    radial-gradient(circle at 92% 34%, rgba(145, 207, 62, 0.08), transparent 25%),
    #f8fcf9;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: var(--scroll-progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, #91cf3e, #0f8f68, #06443d);
  box-shadow: 0 0 16px rgba(15, 143, 104, 0.45);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 28px 9px 22px;
  background:
    radial-gradient(circle at 15% 0%, rgba(17, 175, 227, 0.09), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 255, 0.99));
  border-bottom: 1px solid rgba(17, 175, 227, 0.2);
  box-shadow: 0 8px 28px rgba(8, 43, 87, 0.09);
  z-index: 10;
  transition: box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #11afe3 34%, #00ad63 66%, transparent 95%);
  opacity: 0.6;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(10, 75, 64, 0.12);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  min-width: 174px;
}

.logo img {
  width: auto;
  height: 76px;
  border: 1px solid rgba(17, 175, 227, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 43, 87, 0.16);
}

.logo-symbol {
  width: 82px;
  height: 82px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-symbol::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--gold);
  box-shadow: inset 0 0 0 4px rgba(15, 143, 104, 0.08);
}

.sun-ray {
  position: absolute;
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, #91cf3e, #0b8fbe);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform-origin: 50% 41px;
  left: 31px;
  top: 1px;
}
.r1 { transform: rotate(0deg); }
.r2 { transform: rotate(45deg); }
.r3 { transform: rotate(90deg); }
.r4 { transform: rotate(135deg); }
.r5 { transform: rotate(180deg); }
.r6 { transform: rotate(225deg); }
.r7 { transform: rotate(270deg); }
.r8 { transform: rotate(315deg); }

.swastik {
  position: relative;
  z-index: 1;
  color: var(--brand-primary);
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.logo-text strong {
  display: block;
  color: var(--brand-primary);
  font-size: 35px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}
.logo-text span {
  display: block;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}
.logo-text small {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 1 auto;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(17, 175, 227, 0.18);
  border-radius: 16px;
  background: rgba(234, 248, 253, 0.7);
  box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(8, 43, 87, 0.07);
}
.main-nav a,
.nav-trigger {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 17px;
  color: #163656;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  position: relative;
  border-radius: 11px;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.nav-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.main-nav > a::after,
.nav-trigger::after {
  display: none;
}
.main-nav > a:hover,
.nav-item:hover .nav-trigger,
.nav-item.open .nav-trigger {
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 14px rgba(8, 43, 87, 0.08);
  transform: translateY(-1px);
}
.main-nav > a.active,
.nav-trigger.active {
  color: #fff;
  background: linear-gradient(135deg, #082b57 0%, #006c65 100%);
  box-shadow: 0 7px 16px rgba(8, 43, 87, 0.2);
}
.main-nav svg { width: 13px; height: 13px; stroke-width: 3; }

.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  min-width: 225px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d5edf6;
  border-radius: 15px;
  box-shadow: 0 22px 50px rgba(8, 43, 87, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #d5edf6;
  border-top: 1px solid #d5edf6;
  transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  height: auto;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 9px;
  color: #163656;
  font-size: 12px;
  line-height: 1.25;
  text-transform: none;
  white-space: normal;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  color: var(--brand-primary);
  background: #eaf8fd;
}

.nav-donate {
  min-width: 164px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(17, 175, 227, 0.34);
  background: linear-gradient(135deg, #082b57 0%, #006c65 52%, #00ad63 100%);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 108, 101, 0.24);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nav-donate::after {
  content: "\2192";
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.22s ease;
}
.nav-donate:hover::after { transform: translateX(4px); }
.nav-donate:hover,
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 173, 99, 0.26);
}

.nav-donate,
.hero-btn,
.mission-cta a,
.donation-option a,
.csr-content > a,
.all-activities,
.footer-updated button {
  position: relative;
  overflow: hidden;
}

.nav-donate::before,
.hero-btn::before,
.mission-cta a::before,
.donation-option a::before,
.csr-content > a::before,
.all-activities::before,
.footer-updated button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
}

.nav-donate:hover::before,
.hero-btn:hover::before,
.mission-cta a:hover::before,
.donation-option a:hover::before,
.csr-content > a:hover::before,
.all-activities:hover::before,
.footer-updated button:hover::before {
  left: 120%;
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #f8fcf9;
}

.slides {
  position: relative;
  min-height: 507px;
}

.hero-section {
  min-height: 485px;
  display: grid;
  grid-template-columns: 44.4% 55.6%;
  overflow: hidden;
  background:
    radial-gradient(circle at 44% 52%, rgba(17, 175, 227, 0.14), transparent 28%),
    linear-gradient(90deg, #fff 0%, #f8fcf9 49%, #dff5fb 100%);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(22px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide.active .hero-content > *,
.slide.active .hero-visual {
  animation: slideRise 0.65s ease both;
}

.slide.active .hero-description { animation-delay: 0.08s; }
.slide.active .hero-actions { animation-delay: 0.14s; }
.slide.active .hero-visual { animation-delay: 0.05s; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 46px 20px 32px 60px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 72%, rgba(255, 255, 255, 0) 100%);
}
.hero-content::after {
  content: "";
  position: absolute;
  inset: 0 -170px 0 auto;
  width: 235px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 0 10px;
  color: #35516f;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero-kicker span {
  width: 34px;
  height: 1px;
  background: #d5edf6;
}

h1 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(50px, 4.86vw, 70px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}
h1 em {
  color: var(--orange);
  font-style: normal;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 250px;
  margin: 16px 0 18px 156px;
  color: var(--orange);
}
.divider span {
  width: 98px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #78c95a);
}
.divider span:last-child {
  background: linear-gradient(90deg, #78c95a, transparent);
}
.divider b { font-size: 15px; line-height: 1; }

.hero-description {
  max-width: 555px;
  margin: 0;
  color: #274b6d;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.hero-btn svg { width: 18px; height: 18px; stroke-width: 3; }
.hero-btn.donate {
  color: #fff;
  background: linear-gradient(180deg, #10a37f, #08765e);
  box-shadow: 0 10px 22px rgba(0, 173, 99, 0.25);
}
.hero-btn.outline {
  color: #082b57;
  background: rgba(255, 255, 255, 0.74);
  border: 2px solid rgba(17, 175, 227, 0.26);
}
.hero-btn.outline:hover { background: #fff; }

.hero-visual {
  position: relative;
  min-height: 485px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.62) 14%, rgba(255,255,255,0.15) 31%, rgba(255,255,255,0) 52%),
    linear-gradient(180deg, rgba(17,175,227,0.08), rgba(8,43,87,0.05));
  pointer-events: none;
}
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}
.visual-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 15%, rgba(185, 236, 104, 0.46), transparent 10%),
    linear-gradient(0deg, rgba(8,43,87,0.05), transparent 42%);
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(10, 75, 64, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
  position: absolute;
  right: 120px;
  bottom: 30px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 53, 47, 0.22);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.slider-dots button.active {
  width: 31px;
  background: var(--orange);
}

.impact-strip {
  position: relative;
  z-index: 7;
  padding: 0 clamp(14px, 2vw, 22px) 22px;
  margin-top: -22px;
}

.impact-card {
  width: min(1328px, 100%);
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(8, 43, 87, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(8, 43, 87, 0.14);
  overflow: hidden;
}

.impact-item {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 22px;
  position: relative;
}

.impact-item + .impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: #d5edf6;
}

.impact-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  stroke-width: 3;
}

.impact-symbol {
  width: 58px;
  min-width: 58px;
  display: inline-grid;
  place-items: center;
  font-size: 48px;
  line-height: 1;
  filter: saturate(1.15);
}

.impact-cow {
  width: 58px;
  height: 48px;
}

.impact-icon.cyan,
.impact-symbol.cyan { color: #11afe3; }
.impact-icon.saffron,
.impact-symbol.saffron { color: #0b8fbe; }
.impact-icon.green,
.impact-symbol.green { color: #3f6b2d; }
.impact-icon.blue,
.impact-symbol.blue { color: #285b99; }

.impact-item strong {
  display: block;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17.5px, 1.5vw, 24px);
  line-height: 1;
  font-weight: 900;
}

.impact-item span:not(.impact-symbol) {
  display: block;
  margin-top: 4px;
  color: #274b6d;
  font-size: 10px;
  line-height: 1.18;
  font-weight: 800;
}

.pillars-section {
  padding: 18px clamp(14px, 2vw, 24px) 46px;
  background:
    radial-gradient(circle at 50% 0, rgba(17, 175, 227, 0.1), transparent 32%),
    #f8fcf9;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 18px;
  color: var(--brand-deep);
  text-align: center;
}

.section-heading span {
  width: min(130px, 18vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #11afe3);
  position: relative;
}

.section-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #11afe3;
  transform: translateY(-50%);
}

.section-heading span:last-child {
  background: linear-gradient(90deg, #11afe3, transparent);
}

.section-heading span:last-child::after {
  right: auto;
  left: -4px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pillars-grid {
  width: min(1328px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  position: relative;
  min-height: 264px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 15px 36px rgba(8, 43, 87, 0.18);
  isolation: isolate;
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.01);
  transition: transform 0.55s ease;
}

.pillar-card:hover img {
  transform: scale(1.09);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.pillar-card.dharma .pillar-overlay {
  background: linear-gradient(90deg, rgba(8, 85, 125, 0.92), rgba(0, 123, 92, 0.6), rgba(8, 43, 87, 0.28));
}
.pillar-card.healthcare .pillar-overlay {
  background: linear-gradient(90deg, rgba(44, 95, 35, 0.92), rgba(45, 97, 38, 0.64), rgba(24, 59, 28, 0.32));
}
.pillar-card.gau .pillar-overlay {
  background: linear-gradient(90deg, rgba(0, 123, 92, 0.9), rgba(0, 173, 99, 0.56), rgba(8, 43, 87, 0.3));
}
.pillar-card.care .pillar-overlay {
  background: linear-gradient(90deg, rgba(54, 38, 91, 0.92), rgba(79, 55, 120, 0.62), rgba(28, 17, 54, 0.32));
}

.pillar-content {
  height: 100%;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 22px 18px;
}

.pillar-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: currentColor;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.pillar-icon span {
  color: #0b8fbe;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.pillar-icon svg,
.pillar-icon i {
  width: 39px;
  height: 39px;
  color: currentColor;
  stroke-width: 3;
}

.healthcare .pillar-icon { color: #438239; }
.gau .pillar-icon { color: #008a53; }
.care .pillar-icon { color: #082b57; }

.pillar-card h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.pillar-card ul {
  margin: 0;
  padding: 0 0 0 13px;
  list-style: disc;
}

.pillar-card li {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

.pillar-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: #c8f083;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar-card a svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

.pillar-card:hover a svg {
  transform: translateX(4px);
}

.sankalp-section {
  padding: 0 clamp(14px, 2vw, 24px) 48px;
  background: #f8fcf9;
}

.sankalp-wrap,
.donation-impact {
  width: min(1328px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 296px;
  gap: 0;
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  overflow: hidden;
  background: #f2fbf6;
  box-shadow: 0 12px 30px rgba(10, 75, 64, 0.08);
}

.sankalp-banner {
  position: relative;
  min-height: 200px;
  display: grid;
  grid-template-columns: 1fr 160px minmax(260px, 430px);
  align-items: center;
  gap: 20px;
  padding: 26px 28px 24px 32px;
  color: #fff;
  background:
    linear-gradient(90deg, #041c3c 0%, #082b57 45%, rgba(8, 43, 87, 0.88) 64%, rgba(8, 43, 87, 0.5) 100%),
    #041c3c;
  overflow: hidden;
}

.sankalp-copy {
  position: relative;
  z-index: 2;
}

.sankalp-copy h2 {
  margin: 0 0 4px;
  color: #91cf3e;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sankalp-copy p {
  margin: 0 0 13px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

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

.sankalp-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
}

.sankalp-copy li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #041c3c;
  background: #91cf3e;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.fund-ring {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  justify-self: center;
  position: relative;
  z-index: 2;
  color: #fff;
  border-radius: 50%;
  background: conic-gradient(#fff 0deg 94deg, rgba(255,255,255,0.18) 94deg 122deg, #91cf3e 122deg 259deg, rgba(255,255,255,0.2) 259deg 360deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.fund-ring::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: #041c3c;
}

.fund-ring span,
.fund-ring small {
  position: relative;
  z-index: 1;
}

.fund-ring span {
  align-self: end;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.fund-ring small {
  align-self: start;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sankalp-banner img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 200px;
  margin: -26px -28px -24px 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  mask-image: linear-gradient(90deg, transparent, #000 22%);
}

.mission-cta {
  min-height: 200px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 28px;
  text-align: center;
  background: #f1faf5;
}

.mission-cta p {
  max-width: 235px;
  margin: 0;
  color: #274b6d;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 800;
}

.mission-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #10a37f, #08765e);
  box-shadow: 0 12px 25px rgba(0, 173, 99, 0.22);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-impact {
  grid-template-columns: minmax(0, 1fr) 512px;
  margin-top: 18px;
}

.donation-panel {
  padding: 0 18px 10px;
  background: #fff;
}

.donation-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 39px;
  color: var(--brand-primary);
  text-align: center;
}

.donation-heading span {
  width: min(150px, 22vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #11afe3);
}

.donation-heading span:last-child {
  background: linear-gradient(90deg, #11afe3, transparent);
}

.donation-heading h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 6px 0 4px;
}

.donation-option {
  min-height: 166px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  background: #fff;
  border: 1px solid #bfe8f5;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(10, 75, 64, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donation-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(10, 75, 64, 0.12);
}

.donation-option strong {
  display: block;
  color: var(--brand-deep);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.donation-option i,
.donation-option svg {
  width: 36px;
  height: 36px;
  color: #00ad63;
  stroke-width: 2.8;
}

.donation-option p {
  min-height: 32px;
  margin: 0;
  color: #274b6d;
  font-size: 11px;
  line-height: 1.22;
  font-weight: 800;
}

.donation-option a {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #008a53;
  background: #f5fbf8;
  border: 1px solid #9fdced;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
}

.tax-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 7px 0 0;
  color: #35516f;
  font-size: 11px;
  font-weight: 800;
}

.tax-note svg {
  width: 17px;
  height: 17px;
  color: #3b7a38;
  stroke-width: 2.8;
}

.thank-panel {
  position: relative;
  min-height: 216px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  padding: 20px 28px 20px 8px;
  overflow: hidden;
  background: #f1faf5;
}

.thank-panel img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: sepia(0.35) saturate(0.9);
  mask-image: linear-gradient(90deg, transparent, #000 30%, transparent);
}

.thank-panel div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.thank-panel p {
  margin: 0 0 14px;
  color: #274b6d;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 800;
}

.thank-panel strong {
  display: block;
  color: #11afe3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 35px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
}

.thank-panel span {
  display: block;
  margin-top: 5px;
  color: #274b6d;
  font-size: 18px;
  font-weight: 800;
}

.stories-trust-section {
  padding: 0 clamp(14px, 2vw, 24px) 54px;
  background: #f8fcf9;
}

.stories-wrap,
.trust-csr-wrap {
  width: min(1328px, 100%);
  margin: 0 auto;
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(10, 75, 64, 0.06);
  overflow: hidden;
}

.stories-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 34px;
  padding-top: 2px;
}

.stories-heading span {
  width: min(210px, 25vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #11afe3);
}

.stories-heading span:last-child {
  background: linear-gradient(90deg, #11afe3, transparent);
}

.stories-heading h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 10px 20px 16px;
}

.story-item {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.story-image {
  position: relative;
  display: block;
  height: 128px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(8, 43, 87, 0.1);
}

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

.story-image:hover img {
  transform: scale(1.07);
}

.story-image span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 28, 60, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.66);
  transform: translate(-50%, -50%);
}

.story-image svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke-width: 0;
  margin-left: 3px;
}

.story-copy h3 {
  margin: 0 0 8px;
  color: #163656;
  font-size: 15px;
  line-height: 1.22;
  font-weight: 900;
}

.story-copy p {
  margin: 0 0 10px;
  color: #35516f;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 700;
}

.story-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b5d4f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-copy a svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.trust-csr-wrap {
  display: grid;
  grid-template-columns: 47% 53%;
  gap: 16px;
  margin-top: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.trust-panel,
.csr-panel {
  min-height: 164px;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10, 75, 64, 0.06);
}

.trust-panel {
  padding: 18px 20px 8px;
  background: #fff;
  text-align: center;
}

.trust-panel h2 {
  margin: 0 0 18px;
  color: var(--brand-primary);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.trust-grid article {
  min-height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 0 8px;
  border-right: 1px solid #bfe8f5;
}

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

.trust-grid svg {
  width: 34px;
  height: 34px;
  color: #274b6d;
  stroke-width: 1.9;
}

.trust-grid span {
  color: #274b6d;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 800;
}

.trust-panel p {
  margin: 8px 0 0;
  color: #35516f;
  font-size: 11px;
  font-weight: 700;
}

.csr-panel {
  position: relative;
  color: #fff;
  background: #061d34;
  isolation: isolate;
}

.csr-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.csr-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 24, 47, 0.98) 0%, rgba(5, 24, 47, 0.92) 48%, rgba(5, 24, 47, 0.36) 100%);
}

.csr-content {
  min-height: 164px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title button"
    "text button"
    "icons button";
  align-items: center;
  gap: 7px 26px;
  padding: 20px 26px;
}

.csr-content h2 {
  grid-area: title;
  margin: 0;
  color: #91cf3e;
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.csr-content p {
  grid-area: text;
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.csr-icons {
  grid-area: icons;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 28px;
  align-items: end;
}

.csr-icons article {
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
}

.csr-icons svg {
  width: 29px;
  height: 29px;
  color: rgba(255, 255, 255, 0.92);
  stroke-width: 2;
}

.csr-icons span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 800;
}

.csr-content > a {
  grid-area: button;
  min-width: 154px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(180deg, #00ad63, #0b8fbe);
  border-radius: 5px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.activities-section {
  padding: 0 clamp(14px, 2vw, 24px) 34px;
  background: #f8fcf9;
}

.activities-heading {
  width: min(1328px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 34px;
  color: var(--brand-primary);
}

.activities-heading span {
  width: min(210px, 24vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #11afe3);
}

.activities-heading span:last-child {
  background: linear-gradient(90deg, #11afe3, transparent);
}

.activities-heading h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.activities-row {
  width: min(1328px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 158px;
  gap: 12px;
  align-items: stretch;
  padding: 5px 0 0;
}

.activity-card {
  min-width: 0;
  text-align: center;
}

.activity-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(8, 43, 87, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 13px 24px rgba(8, 43, 87, 0.16);
}

.activity-card h3 {
  margin: 7px 0 0;
  color: #274b6d;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 900;
}

.all-activities {
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #008a53;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #bfe8f5;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(8, 43, 87, 0.06);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.all-activities:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(8, 43, 87, 0.13);
}

.all-activities svg {
  width: 15px;
  height: 15px;
  stroke-width: 3;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(145, 207, 62, 0.14), transparent 30%),
    linear-gradient(135deg, #052923 0%, #063d36 48%, #05231f 100%);
}

.footer-main {
  width: min(1360px, 100%);
  margin: 0 auto;
  min-height: 160px;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.82fr 1fr 1fr 92px;
  gap: 24px;
  align-items: start;
  padding: 34px clamp(18px, 3vw, 42px) 24px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-updated {
  min-height: 86px;
  position: relative;
}

.footer-brand::after,
.footer-links::after,
.footer-contact::after,
.footer-updated::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 2px;
  bottom: 6px;
  width: 1px;
  background: rgba(145, 207, 62, 0.22);
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: auto;
  height: 96px;
  border-radius: 7px;
}

.footer-symbol {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #052923;
  background:
    linear-gradient(135deg, #eaf8fd, #91cf3e);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-logo strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-logo small {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #91cf3e;
  font-size: 12px;
  font-weight: 800;
}

.footer-brand > span {
  display: block;
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 76px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  color: #052923;
  background: #91cf3e;
  border-color: #91cf3e;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.footer-socials .social-brand {
  display: block;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.footer-socials .social-facebook {
  margin-top: 1px;
  font-size: 21px;
}

.footer-socials .social-linkedin {
  padding-top: 1px;
  font-size: 14px;
  letter-spacing: -0.7px;
}

.footer-socials .social-instagram {
  width: 17px;
  height: 17px;
  position: relative;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.footer-socials .social-instagram::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.footer-socials .social-instagram::after {
  content: "";
  width: 2px;
  height: 2px;
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 50%;
  background: currentColor;
}

.footer-socials .social-youtube {
  width: 19px;
  height: 14px;
  position: relative;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.footer-socials .social-youtube::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid currentColor;
}

.footer-main h2 {
  margin: 0 0 12px;
  color: #91cf3e;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #91cf3e;
  transform: translateX(3px);
}

.footer-contact p,
.footer-updated p,
.footer-qr p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  color: #91cf3e;
  stroke-width: 2.7;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-updated form {
  display: flex;
  width: 100%;
  max-width: 245px;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(145, 207, 62, 0.25);
  border-radius: 7px;
  background: #fff;
}

.footer-updated input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: #10231f;
  font-size: 12px;
  font-weight: 700;
  outline: 0;
}

.footer-updated button {
  border: 0;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-qr {
  display: grid;
  place-items: center;
  gap: 5px;
  text-align: center;
}

.qr-box {
  width: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 6px;
  background: #fff;
  border: 3px solid rgba(145, 207, 62, 0.8);
  border-radius: 8px;
}

.qr-box span {
  background:
    linear-gradient(90deg, #111 35%, transparent 35% 65%, #111 65%),
    linear-gradient(#111 35%, transparent 35% 65%, #111 65%);
}

.qr-box span:nth-child(2n) {
  background:
    linear-gradient(90deg, transparent 25%, #111 25% 45%, transparent 45% 70%, #111 70%),
    linear-gradient(#111 20%, transparent 20% 48%, #111 48% 68%, transparent 68%);
}

.footer-qr p {
  margin: 0;
  font-size: 10px;
}

.footer-bottom {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 95px;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(16px, 5vw, 70px);
  background: rgba(1, 23, 20, 0.72);
  border-top: 1px solid rgba(145, 207, 62, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
}

.footer-cin {
  display: inline-block;
  margin-top: 3px;
  color: #eaf8fd;
  letter-spacing: 0.35px;
}

.footer-bottom strong {
  color: #eaf8fd;
  font-size: 12px;
  font-weight: 800;
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.footer-credit a {
  color: #b9ec68;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover { color: #fff; }

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(145, 207, 62, 0.48);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: #b9ec68; }

.footer-lotus {
  justify-self: end;
  width: auto;
  height: 34px;
  border-radius: 4px;
}

.dropdown-menu a.active-link {
  color: var(--brand-primary);
  background: #eaf8fd;
}

.education-page {
  width: 100%;
  margin: 0;
  background: #f4fbff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.edu-hero {
  width: calc(100% - 48px);
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid #bfe8f5;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 20px 50px rgba(10, 75, 64, 0.1);
  overflow: hidden;
}

.edu-title-band {
  padding: 18px 18px 14px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #3e1a54, #0b8fbe, #3e1a54);
}

.edu-title-band h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.edu-title-band p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.5vw, 20px);
  font-style: italic;
  font-weight: 700;
}

.edu-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.edu-photo-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.edu-program-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #bfe8f5;
  background: #effbe5;
}

.edu-program-row article {
  min-height: 118px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid #bfe8f5;
}

.edu-program-row article:last-child {
  border-right: 0;
}

.edu-program-row svg {
  width: 36px;
  height: 36px;
  color: #082b57;
  stroke-width: 2.4;
}

.edu-program-row span {
  color: #274b6d;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 900;
}

.edu-donation {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 34px 32px 24px;
  background: #f8fcf9;
  border-left: 1px solid #bfe8f5;
  border-right: 1px solid #bfe8f5;
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.06);
}

.edu-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brand-primary);
}

.edu-section-heading span {
  width: min(130px, 22vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, #11afe3);
}

.edu-section-heading span:last-child {
  background: linear-gradient(90deg, #11afe3, transparent);
}

.edu-section-heading h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.edu-donation-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.edu-donation-grid article {
  display: grid;
  place-items: center;
  align-content: start;
  gap: 8px;
  min-height: 164px;
  padding: 0 9px;
  text-align: center;
  position: relative;
}

.edu-donation-grid article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 20px;
  width: 1px;
  background: #c7e9f5;
}

.edu-donation-grid svg {
  width: 70px;
  height: 70px;
  padding: 15px;
  color: #5d7a34;
  background: #eaf8fd;
  border: 1px solid #bfe8f5;
  border-radius: 50%;
  stroke-width: 2.2;
}

.edu-donation-grid strong {
  display: block;
  color: var(--brand-deep);
  font-size: 22px;
  font-weight: 900;
}

.edu-donation-grid p {
  margin: 0;
  color: #274b6d;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 800;
}

.edu-belief {
  margin: 10px auto 0;
  padding: 9px 12px;
  color: #082b57;
  background: #eefaff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.edu-story {
  width: calc(100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 42%;
  align-items: stretch;
  min-height: 220px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 53, 47, 0.98), rgba(6, 53, 47, 0.92), rgba(6, 53, 47, 0.58)),
    #0b5d4f;
}

.edu-story-copy {
  padding: 46px 48px;
}

.edu-story-copy h2 {
  margin: 0 0 18px;
  color: #91cf3e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.edu-story blockquote {
  margin: 0;
  padding: 18px 22px;
  border: 1px solid rgba(145, 207, 62, 0.72);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  position: relative;
}

.edu-story blockquote::before,
.edu-story blockquote::after {
  position: absolute;
  color: #91cf3e;
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1;
}

.edu-story blockquote::before {
  content: "“";
  left: -10px;
  top: -14px;
}

.edu-story blockquote::after {
  content: "”";
  right: -10px;
  bottom: -28px;
}

.edu-story-copy p {
  margin: 12px 0 0;
  color: #dff6b7;
  font-size: 12px;
  font-weight: 800;
}

.edu-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.edu-thanks {
  width: calc(100% - 48px);
  margin: 0 auto 48px;
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: 140px 1fr 330px;
  gap: 18px;
  align-items: center;
  padding: 34px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 48%, rgba(145, 207, 62, 0.25), transparent 18%),
    linear-gradient(90deg, #06352f, #0b5d4f 54%, #05231f);
  overflow: hidden;
}

.edu-thanks-symbol {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: #052923;
  background: radial-gradient(circle, #91cf3e 0 42%, #0f766e 44% 66%, transparent 68%);
  font-size: 48px;
  font-weight: 900;
}

.edu-thanks h2 {
  margin: 0;
  color: #eaf8fd;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
}

.edu-thanks h3 {
  margin: 6px 0 18px;
  color: #effbe5;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.edu-thanks p {
  margin: 0;
  color: #b9ec68;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.edu-thanks span {
  color: #effbe5;
  font-size: 12px;
  font-weight: 800;
}

.edu-thanks img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.95;
  filter: sepia(0.18) saturate(1.1);
}

.media-main {
  background: #f8fcf9;
  padding-bottom: 54px;
}

.media-hero {
  width: calc(100% - 48px);
  min-height: 260px;
  margin: 30px auto 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 42px 24px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(6, 53, 47, 0.94), rgba(6, 53, 47, 0.78)),
    url("assets/css-media-news.webp") center/cover;
  box-shadow: 0 20px 50px rgba(10, 75, 64, 0.12);
}

.media-hero p {
  margin: 0;
  color: #91cf3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.media-hero span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
}

.media-grid-section,
.press-section,
.download-section {
  width: calc(100% - 48px);
  margin: 0 auto;
}

.media-grid,
.video-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.media-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  padding: 14px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(213, 237, 246, 0.92);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(10, 75, 64, 0.1);
  backdrop-filter: blur(14px);
}

.media-filter button,
.media-filter-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(6, 53, 47, 0.12);
  border-radius: 999px;
  color: #0b5d4f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.94));
  box-shadow: 0 10px 22px rgba(10, 75, 64, 0.08);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.media-filter button::before,
.media-filter-btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.44), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
}

.media-filter button:hover::before,
.media-filter-btn:hover::before {
  left: 120%;
}

.media-filter button svg,
.media-filter-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
  position: relative;
  z-index: 1;
}

.media-filter button span,
.media-filter-btn span {
  position: relative;
  z-index: 1;
}

.media-filter button:hover,
.media-filter button.active,
.media-filter-btn:hover,
.media-filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, #06443d, #0f8f68);
  border-color: rgba(15, 143, 104, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 95, 78, 0.22);
}

.media-filter button.active,
.media-filter-btn.active {
  cursor: default;
}

.media-photo-card,
.video-card,
.press-card,
.download-card {
  background: #fff;
  border: 1px solid #bfe8f5;
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(10, 75, 64, 0.09);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.media-photo-card:hover,
.video-card:hover,
.press-card:hover,
.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 143, 104, 0.28);
  box-shadow: 0 20px 44px rgba(10, 75, 64, 0.14);
}

.gallery-item {
  cursor: zoom-in;
}

.media-photo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.media-photo-card div,
.video-card {
  padding: 15px;
}

.media-photo-card h2,
.video-card h2,
.press-copy h2,
.download-card h2 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.media-photo-card p,
.video-card p,
.press-copy p,
.download-card p {
  margin: 7px 0 0;
  color: #46627d;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.media-photo-card small {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 9px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.media-photo-card.is-hidden,
.video-card.is-hidden {
  display: none;
}

.video-card {
  padding: 0;
}

.youtube-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #041c3c;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h2,
.video-card p {
  padding-inline: 15px;
}

.video-card p {
  padding-bottom: 15px;
}

.video-thumb {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.07);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(4, 28, 60, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke-width: 0;
  margin-left: 3px;
}

.video-thumb small {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(6, 53, 47, 0.9);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.video-card h2 {
  margin-top: 15px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 16px;
  padding: 72px 28px 34px;
  background: rgba(4, 28, 60, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox figure {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.gallery-lightbox figcaption {
  color: #fff;
  text-align: center;
}

.gallery-lightbox figcaption strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.gallery-lightbox figcaption span {
  display: block;
  margin-top: 4px;
  color: #91cf3e;
  font-size: 14px;
  font-weight: 800;
}

.gallery-close,
.gallery-nav {
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-close:hover,
.gallery-nav:hover {
  transform: scale(1.06);
  background: rgba(15, 143, 104, 0.9);
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.gallery-nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  justify-self: center;
}

.gallery-close svg,
.gallery-nav svg {
  width: 25px;
  height: 25px;
  stroke-width: 3;
}

.press-section {
  display: grid;
  gap: 14px;
}

.press-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: stretch;
}

.press-date {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: #fff;
  text-align: center;
  background: var(--brand-primary);
}

.press-date strong,
.press-date span {
  display: block;
}

.press-date strong {
  font-size: 18px;
  font-weight: 900;
}

.press-date span {
  color: #91cf3e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.press-copy {
  padding: 24px;
}

.press-copy a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #0b5d4f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.press-copy a svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

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

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
}

.download-card > svg {
  width: 44px;
  height: 44px;
  color: var(--orange);
  stroke-width: 2.3;
}

.download-card > a {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: #fff;
  background: linear-gradient(180deg, #10a37f, #08765e);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-card > a svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.inner-main {
  background:
    radial-gradient(circle at 12% 8%, rgba(145, 207, 62, 0.12), transparent 30%),
    linear-gradient(180deg, #f4fbf7 0%, #f8fcf9 45%, #fff 100%);
  padding: 28px 24px 58px;
  overflow: hidden;
}

.inner-hero {
  width: min(1360px, 100%);
  min-height: 520px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(213, 237, 246, 0.92);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234,248,253,0.92));
  box-shadow: 0 26px 64px rgba(10, 75, 64, 0.12);
  position: relative;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(6, 53, 47, 0.06), transparent 36%, rgba(15, 143, 104, 0.08));
  pointer-events: none;
}

.inner-hero-copy,
.inner-hero-media {
  position: relative;
  z-index: 1;
}

.inner-hero-copy p,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.inner-hero-copy h1 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 0.98;
}

.inner-hero-copy span {
  display: block;
  max-width: 660px;
  margin-top: 18px;
  color: #46627d;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}

.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  box-shadow: 0 14px 28px rgba(15, 143, 104, 0.24);
}

.secondary-action {
  color: var(--brand-deep);
  background: #fff;
  border: 1px solid #bfe8f5;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(10, 75, 64, 0.14);
}

.inner-hero-media {
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(10, 75, 64, 0.18);
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.inner-hero:hover .inner-hero-media img {
  transform: scale(1.04);
}

.about-stats,
.contact-card-grid,
.about-intro,
.value-grid,
.mission-band,
.journey-section,
.contact-layout {
  width: min(1360px, 100%);
  margin: 0 auto 22px;
}

.about-stats,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-stats article,
.contact-info-card,
.value-card,
.journey-grid article,
.contact-form-panel,
.contact-side-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(10, 75, 64, 0.09);
}

.about-stats article,
.contact-info-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  color: var(--brand-deep);
}

.about-stats svg,
.contact-info-card svg,
.value-card svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
  stroke-width: 2.4;
}

.about-stats strong,
.contact-info-card strong {
  color: var(--brand-deep);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.about-stats span,
.contact-info-card span {
  color: #46627d;
  font-size: 13px;
  font-weight: 800;
}

.about-stats strong {
  font-size: clamp(18px, 1.76vw, 27px);
}

.about-stats span {
  font-size: 10.4px;
}

.contact-info-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 143, 104, 0.35);
  box-shadow: 0 22px 46px rgba(10, 75, 64, 0.14);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
}

.about-intro h2,
.mission-band h2,
.contact-form-panel h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}

.about-intro > p,
.mission-band li,
.value-card p,
.journey-grid p,
.contact-side-panel p {
  margin: 0;
  color: #46627d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(10, 75, 64, 0.13);
}

.value-card h2 {
  margin: 16px 0 9px;
  color: var(--brand-deep);
  font-size: 22px;
  font-weight: 900;
}

.mission-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  color: #fff;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4,28,60,0.96), rgba(4,28,60,0.78)),
    url("assets/css-mission-team.webp") center/cover;
  box-shadow: 0 24px 54px rgba(10, 75, 64, 0.18);
}

.mission-band .section-kicker,
.mission-band h2,
.mission-band li {
  color: #fff;
}

.mission-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-band li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mission-band li svg {
  flex: 0 0 auto;
  color: #91cf3e;
  margin-top: 2px;
}

.journey-section {
  padding-top: 12px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.journey-grid article {
  padding: 24px;
}

.journey-grid strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #06443d);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.journey-grid h3 {
  margin: 16px 0 8px;
  color: var(--brand-deep);
  font-size: 20px;
  font-weight: 900;
}

.about-section-title {
  margin: 0 0 22px;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}

.about-cta {
  width: min(1360px, 100%);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(15, 143, 104, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf8fd, #f5fbe9);
  box-shadow: 0 20px 48px rgba(10, 75, 64, 0.11);
}

.about-cta h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.about-cta span {
  display: block;
  margin-top: 10px;
  color: #46627d;
  font-weight: 700;
}

.about-cta .primary-action {
  flex: 0 0 auto;
}

.service-breadcrumb,
.service-catalogue,
.verification-types,
.verification-safety {
  width: min(1360px, 100%);
  margin: 0 auto 22px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 2px;
  color: #46627d;
  font-size: 13px;
  font-weight: 800;
}

.service-breadcrumb a {
  color: #0f8f68;
  text-decoration: none;
}

.service-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.service-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.service-heading h2,
.verification-safety-copy h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}

.service-heading > span {
  display: block;
  margin-top: 12px;
  color: #46627d;
  font-weight: 700;
  line-height: 1.65;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-page-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 390px;
  overflow: hidden;
  scroll-margin-top: 110px;
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 75, 64, 0.1);
}

.service-page-image {
  min-height: 100%;
  position: relative;
}

.service-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: linear-gradient(135deg, #10aee0, #0f8f68);
  box-shadow: 0 12px 26px rgba(4, 28, 60, 0.2);
}

.service-page-copy {
  padding: 28px;
}

.service-page-copy h3,
.verification-type-grid h3 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 23px;
  font-weight: 900;
}

.service-page-copy > p,
.verification-type-grid p,
.verification-safety-copy > p {
  color: #46627d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.service-page-copy ul,
.verification-safety-copy ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.service-page-copy li,
.verification-safety-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #294a68;
  font-size: 13px;
  font-weight: 800;
}

.service-page-copy li svg,
.verification-safety-copy li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #0f8f68;
}

.service-page-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f8f68;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.service-page-copy > a svg {
  width: 17px;
  height: 17px;
}

.verification-types {
  padding-top: 10px;
  scroll-margin-top: 110px;
}

.verification-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.verification-type-grid article {
  padding: 25px;
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(10, 75, 64, 0.08);
}

.verification-type-grid article > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: #0f8f68;
}

.verification-safety {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(10, 75, 64, 0.1);
}

.verification-safety-image {
  min-height: 430px;
}

.verification-safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verification-safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.career-values,
.career-openings,
.career-application {
  width: min(1360px, 100%);
  margin: 0 auto 24px;
}

.career-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.career-values article {
  padding: 25px;
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(10, 75, 64, 0.08);
}

.career-values svg {
  width: 35px;
  height: 35px;
  color: #0f8f68;
}

.career-values h2 {
  margin: 15px 0 7px;
  color: var(--brand-deep);
  font-size: 21px;
}

.career-values p,
.vacancy-card p,
.career-form-intro > p {
  margin: 0;
  color: #46627d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.career-openings {
  padding-top: 14px;
  scroll-margin-top: 110px;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 75, 64, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vacancy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 52px rgba(10, 75, 64, 0.14);
}

.vacancy-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vacancy-card-head > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: linear-gradient(135deg, #10aee0, #0f8f68);
}

.vacancy-card-head small {
  padding: 7px 10px;
  color: #075447;
  border: 1px solid rgba(145, 207, 62, 0.5);
  border-radius: 999px;
  background: #f5fbe9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.vacancy-card h3 {
  margin: 20px 0 9px;
  color: var(--brand-deep);
  font-size: 24px;
  font-weight: 900;
}

.vacancy-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 21px 0 24px;
  padding: 0;
  list-style: none;
}

.vacancy-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #294a68;
  font-size: 12px;
  font-weight: 800;
}

.vacancy-card li svg {
  width: 16px;
  height: 16px;
  color: #0f8f68;
}

.vacancy-card button,
.career-captcha-row button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 0 18px;
  color: #fff;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #082b57, #00ad63);
  box-shadow: 0 12px 26px rgba(0, 173, 99, 0.2);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.vacancy-card button svg,
.career-captcha-row button svg {
  width: 17px;
  height: 17px;
}

.career-no-openings {
  grid-column: 1 / -1;
  padding: 42px 24px;
  text-align: center;
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(10, 75, 64, 0.08);
}

.career-no-openings > svg {
  width: 42px;
  height: 42px;
  color: #0f8f68;
}

.career-no-openings h3 {
  margin: 13px 0 7px;
  color: var(--brand-deep);
  font-size: 23px;
}

.career-no-openings p {
  margin: 0;
  color: #5e7891;
  font-weight: 700;
}

.career-application {
  padding: 34px;
  scroll-margin-top: 110px;
  border: 1px solid #bfe8f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(10, 75, 64, 0.12);
}

.career-application[hidden] {
  display: none;
}

.career-form-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.career-form-intro h2 {
  margin: 0 0 11px;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.career-alert {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  padding: 15px 17px;
  color: #082b57;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  background: #eaf8fd;
  font-size: 14px;
  font-weight: 800;
}

.career-alert.success {
  border-color: rgba(0, 173, 99, 0.35);
  background: #f5fbe9;
}

.career-alert svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #0f8f68;
}

.career-alert ul {
  margin: 7px 0 0;
  padding-left: 19px;
}

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

.career-application label {
  display: grid;
  gap: 8px;
}

.career-application label > span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.career-application label b {
  color: #00ad63;
}

.career-application input,
.career-application select,
.career-application textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #102a43;
  border: 1px solid #bfe8f5;
  border-radius: 7px;
  background: #f8fcf9;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.career-application input:focus,
.career-application select:focus,
.career-application textarea:focus {
  border-color: rgba(15, 143, 104, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 143, 104, 0.1);
}

.career-editor-field {
  margin-top: 17px;
}

.career-editor-field textarea {
  min-height: 260px;
}

.career-editor-field > small {
  color: #5e7891;
  font-size: 12px;
  font-weight: 700;
}

.career-page .ck.ck-editor {
  width: 100%;
}

.career-page .ck.ck-toolbar,
.career-page .ck.ck-editor__main > .ck-editor__editable {
  border-color: #bfe8f5;
}

.career-page .ck.ck-editor__editable_inline {
  min-height: 260px;
  color: #102a43;
}

.career-captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  margin-top: 18px;
}

.career-captcha-row label {
  max-width: 380px;
}

.career-captcha-row label strong {
  color: #0f8f68;
  font-size: 16px;
}

.career-captcha-row button {
  min-width: 220px;
}

.career-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0;
  color: #5e7891;
  font-size: 12px;
  font-weight: 700;
}

.career-privacy svg {
  width: 17px;
  height: 17px;
  color: #0f8f68;
}

.career-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.contact-form-panel {
  padding: 30px;
}

.contact-form-panel form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-panel label {
  display: grid;
  gap: 8px;
}

.contact-form-panel label span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  padding: 13px 14px;
  color: #102a43;
  background: #f8fcf9;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: rgba(15, 143, 104, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 143, 104, 0.11);
}

.contact-form-panel textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-panel button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  box-shadow: 0 14px 28px rgba(15, 143, 104, 0.24);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-side-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(234,248,253,0.95));
}

.map-card {
  min-height: 270px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(4,28,60,0.92), rgba(17,175,227,0.68)),
    url("assets/css-india-network.webp") center/cover;
}

.map-card svg {
  width: 54px;
  height: 54px;
  color: #91cf3e;
}

.map-card h2,
.contact-note h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.map-card p {
  color: rgba(255,255,255,0.9);
}

.contact-note {
  padding: 20px;
  border: 1px solid #bfe8f5;
  border-radius: 9px;
  background: #fff;
}

.contact-note h3 {
  color: var(--brand-deep);
  font-size: 18px;
}

.contact-note p {
  margin-top: 8px;
}

.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  padding: 15px 17px;
  color: #082b57;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  background: #eaf8fd;
  font-size: 14px;
  font-weight: 800;
}

.contact-alert.success {
  border-color: rgba(0, 173, 99, 0.35);
  background: #f5fbe9;
}

.contact-alert > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #0f8f68;
}

.contact-alert ul {
  margin: 7px 0 0;
  padding-left: 19px;
}

.contact-captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.contact-captcha-row label {
  max-width: 380px;
}

.contact-captcha-row label strong {
  color: #0f8f68;
  font-size: 16px;
}

.contact-captcha-row button {
  min-width: 210px;
}

.contact-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #5e7891;
  font-size: 12px;
  font-weight: 700;
}

.contact-privacy svg {
  width: 17px;
  height: 17px;
  color: #0f8f68;
}

.legal-main {
  padding-top: 34px;
}

.legal-hero,
.legal-layout {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.legal-hero {
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  border: 1px solid rgba(17, 175, 227, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 0%, rgba(145, 207, 62, 0.23), transparent 30%),
    linear-gradient(135deg, #041c3c 0%, #082b57 58%, #006c65 100%);
  box-shadow: 0 24px 56px rgba(8, 43, 87, 0.18);
}

.legal-hero .section-kicker { color: #b9ec68; }

.legal-hero h1 {
  margin: 8px 0 14px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.legal-hero > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-meta span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
}

.legal-meta svg { width: 15px; height: 15px; color: #91cf3e; }

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.legal-nav,
.legal-content {
  border: 1px solid #bfe8f5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(8, 43, 87, 0.09);
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 3px;
  padding: 18px;
}

.legal-nav strong {
  margin-bottom: 8px;
  color: #082b57;
  font-size: 13px;
  font-weight: 900;
}

.legal-nav a {
  padding: 9px 10px;
  color: #46627d;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.legal-nav a:hover { color: #082b57; background: #eaf8fd; }

.legal-content { padding: clamp(24px, 4vw, 46px); }

.legal-content section {
  scroll-margin-top: 120px;
  padding: 0 0 27px;
  margin: 0 0 27px;
  border-bottom: 1px solid #d9eef6;
}

.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }

.legal-content h2 {
  margin: 0 0 12px;
  color: #082b57;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #46627d;
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.75;
}

.legal-content p { margin: 0 0 13px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { display: grid; gap: 7px; margin: 10px 0 14px; padding-left: 22px; }
.legal-content li::marker { color: #00ad63; }
.legal-content a { color: #00765c; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: #163656; }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .legal-main { padding-inline: 14px; }
  .legal-hero { padding: 28px 22px; border-radius: 13px; }
  .legal-meta { align-items: stretch; flex-direction: column; }
  .legal-meta span { width: 100%; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-content { padding: 23px 19px; }
  .footer-legal { flex-wrap: wrap; gap: 8px 13px; }
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.payment-main {
  padding-top: 24px;
}

.payment-hero {
  width: min(1360px, 100%);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: stretch;
  gap: 20px;
}

.payment-hero-copy,
.payment-hero-card,
.bank-panel,
.upi-panel,
.payment-steps article,
.payment-proof-form,
.cheque-panel {
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.1);
}

.payment-hero-copy {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 53, 47, 0.96), rgba(8, 84, 71, 0.78)),
    url("assets/css-payment-finance.webp") center/cover;
}

.payment-hero-copy p {
  margin: 0 0 12px;
  color: #91cf3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1;
}

.payment-hero-copy span {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.payment-hero-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #effaf5);
}

.payment-hero-card svg {
  width: 72px;
  height: 72px;
  color: var(--orange);
  stroke-width: 2.1;
}

.payment-hero-card strong {
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.payment-hero-card span {
  color: #46627d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.payment-grid,
.payment-steps,
.payment-proof-layout {
  width: min(1360px, 100%);
  margin: 0 auto 22px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.bank-panel,
.upi-panel,
.payment-proof-form,
.cheque-panel {
  background: rgba(255,255,255,0.94);
}

.bank-panel,
.payment-proof-form {
  padding: 30px;
}

.payment-section-title h2,
.payment-proof-form h2,
.upi-panel h2,
.cheque-panel h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.05;
}

.bank-detail-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.bank-detail-row,
.upi-id-box {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid #bfe8f5;
  border-radius: 9px;
  background: #f8fcf9;
}

.bank-detail-row span,
.upi-id-box span {
  color: #56708a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-detail-row strong,
.upi-id-box strong {
  color: var(--brand-deep);
  font-size: 17px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.copy-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #2d6a27, #5e8c25);
}

.payment-note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 13px;
  border-radius: 8px;
  color: #0b5d4f;
  background: rgba(145, 207, 62, 0.16);
}

.payment-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.upi-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.qr-donate-card {
  width: min(260px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #bfe8f5, 0 16px 36px rgba(10, 75, 64, 0.12);
}

.qr-pattern {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 7px;
}

.qr-pattern span {
  background: #0b5d4f;
  border-radius: 3px;
}

.qr-pattern span:nth-child(3n),
.qr-pattern span:nth-child(5n) {
  background: #0f8f68;
}

.qr-pattern span:nth-child(8),
.qr-pattern span:nth-child(13),
.qr-pattern span:nth-child(20) {
  background: #91cf3e;
}

.upi-panel p,
.cheque-panel p {
  margin: 0;
  color: #46627d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.upi-id-box {
  width: 100%;
  grid-template-columns: 72px 1fr auto;
  text-align: left;
}

.payment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.payment-steps article {
  padding: 22px;
  background: #fff;
}

.payment-steps svg {
  width: 38px;
  height: 38px;
  color: var(--orange);
  stroke-width: 2.3;
}

.payment-steps h2 {
  margin: 14px 0 8px;
  color: var(--brand-deep);
  font-size: 20px;
  font-weight: 900;
}

.payment-steps p {
  margin: 0;
  color: #46627d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.payment-proof-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.payment-proof-form form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.payment-proof-form label {
  display: grid;
  gap: 8px;
}

.payment-proof-form label span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.payment-proof-form input,
.payment-proof-form select,
.payment-proof-form textarea {
  width: 100%;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  padding: 13px 14px;
  color: #102a43;
  background: #f8fcf9;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.payment-proof-form input:focus,
.payment-proof-form select:focus,
.payment-proof-form textarea:focus {
  border-color: rgba(15, 143, 104, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 143, 104, 0.11);
}

.payment-proof-form textarea {
  resize: vertical;
}

.payment-proof-form button,
.cheque-panel a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  box-shadow: 0 14px 28px rgba(15, 143, 104, 0.24);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.cheque-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(242,250,255,0.94)),
    url("assets/css-cheque-processing.webp") center/cover;
}

.cheque-panel > svg {
  width: 58px;
  height: 58px;
  color: var(--orange);
  stroke-width: 2.2;
}

.stories-main {
  padding-top: 24px;
}

.stories-hero {
  width: min(1360px, 100%);
  min-height: 420px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: stretch;
}

.stories-hero > div,
.stories-hero > aside,
.current-story-card,
.stories-cta {
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.1);
}

.stories-hero > div {
  display: grid;
  align-content: center;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 53, 47, 0.95), rgba(8, 84, 71, 0.76)),
    url("assets/css-customer-stories.webp") center/cover;
}

.stories-hero p {
  margin: 0 0 12px;
  color: #91cf3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stories-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1;
}

.stories-hero span {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.stories-hero > aside {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #effaf5);
}

.stories-hero > aside strong {
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 74px;
  line-height: 0.9;
}

.stories-hero > aside span,
.stories-hero > aside p {
  color: #46627d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: none;
}

.story-list-section {
  width: min(1360px, 100%);
}

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

.current-story-card {
  overflow: hidden;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.current-story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 143, 104, 0.3);
  box-shadow: 0 24px 52px rgba(10, 75, 64, 0.15);
}

.current-story-card.is-hidden {
  display: none;
}

.current-story-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.current-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.current-story-card:hover .current-story-image img {
  transform: scale(1.06);
}

.current-story-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(6, 53, 47, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.current-story-image svg {
  width: 15px;
  height: 15px;
}

.current-story-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.current-story-copy small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.current-story-copy h2 {
  margin: 0;
  color: var(--brand-deep);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
}

.current-story-copy p {
  margin: 0;
  color: #46627d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.story-progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dff3f9;
}

.story-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #91cf3e, #0f8f68, #075447);
}

.story-funds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.story-funds span {
  display: grid;
  gap: 3px;
  padding: 10px;
  color: #56708a;
  background: #f2fbf6;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.story-funds strong {
  color: var(--brand-deep);
  font-size: 17px;
}

.current-story-copy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.stories-cta {
  width: min(1360px, 100%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(4,28,60,0.96), rgba(4,28,60,0.8)),
    url("assets/css-mission-team.webp") center/cover;
}

.stories-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.stories-cta .section-kicker {
  color: #91cf3e;
}

.donate-main {
  padding-top: 24px;
}

.donate-hero,
.donate-layout,
.donate-impact,
.donate-bottom-cta {
  width: min(1360px, 100%);
  margin: 0 auto 24px;
}

.donate-hero {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 20px;
  align-items: stretch;
}

.donate-hero-copy,
.donate-hero-image,
.donate-campaign,
.donation-form-card,
.donate-impact,
.donate-bottom-cta {
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.1);
}

.donate-hero-copy {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 53, 47, 0.96), rgba(8, 84, 71, 0.76)),
    url("assets/css-mission-team.webp") center/cover;
}

.donate-hero-copy p {
  margin: 0 0 12px;
  color: #91cf3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.donate-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4.9vw, 76px);
  line-height: 0.98;
}

.donate-hero-copy span {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.donate-hero-image {
  overflow: hidden;
}

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

.donate-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: start;
}

.donate-campaign,
.donation-form-card,
.donate-impact {
  background: rgba(255,255,255,0.95);
}

.donate-campaign {
  padding: 26px;
}

.donate-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.donate-tabs button {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #bfe8f5;
  border-radius: 9px;
  color: var(--brand-deep);
  background: #f2fbf6;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.donate-tabs button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.6;
}

.donate-tabs button:hover,
.donate-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #06443d, #0f8f68);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 95, 78, 0.18);
}

.donate-story-panel {
  margin-top: 18px;
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 34px;
  color: #fff;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(4, 28, 60, 0.08), rgba(6, 53, 47, 0.92)),
    url("assets/css-customer-stories.webp") center/cover;
}

.donate-story-panel > span {
  width: fit-content;
  padding: 7px 10px;
  color: #0b5d4f;
  background: #91cf3e;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.donate-story-panel h2 {
  max-width: 720px;
  margin: 16px 0 10px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
}

.donate-story-panel p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.donate-story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.donate-story-points small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.donation-form-card {
  padding: 26px;
  position: sticky;
  top: 102px;
}

.donation-form-head p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-form-head h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
}

.donation-form-card form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.amount-grid label {
  cursor: pointer;
}

.amount-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amount-grid label span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  color: var(--brand-deep);
  background: #f2fbf6;
  font-size: 18px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.amount-grid label:hover span,
.amount-grid label.active span,
.amount-grid input:checked + span {
  color: #fff;
  background: linear-gradient(135deg, #06443d, #0f8f68);
  transform: translateY(-2px);
}

.donation-form-card label {
  display: grid;
  gap: 8px;
}

.donation-form-card label > span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.donation-form-card input {
  width: 100%;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  padding: 13px 14px;
  color: #102a43;
  background: #f8fcf9;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.donation-form-card input:focus {
  border-color: rgba(15, 143, 104, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 143, 104, 0.11);
}

.donation-form-card button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  box-shadow: 0 14px 28px rgba(15, 143, 104, 0.24);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.tax-note {
  margin: 14px 0 0;
  color: #46627d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.bank-details-link {
  min-height: 44px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: var(--brand-deep);
  background: #f2fbf6;
  border: 1px solid #bfe8f5;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.donate-impact {
  padding: 28px;
}

.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.donate-impact-grid article {
  overflow: hidden;
  border: 1px solid #bfe8f5;
  border-radius: 10px;
  background: #fff;
}

.donate-impact-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.donate-impact-grid strong,
.donate-impact-grid p {
  display: block;
  padding-inline: 16px;
}

.donate-impact-grid strong {
  margin-top: 14px;
  color: var(--brand-deep);
  font-size: 28px;
  font-weight: 900;
}

.donate-impact-grid p {
  margin: 6px 0 16px;
  color: #46627d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.donate-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,28,60,0.96), rgba(4,28,60,0.8)),
    url("assets/css-payment-finance.webp") center/cover;
}

.donate-bottom-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
}

.donate-bottom-cta p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 700;
}

.event-main {
  padding-top: 24px;
}

.event-hero,
.event-list-section,
.event-detail-hero,
.event-detail-layout,
.event-detail-cta {
  width: min(1360px, 100%);
  margin: 0 auto 24px;
}

.event-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.event-hero > div,
.event-hero > aside,
.event-card,
.event-detail-hero,
.event-about-panel,
.event-register-panel,
.event-detail-cta {
  border: 1px solid #bfe8f5;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.1);
}

.event-hero > div {
  min-height: 380px;
  display: grid;
  align-content: center;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 53, 47, 0.96), rgba(8, 84, 71, 0.76)),
    url("assets/css-mission-team.webp") center/cover;
}

.event-hero p,
.event-detail-copy p {
  margin: 0 0 12px;
  color: #91cf3e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-hero h1,
.event-detail-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 4.7vw, 72px);
  line-height: 1;
}

.event-hero > div > span,
.event-detail-copy > span {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.event-hero > aside {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #effaf5);
}

.event-hero > aside svg {
  width: 68px;
  height: 68px;
  color: var(--orange);
}

.event-hero > aside strong {
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 66px;
  line-height: 0.9;
}

.event-hero > aside span {
  color: #46627d;
  font-size: 15px;
  font-weight: 900;
}

.event-list-section {
  padding: 8px 0 0;
}

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

.event-card {
  overflow: hidden;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 143, 104, 0.3);
  box-shadow: 0 24px 52px rgba(10, 75, 64, 0.15);
}

.event-card-image {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
}

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

.event-card:hover .event-card-image img {
  transform: scale(1.06);
}

.event-card-image span,
.event-detail-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(6, 53, 47, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.event-card-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.event-meta {
  display: grid;
  gap: 6px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #56708a;
  font-size: 12px;
  font-weight: 900;
}

.event-meta svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.event-card h2,
.event-about-panel h2,
.event-register-panel h2,
.event-detail-cta h2 {
  margin: 0;
  color: var(--brand-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.event-card p,
.event-about-panel p,
.event-register-panel p,
.event-detail-cta p {
  margin: 0;
  color: #46627d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
}

.event-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-actions a,
.event-register-panel button,
.event-register-panel > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f68, #075447);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.event-actions a + a {
  color: var(--brand-deep);
  background: #f2fbf6;
  border: 1px solid #bfe8f5;
}

.event-detail-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(6, 53, 47, 0.98), rgba(8, 84, 71, 0.82));
}

.event-detail-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.event-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.event-detail-copy {
  display: grid;
  align-content: center;
  padding: 42px;
}

.event-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.event-detail-facts article {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
}

.event-detail-facts svg {
  color: #91cf3e;
}

.event-detail-facts strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.event-detail-facts small {
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.event-about-panel,
.event-register-panel {
  padding: 30px;
  background: rgba(255,255,255,0.95);
}

.event-about-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 46px);
}

.event-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.event-highlight-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: var(--brand-deep);
  background: #f2fbf6;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.event-highlight-grid svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.event-register-panel form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.event-register-panel label {
  display: grid;
  gap: 8px;
}

.event-register-panel label span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.event-register-panel input,
.event-register-panel select {
  width: 100%;
  border: 1px solid #bfe8f5;
  border-radius: 8px;
  padding: 13px 14px;
  color: #102a43;
  background: #f8fcf9;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.event-register-panel > a {
  width: 100%;
  margin-top: 14px;
  color: var(--brand-deep);
  background: #f2fbf6;
  border: 1px solid #bfe8f5;
}

.event-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(4,28,60,0.96), rgba(4,28,60,0.8)),
    url("assets/css-payment-finance.webp") center/cover;
}

.event-detail-cta h2,
.event-detail-cta p {
  color: #fff;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal .impact-item,
.scroll-reveal .pillar-card,
.scroll-reveal .donation-option,
.scroll-reveal .story-item,
.scroll-reveal .activity-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.24s ease;
}

.scroll-reveal.revealed .impact-item,
.scroll-reveal.revealed .pillar-card,
.scroll-reveal.revealed .donation-option,
.scroll-reveal.revealed .story-item,
.scroll-reveal.revealed .activity-card {
  opacity: 1;
  transform: translateY(0);
}

.page-reveal {
  animation: pageFade 0.75s ease both;
}

.impact-item,
.pillar-card,
.donation-option,
.story-item,
.trust-panel,
.csr-panel,
.activity-card,
.mission-cta,
.thank-panel {
  will-change: transform;
}

.impact-item,
.story-item,
.trust-panel,
.csr-panel,
.mission-cta,
.thank-panel {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.impact-item:hover,
.story-item:hover,
.trust-panel:hover,
.csr-panel:hover,
.mission-cta:hover,
.thank-panel:hover {
  transform: translateY(-4px);
}

.impact-card,
.stories-wrap,
.sankalp-wrap,
.donation-impact,
.trust-panel,
.csr-panel {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.impact-card:hover,
.stories-wrap:hover,
.sankalp-wrap:hover,
.donation-impact:hover,
.trust-panel:hover,
.csr-panel:hover {
  border-color: rgba(15, 143, 104, 0.28);
  box-shadow: 0 18px 44px rgba(10, 75, 64, 0.13);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #10a37f, #08765e);
  box-shadow: 0 14px 32px rgba(10, 75, 64, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

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

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  stroke-width: 3;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header { height: auto; min-height: 86px; padding: 12px 20px; }
  .logo { min-width: 125px; }
  .logo img { height: 66px; }
  .logo-symbol { width: 64px; height: 64px; }
  .logo-symbol::before { inset: 10px; border-width: 4px; }
  .sun-ray { width: 15px; height: 15px; left: 24px; transform-origin: 50% 32px; }
  .swastik { font-size: 29px; }
  .logo-text strong { font-size: 27px; }
  .logo-text span { font-size: 14px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-top: 1px solid #d5edf6;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 34px rgba(10, 75, 64, 0.12);
  }
  .site-header.menu-open .main-nav { display: flex; }
  .main-nav > a,
  .nav-trigger {
    width: 100%;
    height: auto;
    justify-content: space-between;
    padding: 13px 12px;
  }
  .main-nav > a::after,
  .nav-trigger::after { bottom: 6px; }
  .nav-item { width: 100%; }
  .dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0 0 8px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f2fbf6;
  }
  .dropdown-menu::before { display: none; }
  .nav-item:hover .dropdown-menu,
  .nav-item.open .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    transform: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    height: auto;
    min-height: 36px;
    display: flex;
    padding: 9px 10px;
    color: #163656;
    font-size: 12px;
    line-height: 1.25;
  }
  .main-nav > a.active,
  .nav-trigger.active {
    color: #082b57;
    background: linear-gradient(90deg, #eaf8fd, #effbea);
    box-shadow: none;
  }
  .menu-btn { display: inline-grid; place-items: center; margin-left: auto; }
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .slides { min-height: 0; }
  .hero-content {
    padding: 42px 20px 30px;
    background: linear-gradient(180deg, #fff, rgba(255,255,255,0.95));
  }
  .hero-content::after { display: none; }
  .hero-kicker { margin-inline: auto; }
  h1 { text-align: center; font-size: clamp(42px, 12vw, 60px); }
  .divider { margin-inline: auto; }
  .hero-description { margin-inline: auto; font-size: 17px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-visual { min-height: 420px; }
  .hero-scene { object-position: center; }
  .slider-arrow {
    top: auto;
    bottom: 24px;
    width: 40px;
    height: 40px;
  }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  .slider-dots {
    left: 50%;
    right: auto;
    bottom: 35px;
    transform: translateX(-50%);
  }
  .impact-strip {
    margin-top: 0;
    padding-top: 18px;
  }
  .impact-card {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
  }
  .impact-item {
    justify-content: flex-start;
    padding: 18px 20px;
    border-bottom: 1px solid #d5edf6;
  }
  .impact-item + .impact-item::before { display: none; }
  .impact-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pillar-card,
  .pillar-content {
    min-height: 285px;
  }
  .sankalp-wrap,
  .donation-impact {
    grid-template-columns: 1fr;
  }
  .sankalp-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: left;
  }
  .fund-ring {
    justify-self: start;
  }
  .sankalp-banner img {
    width: calc(100% + 56px);
    height: 210px;
    margin: 0 -28px -24px;
    mask-image: linear-gradient(180deg, #000, transparent 98%);
  }
  .mission-cta {
    min-height: auto;
  }
  .donation-options {
    grid-template-columns: repeat(3, 1fr);
  }
  .thank-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .thank-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .story-row {
    grid-template-columns: 1fr;
  }
  .trust-csr-wrap {
    grid-template-columns: 1fr;
  }
  .csr-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "icons"
      "button";
  }
  .activities-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .all-activities {
    grid-column: 1 / -1;
    min-height: 72px;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand::after,
  .footer-links::after,
  .footer-contact::after,
  .footer-updated::after {
    display: none;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-lotus {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .site-header { gap: 12px; }
  .logo { min-width: 0; gap: 10px; }
  .logo img { height: 56px; }
  .logo-symbol { width: 52px; height: 52px; }
  .logo-symbol::before { inset: 8px; border-width: 3px; }
  .sun-ray { display: none; }
  .swastik { font-size: 24px; }
  .logo-text strong { font-size: 23px; }
  .logo-text span { font-size: 11px; }
  .logo-text small { display: none; }
  .nav-donate { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-btn { width: 100%; min-height: 50px; }
  .hero-kicker { font-size: 12px; gap: 8px; }
  .hero-kicker span { width: 22px; }
  .divider { width: 210px; }
  .hero-description { text-align: center; }
  .hero-visual { min-height: 360px; }
  .hero-scene { object-position: center; }
  .slides { min-height: 0; }
  .impact-card { grid-template-columns: 1fr; }
  .impact-item {
    min-height: 86px;
    justify-content: center;
    text-align: left;
  }
  .impact-item:last-child { grid-column: auto; }
  .impact-icon {
    width: 46px;
    height: 46px;
  }
  .impact-symbol {
    width: 50px;
    min-width: 50px;
    font-size: 42px;
  }
  .pillars-section {
    padding-top: 22px;
  }
  .section-heading {
    gap: 10px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card,
  .pillar-content {
    min-height: 292px;
  }
  .sankalp-section {
    padding-inline: 14px;
  }
  .sankalp-banner {
    padding: 24px 20px 20px;
  }
  .sankalp-copy h2 {
    font-size: 25px;
  }
  .sankalp-copy li {
    font-size: 14px;
  }
  .fund-ring {
    width: 118px;
    height: 118px;
  }
  .fund-ring span {
    font-size: 30px;
  }
  .donation-panel {
    padding-inline: 12px;
  }
  .donation-heading {
    gap: 8px;
  }
  .donation-heading h2 {
    font-size: 14px;
    line-height: 1.25;
  }
  .donation-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .donation-option {
    min-height: 154px;
  }
  .thank-panel p,
  .thank-panel span {
    font-size: 16px;
  }
  .thank-panel strong {
    font-size: 32px;
  }
  .story-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-item {
    grid-template-columns: 170px 1fr;
  }
  .trust-csr-wrap {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid article:nth-child(3) {
    border-right: 0;
  }
  .trust-grid article:nth-child(-n+3) {
    border-bottom: 1px solid #bfe8f5;
  }
  .csr-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "icons"
      "button";
  }
  .csr-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .csr-content > a {
    width: fit-content;
  }
  .activities-heading {
    gap: 9px;
  }
  .activities-heading h2 {
    font-size: 15px;
  }
  .activities-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .activity-card img {
    height: 92px;
  }
  .all-activities {
    min-height: 64px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-updated {
    min-height: auto;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand p,
  .footer-brand > span,
  .footer-socials {
    margin-left: 0;
    justify-content: center;
  }
  .footer-links,
  .footer-contact,
  .footer-updated {
    text-align: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  .footer-updated form {
    width: min(100%, 310px);
    margin: 0 auto;
  }
  .footer-updated button {
    padding-inline: 9px;
    font-size: 9px;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .education-page {
    width: 100%;
    margin-top: 0;
  }
  .edu-hero,
  .edu-donation,
  .edu-story,
  .edu-thanks {
    width: calc(100% - 22px);
  }
  .edu-hero {
    margin-top: 18px;
  }
  .edu-photo-grid {
    grid-template-columns: 1fr;
  }
  .edu-photo-grid img {
    height: 190px;
  }
  .edu-title-band h1 {
    font-size: 27px;
  }
  .edu-title-band p {
    font-size: 13px;
  }
  .edu-program-row article {
    min-height: 112px;
  }
  .edu-program-row svg {
    width: 29px;
    height: 29px;
  }
  .edu-program-row span {
    font-size: 12px;
  }
  .edu-program-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .edu-program-row article:nth-child(2n) {
    border-right: 0;
  }
  .edu-program-row article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #bfe8f5;
  }
  .edu-donation {
    padding: 22px 12px 16px;
  }
  .edu-section-heading {
    gap: 8px;
  }
  .edu-section-heading h2 {
    font-size: 15px;
  }
  .edu-donation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .edu-donation-grid article {
    min-height: 150px;
    padding: 14px 8px;
    background: #fff;
    border: 1px solid #bfe8f5;
    border-radius: 8px;
  }
  .edu-donation-grid svg {
    width: 55px;
    height: 55px;
    padding: 12px;
  }
  .edu-donation-grid strong {
    font-size: 18px;
  }
  .edu-donation-grid p {
    font-size: 11px;
  }
  .edu-donation-grid article + article::before {
    display: none;
  }
  .edu-story {
    grid-template-columns: 1fr;
  }
  .edu-story-copy {
    padding: 28px 26px;
  }
  .edu-story img {
    height: 220px;
  }
  .edu-thanks {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 22px;
  }
  .edu-thanks img {
    height: 180px;
  }
  .media-hero,
  .media-grid-section,
  .press-section,
  .download-section {
    width: calc(100% - 22px);
  }
  .media-hero {
    min-height: 210px;
    margin-top: 18px;
    padding: 34px 18px;
  }
  .media-hero h1 {
    font-size: 38px;
  }
  .media-filter {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    border-radius: 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .media-filter::-webkit-scrollbar {
    height: 0;
  }
  .media-filter button,
  .media-filter-btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 12px;
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
  .media-filter button svg,
  .media-filter-btn svg {
    width: 16px;
    height: 16px;
  }
  .media-grid,
  .video-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }
  .media-photo-card img,
  .video-thumb {
    height: 210px;
  }
  .gallery-lightbox {
    grid-template-columns: 48px 1fr 48px;
    gap: 6px;
    padding: 70px 10px 28px;
  }
  .gallery-lightbox img {
    max-height: calc(100vh - 180px);
  }
  .gallery-nav {
    width: 42px;
    height: 42px;
  }
  .gallery-close {
    width: 42px;
    height: 42px;
  }
  .press-card {
    grid-template-columns: 1fr;
  }
  .press-date {
    min-height: 96px;
  }
  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-card > svg {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding: 30px 18px 22px;
  }
  h1 {
    font-size: 39px;
    line-height: 0.96;
  }
  .divider {
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.48;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-btn {
    min-height: 45px;
    font-size: 11px;
  }
  .hero-visual {
    min-height: 300px;
  }
  .slider-arrow {
    bottom: 18px;
    width: 36px;
    height: 36px;
  }
  .slider-dots {
    bottom: 28px;
  }
}

@media (max-width: 1180px) {
  .inner-hero,
  .about-stats,
  .contact-card-grid,
  .about-intro,
  .value-grid,
  .mission-band,
  .journey-section,
  .contact-layout,
  .about-cta,
  .service-breadcrumb,
  .service-catalogue,
  .verification-types,
  .verification-safety,
  .career-values,
  .career-openings,
  .career-application {
    width: 100%;
  }
  .inner-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .inner-hero-media,
  .inner-hero-media img {
    min-height: 340px;
  }
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-page-grid {
    grid-template-columns: 1fr;
  }
  .payment-hero,
  .payment-grid,
  .payment-proof-layout,
  .stories-hero,
  .donate-hero,
  .donate-layout,
  .event-hero,
  .event-detail-hero,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }
  .payment-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .current-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .donation-form-card {
    position: static;
  }
  .donate-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .inner-main {
    padding: 18px 14px 42px;
  }
  .inner-hero {
    padding: 24px;
    gap: 20px;
  }
  .inner-hero-copy {
    text-align: center;
  }
  .inner-hero-copy span {
    margin-inline: auto;
  }
  .inner-hero-actions {
    justify-content: center;
  }
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-intro,
  .mission-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .value-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
  }
  .verification-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .verification-safety {
    grid-template-columns: 1fr;
  }
  .verification-safety-image {
    min-height: 320px;
  }
  .vacancy-grid {
    grid-template-columns: 1fr;
  }
  .payment-hero-copy {
    min-height: 0;
    padding: 34px 24px;
    text-align: center;
  }
  .payment-hero-copy span {
    margin-inline: auto;
  }
  .payment-hero-copy .inner-hero-actions {
    justify-content: center;
  }
  .stories-hero > div {
    min-height: 0;
    padding: 34px 24px;
    text-align: center;
  }
  .stories-hero > div .inner-hero-actions {
    justify-content: center;
  }
  .stories-hero span {
    margin-inline: auto;
  }
  .stories-cta {
    flex-direction: column;
    text-align: center;
  }
  .donate-hero-copy {
    min-height: 0;
    padding: 34px 24px;
    text-align: center;
  }
  .donate-hero-copy span {
    margin-inline: auto;
  }
  .donate-hero-image img {
    min-height: 320px;
  }
  .donate-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .donate-bottom-cta {
    flex-direction: column;
    text-align: center;
  }
  .event-hero > div,
  .event-detail-copy {
    padding: 34px 24px;
    text-align: center;
  }
  .event-hero > div .inner-hero-actions {
    justify-content: center;
  }
  .event-hero > div > span,
  .event-detail-copy > span {
    margin-inline: auto;
  }
  .event-detail-image,
  .event-detail-image img {
    min-height: 330px;
  }
  .event-detail-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .inner-main {
    padding-inline: 11px;
  }
  .inner-hero {
    padding: 18px;
    border-radius: 10px;
  }
  .inner-hero-copy h1 {
    font-size: 38px;
  }
  .inner-hero-media,
  .inner-hero-media img {
    min-height: 260px;
  }
  .primary-action,
  .secondary-action,
  .contact-form-panel button {
    width: 100%;
  }
  .about-stats,
  .journey-grid,
  .form-row,
  .verification-type-grid {
    grid-template-columns: 1fr;
  }
  .service-page-card {
    grid-template-columns: 1fr;
  }
  .service-page-image {
    min-height: 240px;
  }
  .service-page-copy,
  .verification-safety-copy,
  .about-cta {
    padding: 22px;
  }
  .career-values,
  .career-form-grid,
  .career-captcha-row,
  .contact-captcha-row {
    grid-template-columns: 1fr;
  }
  .career-application {
    padding: 22px;
  }
  .career-captcha-row label,
  .career-captcha-row button,
  .contact-captcha-row label,
  .contact-captcha-row button {
    width: 100%;
    max-width: none;
  }
  .about-intro,
  .mission-band,
  .contact-form-panel {
    padding: 22px;
  }
  .contact-info-card strong {
    font-size: 19px;
    overflow-wrap: anywhere;
  }
  .map-card {
    min-height: 230px;
    padding: 22px;
  }
  .payment-hero-copy {
    padding: 28px 18px;
    border-radius: 10px;
  }
  .payment-hero-copy h1 {
    font-size: 36px;
  }
  .payment-hero-card,
  .bank-panel,
  .upi-panel,
  .payment-proof-form,
  .cheque-panel {
    padding: 22px;
  }
  .bank-detail-row,
  .upi-id-box {
    grid-template-columns: 1fr auto;
  }
  .bank-detail-row span,
  .upi-id-box span {
    grid-column: 1 / -1;
  }
  .payment-steps {
    grid-template-columns: 1fr;
  }
  .payment-proof-form button,
  .cheque-panel a {
    width: 100%;
  }
  .qr-donate-card {
    width: min(220px, 100%);
  }
  .stories-hero > div,
  .stories-hero > aside,
  .stories-cta {
    padding: 22px;
  }
  .stories-hero h1 {
    font-size: 36px;
  }
  .current-story-grid {
    grid-template-columns: 1fr;
  }
  .current-story-image {
    height: 220px;
  }
  .story-funds {
    grid-template-columns: 1fr;
  }
  .donate-hero-copy,
  .donate-campaign,
  .donation-form-card,
  .donate-impact,
  .donate-bottom-cta {
    padding: 22px;
  }
  .donate-hero-copy h1 {
    font-size: 36px;
  }
  .donate-hero-image img {
    min-height: 250px;
  }
  .donate-tabs,
  .amount-grid,
  .donate-impact-grid {
    grid-template-columns: 1fr;
  }
  .donate-story-panel {
    min-height: 330px;
    padding: 22px;
  }
  .event-hero > div,
  .event-hero > aside,
  .event-about-panel,
  .event-register-panel,
  .event-detail-cta {
    padding: 22px;
  }
  .event-hero h1,
  .event-detail-copy h1 {
    font-size: 36px;
  }
  .event-grid,
  .event-detail-facts,
  .event-highlight-grid {
    grid-template-columns: 1fr;
  }
  .event-card-image {
    height: 220px;
  }
  .event-detail-image,
  .event-detail-image img {
    min-height: 260px;
  }
}

/* Collectify corporate adaptation */
.corporate-page {
  --brand-primary: #082b57;
  --brand-deep: #041c3c;
  --orange: #00ad63;
  --gold: #91cf3e;
  --soft: #f2faff;
  --text: #102a43;
  --border: rgba(17, 175, 227, 0.24);
}

.corporate-logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(135deg, #083b48, #0f8f68 68%, #91cf3e);
  box-shadow: 0 14px 30px rgba(5, 45, 56, 0.22);
}

.corporate-logo::before,
.corporate-logo::after,
.corporate-logo .sun-ray {
  display: none;
}

.corporate-logo .swastik {
  position: static;
  width: auto;
  height: auto;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  transform: none;
  text-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

.corporate-page .hero-kicker,
.corporate-page .section-heading h2,
.corporate-page .activities-heading h2,
.corporate-page .stories-heading h2,
.corporate-page .donation-heading h2 {
  letter-spacing: 0;
}

.corporate-page .hero-btn.donate,
.corporate-page .nav-donate,
.corporate-page .mission-cta a,
.corporate-page .csr-content a,
.corporate-page .all-activities {
  background: linear-gradient(135deg, #082b57, #00ad63);
}

.partner-options .partner-chip strong {
  font-size: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partner-chip p {
  min-height: 42px;
}

.corporate-page .tax-note {
  color: #274b6d;
}

/* Collectify logo palette alignment */
body.corporate-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(17, 175, 227, 0.09), transparent 24%),
    radial-gradient(circle at 92% 34%, rgba(145, 207, 62, 0.09), transparent 25%),
    #f4fbff;
}

body.corporate-page::before {
  background: linear-gradient(90deg, #11afe3, #00ad63, #91cf3e);
  box-shadow: 0 0 16px rgba(17, 175, 227, 0.45);
}

.corporate-page .site-header {
  border-bottom-color: #d5edf6;
  box-shadow: 0 3px 18px rgba(8, 43, 87, 0.08);
}

.corporate-page .site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(8, 43, 87, 0.14);
}

.corporate-page .main-nav a,
.corporate-page .nav-trigger,
.corporate-page .dropdown-menu a {
  color: #163656;
}

.corporate-page .main-nav > a.active,
.corporate-page .nav-trigger.active {
  color: #fff;
}

.corporate-page .main-nav > a::after,
.corporate-page .nav-trigger::after {
  background: linear-gradient(90deg, #11afe3, #91cf3e);
}

.corporate-page .dropdown-menu,
.corporate-page .dropdown-menu::before {
  border-color: #c7e9f5;
}

.corporate-page .dropdown-menu a:hover {
  color: #082b57;
  background: #eaf8fd;
}

@media (max-width: 1180px) {
  .corporate-page .main-nav > a.active,
  .corporate-page .nav-trigger.active {
    color: #082b57;
  }
}

.corporate-page .nav-donate,
.corporate-page .hero-btn.donate,
.corporate-page .mission-cta a,
.corporate-page .csr-content > a,
.corporate-page .footer-updated button {
  color: #fff;
  background: linear-gradient(135deg, #082b57 0%, #00ad63 100%);
  box-shadow: 0 12px 26px rgba(0, 173, 99, 0.22);
}

.corporate-page .hero-slider,
.corporate-page .pillars-section,
.corporate-page .sankalp-section,
.corporate-page .stories-trust-section,
.corporate-page .activities-section {
  background-color: #f4fbff;
}

.corporate-page .hero-section {
  background:
    radial-gradient(circle at 45% 50%, rgba(17, 175, 227, 0.15), transparent 30%),
    linear-gradient(90deg, #fff 0%, #f4fbff 50%, #dff5fb 100%);
}

.corporate-page .impact-card,
.corporate-page .sankalp-wrap,
.corporate-page .donation-impact,
.corporate-page .stories-wrap,
.corporate-page .trust-panel,
.corporate-page .csr-panel,
.corporate-page .donation-option,
.corporate-page .all-activities {
  border-color: #bfe8f5;
  box-shadow: 0 12px 30px rgba(8, 43, 87, 0.09);
}

.corporate-page .impact-item + .impact-item::before,
.corporate-page .trust-grid article {
  border-color: #d5edf6;
}

.corporate-page .impact-icon.cyan,
.corporate-page .impact-symbol.cyan { color: #00ad63; }
.corporate-page .impact-icon.saffron,
.corporate-page .impact-symbol.saffron { color: #11afe3; }
.corporate-page .impact-icon.green,
.corporate-page .impact-symbol.green { color: #91b936; }
.corporate-page .impact-icon.blue,
.corporate-page .impact-symbol.blue { color: #082b57; }

.corporate-page .section-heading span,
.corporate-page .donation-heading span,
.corporate-page .stories-heading span,
.corporate-page .activities-heading span {
  background: linear-gradient(90deg, transparent, #11afe3, #91cf3e);
}

.corporate-page .section-heading span:last-child,
.corporate-page .donation-heading span:last-child,
.corporate-page .stories-heading span:last-child,
.corporate-page .activities-heading span:last-child {
  background: linear-gradient(90deg, #91cf3e, #11afe3, transparent);
}

.corporate-page .section-heading span::after {
  background: #91cf3e;
}

.corporate-page .pillar-card.dharma .pillar-overlay {
  background: linear-gradient(90deg, rgba(8, 43, 87, 0.96), rgba(8, 43, 87, 0.72), rgba(8, 43, 87, 0.3));
}
.corporate-page .pillar-card.healthcare .pillar-overlay {
  background: linear-gradient(90deg, rgba(0, 123, 92, 0.95), rgba(0, 173, 99, 0.68), rgba(0, 80, 65, 0.28));
}
.corporate-page .pillar-card.gau .pillar-overlay {
  background: linear-gradient(90deg, rgba(8, 85, 125, 0.96), rgba(17, 175, 227, 0.68), rgba(8, 43, 87, 0.28));
}
.corporate-page .pillar-card.care .pillar-overlay {
  background: linear-gradient(90deg, rgba(4, 28, 60, 0.96), rgba(8, 43, 87, 0.7), rgba(0, 173, 99, 0.26));
}

.corporate-page .pillar-card,
.corporate-page .story-image,
.corporate-page .activity-card img {
  box-shadow: 0 12px 28px rgba(8, 43, 87, 0.18);
}

.corporate-page .pillar-icon,
.corporate-page .healthcare .pillar-icon,
.corporate-page .gau .pillar-icon,
.corporate-page .care .pillar-icon {
  color: #082b57;
}

.corporate-page .pillar-card a {
  color: #c8f083;
}

.corporate-page .sankalp-banner {
  background:
    linear-gradient(90deg, #041c3c 0%, #082b57 48%, rgba(0, 173, 99, 0.86) 100%),
    #041c3c;
}

.corporate-page .sankalp-copy h2,
.corporate-page .csr-content h2 {
  color: #b9ec68;
}

.corporate-page .sankalp-copy li::before {
  color: #041c3c;
  background: #91cf3e;
}

.corporate-page .fund-ring {
  background: conic-gradient(#11afe3 0deg 94deg, rgba(255,255,255,0.2) 94deg 122deg, #91cf3e 122deg 259deg, rgba(255,255,255,0.2) 259deg 360deg);
}

.corporate-page .fund-ring::before {
  background: #041c3c;
}

.corporate-page .mission-cta,
.corporate-page .thank-panel {
  background: #eaf8fd;
}

.corporate-page .donation-option i,
.corporate-page .donation-option svg,
.corporate-page .trust-grid svg {
  color: #0b8fbe;
}

.corporate-page .donation-option a,
.corporate-page .story-copy a,
.corporate-page .all-activities,
.corporate-page .thank-panel strong {
  color: #008a53;
}

.corporate-page .donation-option a {
  background: #f2faff;
  border-color: #9fdced;
}

.corporate-page .story-image span {
  background: rgba(4, 28, 60, 0.82);
  border-color: rgba(17, 175, 227, 0.72);
}

.corporate-page .csr-panel {
  background: #041c3c;
}

.corporate-page .csr-overlay {
  background: linear-gradient(90deg, rgba(4, 28, 60, 0.98) 0%, rgba(8, 43, 87, 0.92) 48%, rgba(0, 173, 99, 0.28) 100%);
}

.corporate-page .site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(17, 175, 227, 0.18), transparent 32%),
    linear-gradient(135deg, #03162f 0%, #082b57 54%, #004f4d 100%);
}

.corporate-page .footer-brand::after,
.corporate-page .footer-links::after,
.corporate-page .footer-contact::after,
.corporate-page .footer-updated::after {
  background: rgba(17, 175, 227, 0.24);
}

.corporate-page .footer-brand p,
.corporate-page .footer-main h2,
.corporate-page .footer-links a:hover,
.corporate-page .footer-contact svg {
  color: #b9ec68;
}

.corporate-page .footer-socials a:hover {
  color: #041c3c;
  background: #91cf3e;
  border-color: #91cf3e;
}

.corporate-page .footer-updated form,
.corporate-page .qr-box {
  border-color: rgba(17, 175, 227, 0.55);
}

.corporate-page .footer-bottom {
  background: rgba(2, 16, 36, 0.78);
  border-top-color: rgba(17, 175, 227, 0.24);
}

.corporate-page .footer-cin,
.corporate-page .footer-bottom strong {
  color: #dff6b7;
}

.corporate-page .fund-ring span {
  font-size: 38px;
}

.corporate-page .thank-panel strong,
.corporate-page .footer-symbol,
.corporate-page .footer-lotus {
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .corporate-logo {
    width: 62px;
    height: 62px;
    border-radius: 15px;
  }

  .corporate-logo .swastik {
    font-size: 34px;
  }
}

/* Unified public-site typography */
body,
body * {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Page-level headings and descriptions reduced by approximately 20%. */
.hero-content h1 {
  font-size: clamp(40px, 3.9vw, 56px);
  line-height: 1.02;
}

.hero-description {
  font-size: 13.6px;
  line-height: 1.55;
}

.inner-hero-copy h1 {
  font-size: clamp(35px, 4.4vw, 62px);
  line-height: 1.04;
}

.inner-hero-copy > span {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
}

.legal-hero h1 {
  font-size: clamp(29px, 4vw, 50px);
  line-height: 1.04;
}

.legal-hero > p:not(.section-kicker) {
  font-size: 12px;
}

@media (max-width: 620px) {
  .hero-content h1 { font-size: clamp(34px, 9.6vw, 48px); }
  .hero-description { font-size: 13px; }
  .inner-hero-copy h1 { font-size: 30px; }
  .inner-hero-copy > span { font-size: 13px; }
}
