@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --main-color: #69330d;
  --accent: #d59b30;
  --accent-dark: #de8900;
  --accent-soft: #fff7dd;
  --border-soft: #f0f0f0;
}

* {
  box-sizing: border-box;
}

/* === MUSIC TOGGLE BUTTON === */
.music-toggle {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: var(--accent);
  /* ACCSF Gold */
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: background 0.25s ease, transform 0.25s ease;
}

.music-toggle:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* Wave bars container */
.wave-bars {
  display: flex;
  gap: 3px;
}

.wave-bars span {
  width: 4px;
  height: 10px;
  background: #111;
  border-radius: 4px;
  animation: wave 1s ease-in-out infinite;
  opacity: 0.8;
}

/* Individual bar delays */
.wave-bars span:nth-child(1) {
  animation-delay: 0s;
}

.wave-bars span:nth-child(2) {
  animation-delay: 0.25s;
}

.wave-bars span:nth-child(3) {
  animation-delay: 0.5s;
}

/* Wave animation */
@keyframes wave {
  0% {
    height: 10px;
  }

  50% {
    height: 22px;
  }

  100% {
    height: 10px;
  }
}

/* Pause animation when music is off */
.wave-bars.paused span {
  animation-play-state: paused;
  opacity: 0.35;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

html,
body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #f4f1eb;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
.site-header {
  border-bottom: 1px solid #f5f5f5;
  background-color: #ffffffcc;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 20;
  padding: 20px 5px;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Main text */
.logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Motto (cursive) */
.logo-motto {
  font-family: "Great Vibes", cursive;
  font-size: 1.05rem;
  color: #444;
  margin-top: 6px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  color: var(--accent-dark);
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-wrap img {
  height: 50px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: #333;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  background-color: #000;
  transform: translateY(-1px);
}

/* MOBILE ICON */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

/* --------------------------------------------------
   MOBILE NAV
-------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mobile-logo-wrap img {
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.mobile-logo-wrap .logo-motto {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* CLOSE BUTTON */
.close-mobile {
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0;
}

/* MENU LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links a {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05rem;
  text-align: left;
}

/* CTA BUTTONS */
.mobile-cta-wrap {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.mobile-cta {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.mobile-cta.primary {
  background: #111;
  color: #fff;
}

.mobile-cta.secondary {
  background: #f5f5f5;
  color: #111;
}

/* MOBILE FOOTER */
.mobile-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

/* DESKTOP DROPDOWN */
.nav-item {
  position: relative;
}

.nav-item > button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  font-size: 0.92rem;
  cursor: pointer;
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  background: #fff;
  padding: 12px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  min-width: 220px;
  animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu {
  pointer-events: auto;
  top: 100%;
  margin-top: 0;
}

.dropdown-menu a {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.dropdown-menu a:hover {
  background: #fafafa;
}

/* MOBILE ACCORDION */
.mobile-group {
  border-bottom: 1px solid #eee;
}

.mobile-accordion {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-panel a {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-group.active .mobile-panel {
  max-height: 500px;
  /* large enough to fit all children */
  opacity: 1;
}

.mobile-group.active .mobile-accordion .material-icons-outlined {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

/* HERO
      -------------------------------------------------- */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  --hero-bg: url("/assets/images/arts.png");
  --hero-bg-next: url("/assets/images/arts1.jpg");
  min-height: 100vh;
}

/* world map background */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: -1;
}

.hero::before {
  background-image: var(--hero-bg);
  opacity: 0.15;
}

.hero::after {
  background-image: var(--hero-bg-next);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  line-height: 1.5;
  margin: 0 0 18px;
}

.hero-title span.highlight {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(
    to top,
    var(--accent-soft) 35%,
    transparent 35%
  );
  font-weight: 700;
}

.hero-body {
  font-size: clamp(0.92rem, 1vw + 0.7rem, 1rem);
  line-height: 1.6;
  max-width: 100%;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-size: 0.92rem;
  font-weight: 500;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost::after {
  content: "+";
  font-size: 1.05rem;
  transform: translateY(-1px);
}

.btn-ghost:hover {
  color: #000;
}

/* Right side: Africa + stat */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.africa-stack {
  position: relative;
  width: min(500px, 100vw);
  /* bigger Africa */
  max-width: 100%;
  aspect-ratio: 3 / 4;
}

/* AFRICA IMAGE MASK */
.africa-photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/beautiful-woman-night-carnival-portrait.jpg");
  /* <--- your photo */
  background-size: cover;
  background-position: center;
  /* Use SVG silhouette of Africa as mask */
  -webkit-mask-image: url("/assets/images/africa-continent-svgrepo-com.svg");
  /* <--- Africa shape */
  mask-image: url("/assets/images/africa-continent-svgrepo-com.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* subtle shadow behind the shape so it feels cut-out */
.africa-photo::after {
  content: "";
  position: absolute;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.18),
    transparent 60%
  );
  z-index: -1;
}

.hero-stat {
  font-family: "Playfair Display", serif;
  text-align: left;
  max-width: 120px;
}

.hero-stat-number {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FEATURES ROW
      -------------------------------------------------- */
.hero-features {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #f0e3b6;
  background-color: #fffaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.why-accsf {
  background: #fff;
  padding: 3rem 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* LEFT COLLAGE */
.why-images {
  position: relative;
  width: 100%;
  height: 520px;
  max-width: 100%;
  transform: scale(1);
  transform-origin: top left;
}

.img {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EXACT POSITIONS (as the reference) */
.img-1 {
  width: 170px;
  height: 170px;
  top: 0;
  left: 0;
}

.img-2 {
  width: 260px;
  height: 260px;
  top: 40px;
  left: 150px;
  z-index: 1;
}

.img-3 {
  width: 220px;
  height: 250px;
  top: 260px;
  left: 20px;
  z-index: 2;
}

.img-4 {
  width: 240px;
  height: 180px;
  top: 260px;
  left: 260px;
  z-index: 2;
}

/* BRUSH STROKES BEHIND IMAGES */
.img-2::before,
.img-3::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

/* RIGHT CONTENT */
.why-text {
  max-width: 480px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.prelaunch-banner {
  position: relative;
  width: 100%;
  padding: 3rem 0 0;
}

.banner-bg {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 20px;
}

.banner-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.banner-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Primary CTA */
.btn-donate {
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #111;
  font-weight: 500;
  transition: 0.25s ease;
  font-size: 0.92rem;
}

.btn-donate:hover {
  background: var(--accent);
}

/* Secondary CTA */
.btn-ghost-light {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.25s ease;
  font-size: 0.9rem;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.impact-band {
  position: relative;
  padding: 72px 0;
}

/* Typography helpers */
.impact-heading,
.impact-ribbon-title,
.impact-photo-title {
  font-family: "Playfair Display", serif;
}

.impact-split {
  overflow: hidden;
}

.impact-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(32, 26, 18, 0.05) 0%,
    rgba(0, 0, 0, 0.02) 20%,
    rgba(234, 194, 88, 0.2) 55%,
    rgba(9, 87, 60, 0.18) 100%
  );
  z-index: -1;
}

.impact-split-inner {
  position: relative;
}

.impact-pill-labels {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-pill-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.impact-heading {
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.impact-body {
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.impact-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.impact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.impact-card h3 {
  font-size: 0.98rem;
  margin: 0 0 8px;
}

.impact-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.impact-actions {
  margin-top: 4px;
}

/* FOOTER BASE */
.accsf-footer {
  background: #111;
  color: #eee;
  padding-top: 40px;
  border-top: 1px solid #222;
  font-family: "Inter", sans-serif;
}

/* TOP PATTERN BAR */

/* GRID LAYOUT */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* LOGO */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

/* GENERAL TEXT */
.footer-text {
  color: #ccc;
  line-height: 1.6;
  margin: 10px 0 20px;
}

.footer-text.small {
  font-size: 0.9rem;
}

/* TITLES */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #eac258;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  background: #222;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s;
}

.footer-socials a:hover {
  background: #333;
  color: #eac258;
}

/* NEWSLETTER */
.footer-newsletter {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 10px 18px;
  background: #eac258;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* DONATE BUTTON */
.donate-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: #eac258;
  color: #111;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom p:last-child {
  margin-top: 6px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .site-logo {
    height: 85px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-pattern {
    height: 50px;
  }
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 820px) {
  .impact-columns {
    grid-template-columns: 1fr;
  }

  .impact-split-inner {
    text-align: left;
  }

  .impact-photo-inner {
    padding: 56px 24px;
  }
}

@media (max-width: 640px) {
  .impact-ribbon-header {
    flex-direction: column;
    gap: 8px;
  }

  .impact-ribbon-title::before {
    inset: 65% -4px -3px -4px;
  }

  .impact-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.4)
    );
  }

  .impact-photo-inner {
    padding: 48px 20px;
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .banner-bg {
    height: 380px;
  }

  .banner-content h2 {
    font-size: 1.7rem;
  }

  .banner-actions {
    flex-direction: column;
  }

  .btn-donate,
  .btn-ghost-light {
    width: 100%;
    text-align: center;
  }
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .why-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .why-accsf .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 970px) {
  .why-images {
    transform: scale(0.95);
    height: 520px;
    width: 100%;
  }
}

@media (max-width: 930px) {
  .why-images {
    transform: scale(0.9);
    height: 520px;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .why-images {
    transform: scale(1);
    height: 520px;
  }
}

@media (max-width: 620px) {
  .why-images {
    transform: scale(1);
    height: 520px;
  }
}

@media (max-width: 480px) {
  .why-images {
    transform: scale(0.85);
    height: 520px;
  }

  .why-text {
    margin-top: -5rem;
  }
}

@media (max-width: 450px) {
  .why-images {
    transform: scale(0.8);
    height: 520px;
  }

  .why-text {
    margin-top: -5rem;
  }

  .hero-eyebrow {
    text-align: center;
  }
}

@media (max-width: 414px) {
  .why-images {
    transform: scale(0.75);
    height: 520px;
  }

  .why-text {
    margin-top: -7rem;
  }
}

@media (max-width: 375px) {
  .why-images {
    transform: scale(0.65);
    height: 520px;
  }

  .why-text {
    margin-top: -10rem;
  }
}

@media (max-width: 350px) {
  .why-images {
    transform: scale(0.6);
    height: 520px;
  }

  .why-text {
    margin-top: -12rem;
  }
}

/* RESPONSIVE
      -------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 40px 0 50px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 4vw + 1rem, 2.6rem);
    line-height: 1.15;
  }

  .hero-body {
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-visual {
    justify-content: center;
  }

  .africa-stack {
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .hero::before {
    background-size: 115% auto;
    background-position: right center;
  }
}

@media (max-width: 820px) {
  .africa-photo {
    transform: scale(1.4);
    transform-origin: center;
  }

  .hero-visual {
    gap: 28px;
    margin-top: 8rem;
  }
}

@media (max-width: 600px) {
  .africa-photo {
    transform: scale(1.45);
  }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-top: 5rem;
  }
}

@media (max-width: 440px) {
  .africa-photo {
    transform: scale(1.35);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    /* simple mobile behaviour, no JS */
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw + 1rem, 2.2rem);
  }

  .hero-body {
    font-size: 0.92rem;
  }

  .hero-actions button {
    width: 100%;
    justify-content: center;
  }

  .africa-stack {
    width: 90%;
    max-width: 320px;
  }
}

/* ABOUT PAGE
      -------------------------------------------------- */

/* ----------------------------------------
   ABOUT PAGE HERO
---------------------------------------- */
/* ----------------------------------------
   ABOUT HERO
---------------------------------------- */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: visible;
}

/* Background image */
.about-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1120px;
}

.about-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-hero-content .highlight {
  background: linear-gradient(to top, #eac258 22%, transparent 22%);
}

.about-subtext {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  opacity: 0.92;
}

/* ----------------------------------------
   CARDS SECTION (half inside hero)
---------------------------------------- */
.about-cards-section {
  padding: 100px 0 10px;
  position: relative;
  z-index: 2;
}

/* Pull cards upward */
.about-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-top: -180px;
}

/* Card styles */
.hero-card {
  background: #3d2f22;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
  color: #fff;
}

.hero-card p,
.hero-card h3,
.hero-card a {
  color: #fff;
}

.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 14px;
  line-height: 1.55;
}

.hero-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c89b2c;
}

.hero-card a:hover {
  color: white;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

/* SECTION WRAPPER */
.about-section {
  padding: 80px 0;
  background: #fff;
}

/* GRID LAYOUT */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.about-tag {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b08968;
  display: inline-block;
}

.about-title {
  font-size: clamp(1.4rem, 1.8vw + 0.4rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1c2b2d;
  margin-bottom: 18px;
  max-width: 600px;
  font-family: "Playfair Display", serif;
}

.about-text {
  line-height: 1.65;
  font-size: clamp(0.92rem, 1vw + 0.7rem, 1rem);
  color: #4b4b4b;
  margin-bottom: 16px;
  max-width: 100%;
}

/* RIGHT IMAGE */
.about-right .about-img {
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15); */
}

.about-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pillars .title {
  font-family: "Playfair Display", serif;
  margin-bottom: -1em;
  font-size: 2rem;
  padding: 0 10%;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-right {
    order: -1;
  }

  .about-title {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .about-hero-cards {
    grid-template-columns: 1fr;
    margin-top: -80px;
  }

  .hero-card {
    padding: 22px;
  }
}

/* FAQ  */

/* WRAPPER */
.faq-wrapper {
  max-width: 1120px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding: 0 24px;
}

/* LEFT INTRO */
.faq-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 12px 0;
  font-family: "Playfair Display", serif;
}

.faq-desc {
  max-width: 480px;
  line-height: 1.65;
  color: #555;
}

/* RIGHT SECTION */
.faq-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.faq-tab {
  background: #f5f5f5;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.faq-tab.active {
  background: #111;
  color: #fff;
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

/* ACCORDION */
.faq-item {
  border-bottom: 1px solid #eaeaea;
  padding: 16px 0;
}

.faq-question {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 0;
  line-height: 1.5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  line-height: 1.6;
  color: #555;
  transition: 0.35s ease;
  margin-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.open .material-icons-outlined {
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------
   SUPPORT HERO SECTION
-------------------------------------------------- */
.support-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Background */
.support-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark gradient overlay */
.support-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

/* Content */
.support-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.support-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 1.8vw + 1rem, 3.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.support-lead-text {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 34px;
  max-width: 700px;
}

/* CTA buttons */
.support-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Responsive */
@media (max-width: 780px) {
  .support-hero {
    padding: 100px 0 120px;
  }

  .support-cta {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* SUPPORT PAGE WRAP */
.support-wrap {
  background: #fff;
}

/* Generic text helpers reused here */
.support-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #8b7f5b;
  margin-bottom: 10px;
}

.support-kicker.light {
  color: #f3e4b0;
}

.support-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.3vw + 1rem, 2.6rem);
  line-height: 1.25;
  margin: 0 0 14px;
}

.support-lead {
  max-width: 640px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5a5140;
}

.support-lead.small {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ========== IMPACT GRID ========== */

.support-impact {
  padding: 70px 0 50px;
}

.support-impact-header {
  margin-bottom: 30px;
}

.support-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.impact-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(235, 217, 163, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* subtle African pattern overlay (use your pattern image) */
.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/african-pattern.png");
  background-size: 260px;
  background-repeat: repeat;
  opacity: 0.08;
  mix-blend-mode: multiply;
  z-index: -1;
}

.impact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: radial-gradient(circle at 20% 0%, #fdf6d2, #eac258);
}

.impact-icon .material-icons-outlined {
  font-size: 22px;
  color: #513c10;
}

.impact-card h3 {
  font-size: 0.96rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.impact-card p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #5c5344;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.08);
  border-color: #eac258;
}

/* ========== WAYS TO SUPPORT ========== */

.support-methods {
  padding: 40px 0 70px;
}

.support-methods-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Accordion */
.support-accordion {
  padding-right: 10px;
}

.accordion-list {
  margin-top: 22px;
  border-radius: 18px;
  border: 1px solid rgba(223, 211, 176, 0.9);
  background: #fdfaf2;
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(223, 211, 176, 0.8);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.accordion-label {
  font-size: 0.94rem;
  font-weight: 600;
  color: #2d2618;
}

.accordion-pill {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(234, 194, 88, 0.16);
  color: #7a5a0c;
}

.accordion-icon {
  transition: transform 0.25s ease;
  font-size: 20px;
  color: #75674e;
}

.accordion-panel {
  padding: 0 18px 14px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #574d3c;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

/* Open state */
.accordion-item.is-open .accordion-panel {
  opacity: 1;
  max-height: 260px;
  /* large enough for content */
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

/* Right column: highlight cards */

.support-highlight {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.support-highlight-card {
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(223, 211, 176, 0.9);
  background: #fdfaf2;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
}

.support-highlight-card.primary {
  background: radial-gradient(circle at 0% 0%, #fdf6d4, #f5e4bc);
}

.support-highlight-card.overlay {
  position: relative;
  color: #fdfaf2;
  background: #17120b;
}

.support-highlight-card.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: url("/assets/images/african-pattern.png"); */
  background-size: 260px;
  background-repeat: repeat;
  opacity: 0.2;
  mix-blend-mode: screen;
  z-index: 0;
}

.support-highlight-card.overlay h4,
.support-highlight-card.overlay p {
  position: relative;
  z-index: 1;
}

.support-highlight-card.muted {
  background: #f5efe0;
}

.support-highlight-card h3,
.support-highlight-card h4 {
  font-size: 1rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.support-highlight-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4c4335;
}

.support-highlight-card.overlay p {
  color: #f5f0e1;
}

.support-btn {
  margin-top: 10px;
}

.support-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: #7a5a0c;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

/* Reuse your existing primary & ghost buttons, but ensure ghost works on light bg */
.btn-ghost.secondary {
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid #f3e1a3;
  background: transparent;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

@media (max-width: 960px) {
  .support-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-methods-inner {
    grid-template-columns: 1fr;
  }

  .support-highlight {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .support-highlight-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 640px) {
  .support-impact-grid {
    grid-template-columns: 1fr;
  }

  .support-methods-inner {
    gap: 30px;
  }

  .accordion-panel {
    font-size: 0.86rem;
  }
}

/* GOVERNANCE PAGE
   ============================== */

/* GOVERNANCE HERO WITH BACKGROUND IMAGE + DARK GRADIENT */
.gov-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.gov-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/tables.jpg");
  /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Gradient Overlay */
.gov-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 2;
}

/* CONTENT */
.gov-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1120px;
}

/* TAG */
.gov-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #f7e6b1;
  backdrop-filter: blur(4px);
  margin-bottom: 14px;
}

/* TITLE */
.gov-hero-title {
  font-family: "Libre Caslon Display", serif;
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 18px;
}

/* LEAD PARAGRAPH */
.gov-hero-lead {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f1e7d3;
}

.gov-clean {
  background: #fff;
  padding: 80px 0;
}

.gov-clean-status {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.gov-clean-status-left {
  max-width: 520px;
}

.gov-clean-status-left h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.gov-clean-status-left p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.gov-clean-status-right {
  display: flex;
  align-self: center;
  gap: 40px;
}

.gov-number .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.gov-number .label {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #555;
}

.gov-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 40px 0;
}

/* CARDS SECTION (matches reference) */
.gov-section-heading {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.gov-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.gov-card {
  padding-right: 10px;
}

.gov-icon {
  width: 46px;
  height: 46px;
  background: #f5f1e4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--accent);
}

.gov-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}

.gov-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .gov-clean-status {
    flex-direction: column;
  }

  .gov-clean-status-right {
    justify-content: flex-start;
  }

  .gov-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gov-clean-status-right {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: 100%;
  }

  .gov-clean-status-left {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 580px) {
  .gov-cards {
    grid-template-columns: 1fr;
  }
}

/* RESOURCES */

.gov-resources {
  padding: 50px 0 80px;
  background: #ffffff;
}

.gov-resources-header {
  max-width: 720px;
  margin-bottom: 26px;
}

.gov-resources-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin: 4px 0 10px;
}

.gov-resources-header p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5a5140;
}

/* ================================
   DOCUMENTS
================================ */
.gov-documents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.doc-card {
  padding: 18px;
  background: #fff;
  border: 1px solid #e7dfc9;
  border-radius: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .gov-main-grid {
    grid-template-columns: 1fr;
  }

  .gov-resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gov-documents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .gov-hero {
    padding: 70px 0 50px;
  }

  .gov-resources-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================== */
/* PARTNERSHIPS HERO — CLEAN, FINAL VERSION    */
/* =========================================== */

.partner-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;

  background-image: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35)
    ),
    url("/assets/images/partner.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}

/* Content Wrapper */
.partner-hero-inner {
  padding: 0 24px;
  max-width: 1120px;

  /* Shift slightly to the right on desktop */
  margin-left: 8%;
}

/* Title */
.partner-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 2vw + 1rem, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Description */
.partner-lead {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 40px;
}

.outline {
  color: #fff;
}

.outline:hover {
  color: var(--accent);
}

/* =========================================== */
/* RESPONSIVE                                   */
/* =========================================== */

@media (max-width: 768px) {
  .partner-hero-inner {
    margin-left: 0;
    /* Reset shift */
    margin-right: 0;
    /* Center align text */
    max-width: 100%;
  }

  .partner-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========================================= */
/* EMBASSIES — DIPLOMATIC SHOWCASE STRIP     */
/* ========================================= */

.embassy-new {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.embassy-new-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* IMAGE PANEL */
.embassy-image-panel {
  height: 360px;
  background: url("/assets/images/lobby.jpg") center/cover no-repeat;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.embassy-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(10, 10, 10, 0.6), rgba(0, 0, 0, 0.1));
  opacity: 0.18;
}

/* FLOATING CARD */
.embassy-content-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 980px;
  margin: -80px auto 0;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.embassy-header {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  color: #111;
  margin-bottom: 15px;
}

.embassy-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}

/* GRID */
.embassy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 35px;
}

.embassy-item h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: #000;
}

.embassy-item p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* HIGHLIGHT BOX */
.embassy-highlight-new {
  margin-top: 25px;
  background: rgba(234, 194, 88, 0.16);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  font-size: 1rem;
  line-height: 1.55;
  border-radius: 6px;
}

/* MOBILE */
@media (max-width: 750px) {
  .embassy-content-card {
    margin-top: -60px;
    padding: 30px;
  }

  .embassy-grid {
    grid-template-columns: 1fr;
  }

  .embassy-header {
    font-size: 2.2rem;
  }
}

/* =========================================== */
/* GLOBAL CONSTELLATION SECTION                */
/* =========================================== */

.intl-constellation {
  position: relative;
  padding: 50px 0;
  color: #121212;
  overflow: hidden;
}

/* Abstract constellation background */
.intl-constellation-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(255, 255, 255, 0.06),
      transparent 70%
    ),
    url("/assets/images/network.jpg");

  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: brightness(1.15);
  pointer-events: none;
  transform: rotate(180deg);
}

/* Main content */
.intl-constellation-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.intl-constellation-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 1.8vw + 1rem, 3.2rem);
  margin-bottom: 20px;
}

.intl-constellation-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 45px;
  opacity: 0.9;
  max-width: 620px;
}

/* ============================= */
/* DESKTOP — clean vertical line */
/* ============================= */

.intl-constellation-points {
  display: grid;
  gap: 40px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.track {
  position: relative;
  width: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 0;
}

/* connecting line—desktop only */
.point:not(:last-child) .track::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 2px;
  height: calc(100% + 28px);
  background: linear-gradient(to bottom, var(--accent), rgba(234, 194, 88, 0));
}

/* ============================= */
/* MOBILE — clean centered dots  */
/* ============================= */

@media (max-width: 700px) {
  .point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* hide ALL desktop connector lines */

  /* center the dot */
  .track {
    display: flex;
    justify-content: center;
    width: auto;
    position: relative;
    margin-bottom: 8px;
  }

  .dot {
    position: static;
    margin: 0 auto;
  }

  /* ⭐ EXTRA LINE ONLY UNDER LAST DOT */
  .point:last-child .track::after {
    display: block;
    content: "";
    width: 2px;
    position: absolute;
    height: 52px;
    background: linear-gradient(
      to bottom,
      var(--accent),
      rgba(234, 194, 88, 0)
    );
    margin: 0 auto;
  }

  .point:not(:last-child) .track::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 5px;
    width: 2px;
    height: calc(100% + 28px);
    background: linear-gradient(
      to bottom,
      var(--accent),
      rgba(234, 194, 88, 0)
    );
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .intl-constellation-inner {
    text-align: center;
  }

  .intl-constellation-intro {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======================================= */
/* MUSEUMS SECTION — IMAGE + GRID + ACCORDION */
/* ======================================= */

.museums-section {
  padding: 50px 0;
  background: #fff;
}

.museums-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: 1120px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 24px;
  align-items: center;
  position: relative;
}

/* IMAGE PANEL */
.museums-image {
  background: url("/assets/images/art\ wall.jpg") center/cover no-repeat;
  height: 500px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* CONTENT */
.museums-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  margin-bottom: 30px;
}

.museums-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.m-item h4 {
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 6px;
}

.m-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Medium screens (tablet) */
@media (max-width: 992px) {
  .museums-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}

/* Small screens (mobile) */
@media (max-width: 600px) {
  .museums-container {
    gap: 30px;
    padding: 0 16px;
  }
}

/* =============================== */
/* VERTICAL TIMELINE (White BG)    */
/* =============================== */

.timeline-section {
  background: #ffffff;
}

.timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Central vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
}

/* Each item wrapper */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 0;
}

/* Dot on the center line */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 45px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(234, 194, 88, 0.7);
  z-index: 10;
}

/* LEFT alignment */
.timeline-item.left {
  left: 0;
  text-align: left;
}

.timeline-item.left::before {
  right: -8px;
}

/* RIGHT alignment */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item.right::before {
  left: -8px;
}

/* CONTENT BOX */
.timeline-content {
  background: #fff;
  padding: 22px 28px;
  margin-right: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.c-right {
  margin-left: 10px;
  border-right: 2px solid var(--accent);
}

.c-left {
  border-left: 2px solid var(--accent);
}

.timeline-content h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #111;
}

.timeline-content p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

.timeline-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-content li {
  margin-bottom: 8px;
  padding-left: 16px;
  font-size: 0.9rem;
  position: relative;
  color: #444;
}

.timeline-content li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

/* =============================== */
/* RESPONSIVE                      */
/* =============================== */

@media (max-width: 780px) {
  .timeline::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
    padding-left: 28px;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 0;
    transform: translateX(-50%);
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }
}

/* programs PAGE
      -------------------------------------------------- */

/* ----------------------------------------
   programs PAGE HERO
---------------------------------------- */
/* ----------------------------------------
   programs HERO
---------------------------------------- */
.programs-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* Background image */
.programs-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.programs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.programs-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1120px;
  /* margin-top: -8rem; */
}

.programs-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.programs-hero-content .highlight {
  background: linear-gradient(to top, #eac258 22%, transparent 22%);
}

.programs-subtext {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 720px;
  opacity: 0.92;
}

.ini {
  color: #fff;
}

.ini:hover {
  color: white;
}

.arts-exhibitions {
  padding: 90px 0;
  background: #ffffff;
}

.ae-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 46px;
  align-items: flex-start;
}

/* LEFT SIDE */
.ae-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a6a15;
  margin-bottom: 10px;
}

.ae-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2vw + 1rem, 2.4rem);
  margin: 0 0 16px;
  color: #222;
  line-height: 1.25;
}

.ae-text {
  font-size: 1.06rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 16px;
  max-width: 95%;
}

/* RIGHT BOX (Overlapping Section) */
.ae-box {
  width: 100%;
  height: 550px;
  border-radius: 5px;
  margin-top: -150px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Slider wrapper */
.ae-fade-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slides */
.ae-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

/* Visible slide */
.ae-slide.active {
  opacity: 1;
}

/* MOBILE FIX — No overlap */
@media (max-width: 950px) {
  .ae-box {
    margin-top: 20px;
    height: 260px;
  }
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .ae-container {
    grid-template-columns: 1fr;
  }
}

.performance-section {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.perf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark diagonal overlay */
.perf-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    108deg,
    rgba(105, 51, 13, 0.82) 0%,
    /* main-color (strong) */ rgba(105, 51, 13, 0.7) 22%,
    /* smooth fade */ rgba(105, 51, 13, 0.55) 38%,
    /* richer mid point */ rgba(0, 0, 0, 0.25) 65%,
    /* blend into shadow */ rgba(0, 0, 0, 0.05) 85%,
    /* near clear */ rgba(0, 0, 0, 0) 100% /* fully transparent */
  );
}

/* Inner content layout */
.perf-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  align-items: center;
}

/* LEFT SIDE */
.perf-left {
  display: flex;
  justify-content: center;
}

.play-btn {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.33);
}

.play-icon {
  font-size: 2.2rem;
  color: white;
  margin-left: 4px;
}

/* RIGHT SIDE — TEXT */
.perf-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #eac258;
}

.perf-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 1.6vw + 1rem, 2.4rem);
  color: #fff;
  margin: 10px 0 18px;
}

.perf-text {
  font-size: 1.05rem;
  color: #e6e6e6;
  margin-bottom: 18px;
  max-width: 520px;
}

.perf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perf-list li {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}

.perf-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #eac258;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .performance-section {
    height: auto;
    padding: 60px 0;
  }

  .perf-overlay {
    clip-path: none;
    background: rgba(0, 0, 0, 0.6);
  }

  .perf-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .perf-left {
    margin-bottom: 22px;
  }

  .perf-title,
  .perf-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.edu-youth {
  padding: 100px 0;
  background: #ffffff;
}

.edu-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* HEADINGS */
.edu-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 12px;
  color: #222;
}

.edu-sub {
  max-width: 760px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* GRID */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.edu-card {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;

  display: flex;
  align-items: flex-end;

  padding: 0;
  border: none;

  transition: 0.35s ease;
  background-size: cover;
  background-position: center;
}

/* Set background from data attribute */
.edu-card {
  background-image: var(--card-img);
}

/* Overlay gradient */
.edu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    /* increased → soft dark tint */ rgba(0, 0, 0, 0.75)
      /* increased → darker bottom */
  );
  opacity: 0.85;
  /* <<< reduce this to control image visibility */
  transition: 0.35s ease;
}

.edu-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(105, 51, 13, 0.25);
  /* your --main-color with opacity */
  z-index: 2;
}

/* Content block */
.edu-content {
  position: relative;
  padding: 24px;
  z-index: 3;
}

/* Icon */
.edu-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.material-symbols-outlined {
  font-size: 26px;
  color: #fff;
}

/* Titles */
.edu-card-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.edu-card-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #fff;
  max-width: 90%;
  text-align: left;
}

/* Hover */
.edu-card:hover .edu-overlay {
  opacity: 0.75;
}

.edu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .edu-card {
    height: 230px;
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 26px;
  color: #fff;
  /* matches your brand main-color */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .edu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .edu-card {
    text-align: center;
  }

  .edu-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.community-mosaic {
  padding: 100px 0;
  background: #fff;
}

.cm-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 0 20px;
}

.cm-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.cm-content {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}

.cm-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 16px;
}

.cm-text {
  color: #555;
  margin-bottom: 20px;
}

.cm-list {
  list-style: none;
  padding: 0;
}

.cm-list li {
  margin-bottom: 10px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .cm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.women-leadership {
  padding: 90px 0;
  background: #fff;
}

/* ROW LAYOUT */
.wl-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 100px;
}

.wl-row.reverse {
  grid-template-columns: 1fr 1.4fr;
}

/* TEXT AREA */
.wl-text {
  padding: 10px 0;
}

.wl-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
}

.wl-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 1.7vw + 1rem, 2rem);
  color: #222;
  margin: 10px 0 20px;
}

.wl-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 16px;
  max-width: 90%;
}

/* LIST */
.wl-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.wl-list li {
  margin-bottom: 12px;
  padding-left: 14px;
  position: relative;
  color: #333;
  line-height: 1.55;
}

.wl-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-dark);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* IMAGE AREA */
.wl-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 320px;
}

/* GOAL SENTENCE */
.wl-goal {
  margin-top: 18px;
  color: #444;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wl-row,
  .wl-row.reverse {
    grid-template-columns: 1fr;
  }

  .wl-image img {
    max-height: none;
  }
}

.giveback-hero {
  position: relative;
  padding: 140px 20px;
  background: url("/assets/images/give1.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

/* Dark gradient overlay */
.giveback-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.giveback-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.giveback-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.giveback-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA buttons */
.giveback-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btns-primary,
.btns-light {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btns-primary {
  background: #ffffff;
  color: #000;
}

.btns-primary:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.btns-light {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btns-light:hover {
  background: rgba(255, 255, 255, 0.3);
}

.replica-section {
  background: #fff;
  padding: 80px 0;
  position: relative;

  /* faint vertical lines */
  background-image: linear-gradient(to right, #ececec 1px, transparent 1px);
  background-size: 140px 100%;
}

/* 2 main responsive columns */
.replica-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

/* LEFT COLUMN */
.replica-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-top-text {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #7a7a7a;
  margin-bottom: 18px;
}

.left-subtext {
  font-size: 0.98rem;
  color: #333;
  line-height: 1.55;
  margin-bottom: 40px;
}

.left-bottom-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* RIGHT COLUMN */
.right-headline {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
  line-height: 1.2;
  text-align: right;
font-family: "Playfair Display", serif;
}

/* Main large image */
.right-img-wrap {
  position: relative;
}

.right-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Overlapping textbox inside image */
.right-textbox {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  background: #fff;
  padding: 10px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.right-textbox ul {
  margin-top: 10px;
  padding-left: 20px;
}

.right-textbox li {
  margin-bottom: 10px;
  line-height: 1.55;
  color: #333;
  font-size: 0.9rem;
}

.right-textbox p {
  margin-bottom: 10px;
  font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .replica-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .right-textbox {
    position: relative;
    width: 100%;
    margin-top: -20px;
    box-shadow: none;
  }
}

.womenfund-section {
  background: #fff;
  padding: 90px 0;
  position: relative;

  /* soft vertical lines */
  background-image: linear-gradient(to right, #ebebeb 1px, transparent 1px);
  background-size: 140px 100%;
}

.womenfund-grid {
max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 40px;
}

/* COLUMN 1 */
.wf-col1 {
  grid-column: 1 / 2;
}

.wf-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  margin-bottom: 22px;
font-family: "Playfair Display", serif;
}

.wf-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 480px;
}

/* COLUMN 2 — small image */
.wf-small-img {
  grid-column: 2 / 3;
}

.wf-small-img img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* COLUMN 3 — small text aligned with small image */
.wf-side-text {
  grid-column: 3 / 4;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 260px;
}

/* LARGE IMAGE spanning col1 + col2 */
.wf-large-img {
  grid-column: 1 / 3;
}

.wf-large-img img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  margin-top: 20px;
}

/* Bottom right tiny label */
.wf-bottom-label {
  grid-column: 3 / 4;
  text-align: right;
  font-size: 0.85rem;
  color: #666;
  padding-top: 20px;
}

/* RESPONSIVE FIXED */
@media (max-width: 950px) {
  .womenfund-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Reset all columns */
  .wf-col1,
  .wf-small-img,
  .wf-side-text,
  .wf-large-img,
  .wf-bottom-label {
    grid-column: 1 / -1 !important;
  }

  /* Full width small text */
  .wf-side-text {
    max-width: 100%;
    text-align: left;
  }

  /* Large image full width + proper spacing */
  .wf-large-img img {
    margin-top: 0;
  }

  /* Bottom label alignment */
  .wf-bottom-label {
    text-align: left;
    padding-top: 0;
  }

  .womenfund-section {
    padding: 0 0 30px 0;
  }

  .replica-section {
    padding: 30px 0 30px 0;
  }
}

.artschange-section {
  background: #fff;
  padding: 90px 0;
  position: relative;

  /* soft vertical lines */
  background-image: linear-gradient(to right, #ebebeb 1px, transparent 1px);
  background-size: 140px 100%;
}

.artschange-grid {
max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* LEFT COLUMN */
.ac-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
font-family: "Playfair Display", serif;
}

.ac-lead {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 550px;
}

.ac-list {
  padding-left: 20px;
  line-height: 1.7;
}

.ac-list li {
  margin-bottom: 10px;
}

/* RIGHT COLUMN */
.ac-link-wrap {
  text-align: right;
  margin-bottom: 10px;
}

.ac-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #000;
}

.ac-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .artschange-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ac-link-wrap {
    text-align: left;
  }
}


.classroom-section {
    background: #fff;
    padding: 90px 0;
    position: relative;

    /* vertical soft lines */
    background-image: linear-gradient(to right, #ebebeb 1px, transparent 1px);
    background-size: 140px 100%;
}

.classroom-grid {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* LEFT COLUMN (image + link) */
.cl-link-wrap {
    text-align: left;
    margin-bottom: 10px;
}

.cl-link {
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #000;
}

.cl-image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

/* RIGHT COLUMN (text) */
.cl-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    font-family: "Playfair Display", serif;
}

.cl-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    max-width: 520px;
}

.cl-list {
    padding-left: 20px;
    line-height: 1.7;
}

.cl-list li {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .classroom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cl-link-wrap {
        text-align: left;
    }
}


.infos{
    padding: 0;
}

.text{
    font-size: 1rem !important;
}

.infos .doc-card{
    line-height: 1.5;
}


.events-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  color: #fff;
}

/* Slider background images */
.hero-slider {
  position: absolute;
  inset: 0;
}

.event-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.event-slide.active {
  opacity: 1;
}

/* Dark bottom fade like sample */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.664));
  z-index: 2;
}

/* Bottom content bar */
.hero-bottom {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1120px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-text h1 {
  font-size: 2.7rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0 0 8px;
}

.hero-text p {
  max-width: 580px;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dots .event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots .event-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    margin-top: 12px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}


.events-section {
  background: #fff;
}

.events-title {
  font-size: 2.7rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
  font-family: "Playfair Display", serif;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Stronger, cleaner shadow */
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 2px 20px rgba(0, 0, 0, 0.06);

  /* Soft border to define edges */
  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.event-content {
  padding: 20px 22px;
  flex: 1;
}

.event-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #27241d;
}

.event-content p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4b463f;
  margin-bottom: 18px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.event-date {
  text-align: center;
  line-height: 1;
}

.event-date .day {
  font-size: 2.3rem;
  font-weight: 700;
  color: #3b2b1d;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #6d604d;
}

.event-info {
  font-size: 0.82rem;
  color: #5a5348;
}

.event-btn {
  margin-top: 18px;
  width: 100%;
  padding: 10px 0;
  background: #eac258;
  border: none;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.3s;
}

.event-btn:hover {
  background: #d3a94b;
}


.future-programs {
  background: linear-gradient(to bottom,
        #ffffff,
        #faf8f3);;
  padding: 80px 10%;
}

.future-programs h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.fp-lead {
  font-size: 1.05rem;
  color: #6d604d;
  margin-bottom: 40px;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.fp-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(234, 194, 88, 0.22), transparent 60%);
  opacity: 0;
  transition: 0.3s ease;
}

.fp-card:hover::before {
  opacity: 1;
}

.fp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fp-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #3b2b1d;
  margin-bottom: 10px;
}

.fp-card p {
  font-size: 0.95rem;
  color: #6d645b;
  line-height: 1.45;
}

.accsf-contact {
  padding: 90px 10%;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  /* PURE WHITE ALWAYS */
  color: #222;
}

/* Header */
.contact-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.contact-intro .sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
}

.contact-intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 12px 0 10px;
}

.contact-intro .lead {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.accent-line {
  width: 70px;
  height: 3px;
  background: #eac258;
  margin: 25px auto 0;
  border-radius: 4px;
}

/* Grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Form Card */
.form-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form-card label {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 20px;
  display: block;
  color: #444;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  /* Still pure white */
  font-size: 0.95rem;
}

textarea {
  height: 130px;
  resize: none;
}

.submit-btn {
  margin-top: 22px;
  width: 100%;
  padding: 14px;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

/* Extra Contact Items */
.alt-contact {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.alt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.alt-item .material-icons-outlined {
  font-size: 20px;
  color: #111;
}

/* Right column */
.info-block {
  margin-bottom: 40px;
}

.info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
}

.info-block p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}

.info-block ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.info-block li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.info-block .material-icons-outlined {
  font-size: 20px;
  color: #eac258;
  margin-right: 8px;
}

.fund-hero {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.hero-box {
  position: relative;
  width: 100%;
  max-width: 1120px;
  padding: 60px 40px;
  background-image: linear-gradient(90deg, transparent 97%, #e6e6e6 97%),
    linear-gradient(transparent 97%, #e6e6e6 97%);
  background-size: 40px 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

/* FLOATING IMAGES */
.hero-img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  transition: transform .3s ease, width .3s ease, height .3s ease;
}

.img-top-left {
  top: -40px;
  left: -40px;
}

.img-bottom-right {
  bottom: -40px;
  right: -40px;
}

/* CENTER CONTENT */
.hero-center {
  text-align: center;
  max-width: 520px;
  z-index: 3;
}

.hero-center h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.hero-center p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 12px 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* OUTLINED BUTTON */
.btn-outline {
  border: 1px solid #ccc;
  color: #111;
  background: #fff;
  transition: all .5s ease;
}

.btn-outline:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

/* ============================
   📱 RESPONSIVENESS
================================ */

/* TABLET — Reduce floating image size */
@media (max-width: 1100px) {
  .hero-img {
    width: 200px;
    height: 260px;
  }

  .img-top-left {
    top: -30px;
    left: -30px;
  }

  .img-bottom-right {
    bottom: -30px;
    right: -30px;
  }
}

/* MOBILE — Stack images, remove overlapping */
@media (max-width: 900px) {

  .fund-hero {
      width: 100%;
      background: #ffffff;
      padding: 30px 0 80px 0;
      display: flex;
      justify-content: center;
    }

  .hero-box {
    padding: 40px 20px;
    min-height: unset;
    display: grid;
    place-items: center;
    gap: 20px;
  }

  .img-top-left,
  .img-bottom-right {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin: 0;
    width: 200px;
    height: 240px;
  }

  .hero-img {
    transform: none;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 600px) {

  .hero-center p {
    font-size: 0.95rem;
  }

  .hero-img {
    width: 170px;
    height: 210px;
  }
}

/* TINY MOBILE */
@media (max-width: 430px) {
  .hero-center h1 {
    font-size: 1.6rem;
  }

  .hero-img {
    width: 150px;
    height: 180px;
  }
}


/* SECTION WRAPPER */
.volunteer-section {
  padding: 50px 10%;
  background: #ffffff;
  text-align: center;
}

/* TOP PILL */
.volunteer-pill {
  display: inline-block;
  background: #f3f6f7;
  color: #111;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 500;
}

/* MAIN HEADING */
.volunteer-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  font-family: "Playfair Display", serif;
}

/* GRID */
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* CARD */
.vol-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 100%;
  border: 1px solid #efefef;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform .3s ease;
}

.vol-card:hover {
  transform: translateY(-4px);
}

/* ICON BOX */
.vol-icon {
  width: 50px;
  height: 50px;
  background: #f9f9f9;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.vol-icon .material-icons-outlined {
  font-size: 25px;
  color: var(--accent-dark, #eac258);
}

/* TEXT */
.vol-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.vol-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .volunteer-title {
    font-size: 1.6rem;
  }

    .volunteer-section {
      padding: 0 30px 10%;
      background: #ffffff;
      text-align: center;
    }
}


.roles-section {
  padding: 50px 10%;
  background: #ffffff;
  text-align: center;
}

.roles-title {
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.roles-lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 20px;
}

@media (max-width: 800px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}

/* ROLE ITEM */
.role-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.role-icon {
  font-size: 30px;
  color: var(--accent-dark, #eac258) !important;
  background: #fafafa;
  padding: 14px;
  border-radius: 12px;
}

.role-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.role-item p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}


.internship-section {
  background: #fff;
  padding: 50px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT */
.intern-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  font-family: "Playfair Display", serif;
}

.intern-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.intern-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intern-left li {
  margin-bottom: 14px;
  font-size: .95rem;
  line-height: 1.5;
  color: #333;
}

.intern-left li::before {
  content: "•";
  margin-right: 8px;
  color: #eac258;
  font-size: 22px;
  position: relative;
  top: 2px;
}

/* RIGHT GRID */
.intern-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 34px;
}

/* --------- PERFECT OFFSETS ----------- */

/* Top-left cards */
.card-top-left {
  transform: translate(-14px, -12px);
}

/* Bottom-right cards */
.card-bottom-right {
  transform: translate(14px, 16px);
}

/* --------- CARD STYLE ----------- */

.intern-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.intern-card:hover {
  transform: translate(0, -6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* ICON BOX */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.icon-box .material-icons-outlined {
  color: #fff;
  font-size: 28px;
}

/* COLORED ICON BACKGROUNDS */
.bg1 {
  background: #f7a733;
}

.bg2 {
  background: #33bff2;
}

.bg3 {
  background: #b052d1;
}

.bg4 {
  background: #ef5350;
}

/* TEXT */
.intern-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.intern-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .internship-section {
    grid-template-columns: 1fr;
  }

  .intern-right {
    grid-template-columns: 1fr;
  }

  .card-top-left,
  .card-bottom-right {
    transform: none !important;
  }
}


.involved-section {
  background: #fff;
  padding: 50px 10%;
  display: flex;
  justify-content: center;
}

.involved-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  width: 100%;
}

/* LEFT SIDE */
.involved-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  font-family: "Playfair Display", serif;
}

.involved-left .lead {
  font-size: 1rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 18px;
}

.involved-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.involved-list li {
  padding-left: 18px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.involved-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  color: #eac258;
  font-size: 22px;
}

.follow-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 25px;
}

/* FORM */
.involved-form input,
.involved-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  margin-bottom: 14px;
  background: #fff;
}

.involved-form textarea {
  height: 115px;
  resize: none;
}

.involved-form .split {
  display: flex;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  background: #111;
  border: none;
  color: #fff;
  padding: 14px 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .25s ease;
}

.submit-btn:hover {
  opacity: .85;
}

/* RIGHT IMAGE AREA */
.image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.12);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY ON IMAGE */
.image-overlay-text {
  position: absolute;
  bottom: 28px;
  left: 35px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 0 4px 18px rgb(0, 0, 0);
  line-height: 1.45;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .involved-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .image-overlay-text {
    font-size: 1rem;
  }

  .image-box {
    border-radius: 28px;
  }
}

.stories-heros {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 120px 10% 100px;
}

/* Background image + subtle African pattern overlay */
.hero-bgs {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.281), rgba(0,0,0,0.75)),
    url("/assets/images/hero1.jpg") center/cover no-repeat;
  filter: brightness(0.95);
  z-index: 0;
}

/* Inner layout */
.hero-inners {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text */
.hero-texts {
  flex: 1 1 480px;
  max-width: 550px;
}

.section-tags {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #eac258;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero-texts h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.9rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-texts p {
  color: #f3f3f3;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Collage */
.hero-collages {
  flex: 1 1 420px;
  position: relative;
  height: 420px;
}

.hero-collages .img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-collages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Diagonal placement for artistic balance */
.img-tops {
  top: -30px;
  left: -30px;
  width: 70%;
  height: 70%;
  transform: rotate(-3deg);
  z-index: 2;
}

.img-bottoms {
  bottom: -30px;
  right: -30px;
  width: 70%;
  height: 70%;
  transform: rotate(3deg);
}

/* Hover subtle motion */
.hero-collages:hover .img-tops {
  transform: rotate(-3deg) translateY(-6px);
}
.hero-collages:hover .img-bottoms {
  transform: rotate(3deg) translateY(6px);
}

/* Responsive */
@media (max-width: 950px) {
  .hero-inners {
    flex-direction: column;
    text-align: center;
  }
  .hero-collages {
    width: 100%;
    height: 360px;
  }
  .img-tops, .img-bottoms {
    position: absolute;
    width: 65%;
    height: 65%;
  }
  .img-tops {
    top: 0;
    left: 18%;
  }
  .img-bottoms {
    bottom: 0;
    right: 18%;
  }
}

.stories-media {
  background: #fff;
  padding: 120px 10%;
}

.section-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
}

.section-head h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fdfdfd;
  border: 1px solid #eee;
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06); */
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.media-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.media-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-item:hover .media-img::after {
  opacity: 1;
}

.media-body {
  padding: 30px 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.media-body .tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #eac258;
  font-weight: 600;
  margin-bottom: 10px;
}

.media-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.35;
}

.media-body p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 25px;
}

.read-more {
  font-weight: 600;
  text-decoration: none;
  color: #111;
  border-bottom: 2px solid #111;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.read-more:hover {
  color: #eac258;
  border-color: #eac258;
}

/* Modifiers for variety */
.media-item.tall .media-img {
  height: 320px;
}

.media-item.wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-item.wide {
    grid-column: span 1;
  }
}


.careers-hero {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f9faf9 100%);
  padding: 50px 10%;
  text-align: center;
}

.careers-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 15px;
}

.careers-hero h1 span {
  color: var(--accent-dark);
  /* a soft green tone for freshness */
}

.careers-hero p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 30px;
}

.btn-primary {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
}


.hero-image {
  margin-top: 50px;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .careers-hero {
    padding: 20px 6% 40px;
  }

  .careers-hero h1 {
    font-size: 2rem;
  }
}

.video-ads {
  background: #fff;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.ad-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-ad {
  position: relative;
  width: 270px;
  height: 540px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-ad:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.video-ad video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-ad::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-align: left;
}

.overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.overlay p {
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
    background: linear-gradient(90deg, #ff0077 0%, #ff2ea3 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 32px;
    font-size: 0.8rem;
    text-align: center;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ff2ea3 0%, #ff0077 100%);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ad-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-ad {
    width: 90%;
    max-width: 300px;
    height: 460px;
  }
}

.swal2-container {
    z-index: 999999 !important;
}




