/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
html, body {
  overflow-x: hidden;
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  justify-content: space-between;
}

/* TOP ROW */
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.shrink {
  padding: 10px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.logo span {
  display: flex;
  align-items: center;
  height: 42px;
  line-height: 1;
  font-weight: 600;
  color: #0a2c5e;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-links a.active {
  color: #0a2c5e;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

/* DESKTOP CENTERING */
@media (min-width: 1024px) {
  .navbar {
    flex-direction: row; /* 🔥 make it horizontal */
    align-items: center;
    justify-content: space-between;
  }

  /* Remove nav-top wrapper effect */
  .nav-top {
    display: contents;
  }

  .nav-links {
    margin-left: auto; /* push to right */
  }
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s;
}

/* Hover underline */
.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #0a2c5e;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* DONATE BUTTON */
.donate-btn {
  background: linear-gradient(135deg, #0a2c5e, #1e63d5);
  color: white !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(10, 44, 94, 0.25);
}

.donate-btn:hover {
  transform: translateY(-2px);
}

/* DESKTOP SEARCH BOX */
.search-box {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.search-box input {
  width: 260px;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ACTIVE */
.search-box.active {
  width: 270px;
}

.search-box input:focus,
.mobile-search input:focus {
  box-shadow: 0 0 0 3px rgba(30, 99, 213, 0.15);
}

/* HAMBURGER */
/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Icons */
.icon-close {
  display: none;
}

/* Toggle icons */
.hamburger.active .icon-menu {
  display: none;
}

.hamburger.active .icon-close {
  display: block;
}

/* MENU TEXT */
.menu-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a2c5e;
  letter-spacing: 1px;
}

.icon-menu,
.icon-close {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hamburger.active .icon-close {
  transform: rotate(90deg);
}

/* MOBILE SEARCH */
.mobile-search {
  display: none;
  width: 100%;
  padding: 10px 20px;
  background: white;
}

.mobile-search input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* SEARCH RESULTS */
.search-results {
  margin-top: 8px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
}

.search-results div {
  padding: 10px;
  cursor: pointer;
}

.search-results div:hover {
  background: #f2f6ff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* FOOTER BASE */
.footer {
  background: #0b1c2c; /* deep navy */
  color: #d9e3ea;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* SECTION TITLES */
.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
}

.footer-section h4::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background: #2ec4b6; /* accent */
  margin-top: 6px;
}

/* LOGO AREA */
.footer .logo img {
  width: 55px;
  margin-bottom: 10px;
}

.footer .logo h3 {
  font-size: 14px;
  margin: 5px 0;
  color: #ffffff;
}

.footer .logo p {
  font-size: 12px;
  opacity: 0.8;
}

/* TEXT */
.footer p {
  font-size: 13px;
  line-height: 1.6;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #c7d3db;
  font-size: 13px;
  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: #2ec4b6;
  padding-left: 5px;
}

/* NEWS */
.news-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.news-list img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.news-list p {
  font-size: 13px;
  margin: 0;
}

.news-list span {
  font-size: 11px;
  opacity: 0.7;
}

/* CONTACT */
.footer-section p {
  margin-bottom: 10px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #9fb3c3;
}

.designer {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #8fa3b5;
  letter-spacing: 0.5px;
}

.designer p {
  margin: 0;
}

.designer span {
  color: #ffffff;
  font-weight: 500;
}

/* subtle hover effect */
.designer span:hover {
  color: #2ec4b6;
  cursor: pointer;
  transition: 0.3s ease;
}

/* SOCIAL SECTION */
.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* ICONS CONTAINER */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ICON STYLE */
.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* SVG IMAGE */
.social-icons img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* HOVER EFFECT (premium feel) */
.social-icons a:hover {
  background: #2ec4b6;
  transform: translateY(-3px);
}

.social-icons a:hover img {
  opacity: 1;
  filter: brightness(0) invert(1); /* makes SVG white on hover */
}

/* HERO BASE */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* SLIDES */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* DARK OVERLAY (important for readability) */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* ACTIVE SLIDE */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 20%;
  left: 8%;
  color: #fff;
  max-width: 500px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}

/* ACTIVE TRIGGER */
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.8s ease;
}

/* VARIATIONS */

/* Fade Up */
.fade-up {
  transform: translateY(40px);
}

/* Slide from Left */
.slide-left {
  transform: translateX(-60px);
}

/* Slide from Right */
.slide-right {
  transform: translateX(60px);
}

/* Fade Down */
.fade-down {
  transform: translateY(-40px);
}

/* Zoom In */
.zoom-in {
  transform: scale(0.8);
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
  transition-delay: 0.2s;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
  transition-delay: 0.2s;
}

.hero-content a {
   transition-delay: 0.2s;
}

/* BUTTON */
.btn-primary {
  background: #2ec4b6;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #26a69a;
}

/* PROBLEM SECTION */
.problem {
  padding: 80px 20px;
  text-align: center;
  background: #f7fbfc;
}

.problem h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.problem p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}


/* IMPACT SECTION */
.impact {
  padding: 60px 20px;
  background: #ffffff;
}

.impact .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.impact-box {
  text-align: center;
}

.impact-box h3 {
  font-size: 28px;
  color: #2ec4b6;
}

.impact-box p {
  font-size: 14px;
  color: #666;
}

/* FOUNDATION SECTION */

.about-foundation {
  padding: 80px 20px;
  background: #f7fbfc;
  text-align: center;
}

.about-foundation p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  color: #555;
}

/* CASES SECTION */
/* CASE SECTION */
.cases {
  padding: 100px 20px;
  text-align: center;
}

/* GRID */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* GLASS CARD */
.case-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  padding-bottom: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* IMAGE */
.case-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TEXT */
.case-card h3 {
  margin: 15px;
  font-size: 18px;
}

.case-card p {
  margin: 0 15px 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* PROGRESS BAR */
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.2);
  margin: 10px 15px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: #2ec4b6;
  border-radius: 5px;
}

/* AMOUNT */
.amount {
  font-size: 13px;
  margin: 10px 15px;
}

/* BUTTON */
.case-card .btn-primary {
  display: inline-block;
  margin: 10px 15px;
}

.cta {
  padding: 70px 20px;
  text-align: center;
  background: #0b1c2c;
  color: #fff;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

/* BACKGROUND WRAPPER */
.parallax-bg {
  background: url("../images/parallax-bg.webp") center/cover no-repeat fixed;
  position: relative;
}

/* OPTIONAL DARK OVERLAY (very important for readability) */
.parallax-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, 0.75); /* matches your theme */
  z-index: 0;
}

/* MAKE CONTENT ABOVE OVERLAY */
.parallax-bg section {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
}

/* IMPROVE TEXT VISIBILITY */
.parallax-bg p {
  color: #d9e3ea;
}







/* FULL HERO */
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE */
.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT SIDE */
.about-hero-text {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;

  display: flex;
  align-items: center;
  padding: 60px;

  /* transparent overlay */
  background: rgba(11, 28, 44, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  color: #fff;

  /* CURVED EDGE 🔥 */
  clip-path: ellipse(100% 100% at 100% 50%);
}

/* CONTENT */
.about-hero-text .content {
  max-width: 450px;
}

.about-hero-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-hero-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.story-btn {
  background: #2ec4b6;
  border: none;
  padding: 12px 25px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.story-btn:hover {
  background: #26a69a;
  transform: translateY(-2px);
}

/* SECTION */
.our-story {
  padding: 100px 20px;
  background: #f7fbfc;
}

/* CONTAINER */
.story-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE SIDE */
.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* HEXAGON SHAPE */
.hexagon {
  width: 500px;
  height: 430px;
  position: relative;
  clip-path: polygon(
    50% 0%, 
    90% 25%, 
    90% 75%, 
    50% 100%, 
    10% 75%, 
    10% 25%
  );
  overflow: hidden;
  transition: 0.4s ease;
}

/* IMAGE */
.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER EFFECT */
.hexagon:hover {
  transform: scale(1.05) rotate(1deg);
}

/* TEXT SIDE */
.story-text {
  flex: 1;
  max-width: 550px;
}

.story-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0b1c2c;
}

.story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}




/* SECTION */
.vmc-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* TOP (VISION + MISSION) */
.vmc-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.vmc-card {
  background: #f7fbfc;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s ease;
}

.vmc-card:hover {
  transform: translateY(-5px);
}

.vmc-card img {
  width: 50px;
  margin-bottom: 15px;
}

.vmc-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0b1c2c;
}

.vmc-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* CORE VALUES SECTION */
.core-values {
  margin-top: 80px;
  text-align: center;
}

.core-values h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #0b1c2c;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* VALUE CARD (SPECIAL DESIGN 🔥) */
.value-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;

  /* premium effect */
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border-top: 3px solid #2ec4b6;

  transition: 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.value-item img {
  width: 40px;
  margin-bottom: 15px;
}



/* TEXT */
.value-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0b1c2c;
}

.value-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}


/* SECTION */
.founder-section {
  padding: 100px 20px;
  background: #f7fbfc;
}

/* CONTAINER */
.founder-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGE */
.founder-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TEXT */
.founder-text {
  flex: 2;
  max-width: 600px;
  
}

.founder-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0b1c2c;
}

/* QUOTE STYLE */
.quote {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  position: relative;
}

/* QUOTE DECORATION */
.quote::before {
  content: "“";
  font-size: 40px;
  color: #2ec4b6;
  position: absolute;
  left: -20px;
  top: -10px;
}

/* FOUNDER NAME */
.founder-name {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #0b1c2c;
}


/* SECTION */
.founder-teaser {
  position: relative;
  padding: 120px 20px; /* slightly increased for better effect */
  text-align: center;
  color: #fff;

  /* FIXED BACKGROUND */
  background: url("../images/founder-bg.webp") center/cover no-repeat;
  background-attachment: fixed;
}

/* DARK OVERLAY */
.founder-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, 0.7);
  z-index: 0;
}

/* CONTENT ABOVE OVERLAY */
.teaser-content {
  position: relative;
  z-index: 2;
}

/* QUOTE */
.teaser-quote {
  font-size: 22px; /* slightly bigger = more impact */
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #fff;
  line-height: 1.7;
  position: relative;
}

/* QUOTE ICON */
.teaser-quote::before {
  content: "“";
  font-size: 50px;
  color: #2ec4b6;
  position: absolute;
  left: -25px;
  top: -15px;
}

/* LINK */
.teaser-link {
  font-size: 14px;
  color: #2ec4b6;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.teaser-link:hover {
  text-decoration: underline;
  letter-spacing: 0.5px;
}



/* SECTION BASE */
.objectives-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  color: #2ec4b6;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 40px;
  color: #0b1c2c;
  margin-bottom: 15px;
}

.description {
  max-width: 600px;
  margin: auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.objective-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.objective-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON */
.objective-card img {
  width: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(81%) saturate(340%) hue-rotate(130deg);
}

/* TEXT */
.objective-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.objective-card strong {
  color: #0b1c2c;
}

/* CTA */
.objectives-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #0b1c2c, #123b5a);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.objectives-cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #2ec4b6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #25a99c;
  transform: translateY(-2px);
}






/* SECTION */
.objectives-preview {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* HEADER */
.preview-header h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.preview-header p {
  max-width: 550px;
  margin: auto;
  color: #fffbfb;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.preview-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.preview-card {
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 14px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);

  /* ANIMATION START */
  opacity: 0;
  transform: translateY(40px);
}

/* SHOW */
.preview-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.preview-card img {
  width: 55px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(81%) saturate(340%) hue-rotate(130deg);
}

/* TEXT */
.preview-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b1c2c;
}

.preview-card p {
  font-size: 14px;
  color: #555;
}

/* CTA */
.preview-cta {
  margin-top: 40px;
}

.preview-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2ec4b6;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.preview-btn:hover {
  background: #25a99c;
}

.preview-card:nth-child(1) { transition-delay: 0.1s; }
.preview-card:nth-child(2) { transition-delay: 0.2s; }
.preview-card:nth-child(3) { transition-delay: 0.3s; }



/* =========================
   GLOBAL
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO
========================= */
.donate-hero {
  height: 100vh;
  background:
    linear-gradient(rgba(11,28,44,0.8), rgba(11,28,44,0.8)),
    url("../images/donate.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.donate-hero-content h1 {
  font-size: 52px;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.donate-hero-content p {
  max-width: 600px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

/* CTA BUTTON */
.give-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #2ec4b6;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.give-btn:hover {
  background: #25a99c;
  transform: translateY(-2px);
}

/* =========================
   IMPACT SECTION
========================= */
.donate-impact {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.donate-impact h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0b1c2c;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.impact-grid div {
  background: #f8fafc;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.impact-grid div:hover {
  transform: translateY(-6px);
}

.impact-grid h3 {
  font-size: 28px;
  color: #2ec4b6;
  margin-bottom: 10px;
}

.impact-grid p {
  color: #555;
}

/* =========================
   DONATION OPTIONS
========================= */
.donation-options {
  padding: 70px 20px;
  text-align: center;
  background: #f8fafc;
}

.donation-options h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #0b1c2c;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.amount-grid button {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.amount-grid button:hover {
  background: #2ec4b6;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   FORM
========================= */
.donate-form {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.donate-form h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0b1c2c;
}

form {
  max-width: 500px;
  margin: auto;
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s ease;
}

input:focus {
  border-color: #2ec4b6;
  outline: none;
}

.donate-section {
  padding: 100px 20px;
  background: linear-gradient(rgba(11,28,44,0.9), rgba(11,28,44,0.9)),
              url("../images/donate-bg.webp") center/cover no-repeat;
  text-align: center;
  color: #fff;
}

.donate-container {
  max-width: 600px;
  margin: auto;
}

.donate-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.donate-subtext {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* IMPACT COUNTER */
.impact-box {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.impact-number {
  font-size: 40px;
  font-weight: bold;
  color: #2ec4b6;
}

/* AMOUNT BUTTONS */
.amount-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.amount-btn {
  padding: 15px;
  border: none;
  background: #fff;
  color: #0b1c2c;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.amount-btn:hover,
.amount-btn.active {
  background: #2ec4b6;
  color: #fff;
}

/* INPUT */
.custom-amount input {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  margin-bottom: 30px;
  font-size: 16px;
}



/* =========================
   TRUST SECTION
========================= */
.donate-trust {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b1c2c, #123b5a);
  color: #fff;
}

.donate-trust p {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
}


/* =========================
   EVENTS PAGE HEADER
========================= */

.event-hero {
  position: relative;
  height: 50vh;              /* Short header height */
  min-height: 220px;
  background: url("../images/events.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero {
  position: relative;
  height: 50vh;              /* Short header height */
  min-height: 220px;
  background: url("../images/gallery.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* Dark overlay for readability */
.event-hero::before, .gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.65)
  );
}

/* Content */
.event-hero-overlay, .gallery-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.event-hero-overlay h1, .gallery-hero-overlay h1 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

/* Elegant gold underline */
.event-hero-overlay h1::after, .gallery-hero-overlay h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 15px auto 0;
  background: #d4af37;
  border-radius: 3px;
}

/* SECTION */
.events-section {
  padding: 80px 20px;
  text-align: center;
  background: #f5f8fb;
}

.events-section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0b1c2c;
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.08);
}

/* DATE BADGE 🔥 */
.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #2ec4b6, #1e9e93);
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.event-date span {
  display: block;
  font-size: 16px;
}

.event-date small {
  font-size: 11px;
  opacity: 0.9;
}

/* CONTENT */
.event-content {
  padding: 22px;
}

.event-content h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #0b1c2c;
}

.event-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* META */
.event-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* BUTTON */
.event-btn {
  text-decoration: none;
  font-size: 14px;
  color: #2ec4b6;
  font-weight: 600;
  transition: 0.3s;
}

.event-btn:hover {
  letter-spacing: 0.5px;
}

/* MODAL BACKDROP */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* SHOW */
.modal.active {
  display: flex;
}

/* CONTENT */
.modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

/* IMAGE */
.modal-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BODY */
.modal-body {
  padding: 20px;
}

.modal-body h3 {
  margin-bottom: 10px;
}

.modal-body p {
  font-size: 14px;
  color: #555;
}

/* NAV */
.modal-nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}

.modal-nav button {
  padding: 8px 14px;
  border: none;
  background: #2ec4b6;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* CLOSE */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}



/* VOLUNTEER SECTION */
.volunteer-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0b1c2c, #123b5a);
  color: #fff;
  text-align: center;
}

.volunteer-content {
  max-width: 600px;
  margin: auto;
  margin-bottom: 40px;
}

.volunteer-content h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.volunteer-content p {
  opacity: 0.9;
  line-height: 1.6;
}

/* FORM */
.volunteer-form {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* INPUTS */
.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* BUTTON */
.volunteer-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #2ec4b6;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.volunteer-btn:hover {
  background: #25a99c;
  transform: translateY(-2px);
}


/* VOLUNTEER TEASER */
.volunteer-teaser {
  padding: 90px 20px;
  text-align: center;
  background: url("../images/volunteer-bg.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

/* OVERLAY */
.volunteer-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, 0.75);
}

.teaser-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: auto;
}

.teaser-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.teaser-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.teaser-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #2ec4b6;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.teaser-btn:hover {
  background: #25a99c;
  transform: translateY(-2px);
}


.partners-section {
  padding: 100px 20px;
  background: #f9fbfc;
}

.partners-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.partners-header h2 {
  font-size: 32px;
  color: #0b1c2c;
  margin-bottom: 10px;
}

.partners-header p {
  font-size: 16px;
  color: #555;
}

/* ROW LAYOUT */
.partner-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

/* REVERSE LAYOUT */
.partner-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.partner-image {
  flex: 1;
  position: relative;
}

.partner-image img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: 0.4s ease;
}

.partner-image img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* SOFT BACKGROUND SHAPE */
.partner-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(46, 196, 182, 0.08);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
}

/* TEXT */
.partner-content {
  flex: 1.5;
}

.partner-content h3 {
  font-size: 24px;
  color: #0b1c2c;
  margin-bottom: 15px;
}

.partner-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.partner-row {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 60px;
}


.partners-preview {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.partners-preview h2 {
  font-size: 28px;
  color: #0b1c2c;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.partners-logos img {
  height: 60px;
  opacity: 0.7;
  transition: 0.3s;
}

.partners-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-link {
  font-size: 14px;
  color: #2ec4b6;
  text-decoration: none;
}

.partner-cta {
  margin-top: 100px;
  padding: 60px 30px;
  text-align: center;
  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(46, 196, 182, 0.08),
    rgba(11, 28, 44, 0.05)
  );

  border: 1px solid rgba(0, 0, 0, 0.05);
  
}

/* TITLE */
.partner-cta h3 {
  font-size: 28px;
  color: #0b1c2c;
  margin-bottom: 10px;
}

/* TEXT */
.partner-cta p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON */
.partner-cta .cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #2ec4b6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* BUTTON HOVER */
.partner-cta .cta-btn:hover {
  background: #26a69a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 196, 182, 0.3);
}

/* SUBTLE GLOW EFFECT */
.partner-cta .cta-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  top: 0;
  left: -100%;
  transition: 0.4s;
}

.partner-cta .cta-btn:hover::after {
  left: 100%;
}


/* WRAPPER FOR BOTH FORMS */
.forms-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* FORM TITLE */
.form-title {
  font-size: 20px;
  color: #0b1c2c;
  margin-bottom: 15px;
  text-align: center;
}

/* MAKE FORMS FULL HEIGHT (clean alignment) */
.forms-wrapper .volunteer-form {
  height: 100%;
}

.donate-section {
  padding: 100px 20px;
  text-align: center;
  background: #f9fbfc;
}

.donate-title {
  font-size: 36px;
  color: #0b1c2c;
}

.donate-subtext {
  margin-bottom: 60px;
  color: #555;
}

/* WRAPPER */
.donation-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* BOX */
.donation-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.donation-box:hover {
  transform: translateY(-5px);
}

/* DIFFERENT COLORS FOR EACH */
.dialysis {
  border-top: 4px solid #2ec4b6;
}

.transplant {
  border-top: 4px solid #e63946;
}

/* TEXT */
.donation-box h2 {
  margin-bottom: 10px;
  color: #0b1c2c;
}

.donation-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* BUTTON OPTIONS */
.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-options button {
  padding: 12px;
  border: none;
  background: #f1f1f1;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.amount-options button:hover,
.amount-options button.active {
  background: #2ec4b6;
  color: #fff;
}

/* INPUT */
.amount-input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

/* BUTTON */
.donate-btn {
  width: 100%;
  padding: 16px;
  background: #2ec4b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.donate-btn:hover {
  background: #25a99c;
}

.donation-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;

  background: linear-gradient(
    135deg,
    rgba(10, 44, 94, 0.85),
    rgba(0, 102, 153, 0.75)
  );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;

  animation: modalFade 0.35s ease;
  position: relative;
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0.4;
  pointer-events: none;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #0a2c5e;
  transform: rotate(90deg);
}

.bank-details {
  background: #f4f8fc;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #0a2c5e;
  margin-top: 10px;
}

.bank-details p {
  margin: 6px 0;
  font-size: 14px;
}

.whatsapp-btn {
  display: block;
  margin-top: 15px;
  text-align: center;

  padding: 12px;
  border-radius: 8px;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  text-decoration: none;
  font-weight: 500;

  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.modal-content h2 {
  color: #0a2c5e;
  font-size: 22px;
  margin-bottom: 10px;
}

.intro-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.steps p {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}

.step-2 {
  margin-top: 15px;
}

.copy-btn {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;

  background: linear-gradient(135deg, #0a2c5e, #006699);
  color: white;

  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 153, 0.3);
}

.step-2 {
  margin-top: 15px;
}

.thank-you-note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
  text-align: center;
  font-style: italic;
}

#donationAmount {
  font-size: 28px;
  font-weight: bold;
  color: #0a2c5e;
  text-align: center;
  margin: 15px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .forms-wrapper {
    grid-template-columns: 1fr;
  }

  .donation-wrapper {
    grid-template-columns: 1fr;
  }
}

/* MOBILE STYLING */

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .partner-cta {
    padding: 50px 20px;
  }

  .partner-cta h3 {
    font-size: 22px;
  }

  .partner-row {
    flex-direction: column;
    text-align: center;
  }

  .partner-row.reverse {
    flex-direction: column;
  }

  .partner-image::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .gallery-hero, .event-hero {
    height: 25vh;  
  }
  /* SHOW HAMBURGER */
  .hamburger {
    display: flex;
  }

  /* STACK NAVBAR */
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* MOBILE SEARCH */
  .mobile-search {
    display: block;
  }

  /* HIDE DESKTOP SEARCH ICON */
  #searchToggle {
    display: none;
  }

  /* MOBILE MENU */
  .nav-links {
    position: absolute;
    top: 100%;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 250px;
    padding: 30px;
    gap: 20px;
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-content {
    bottom: 35%;
  }

  .about-hero-text {
    width: 100%;
    clip-path: none;
    padding: 40px 20px;
    background: rgba(0,0,0,0.6);
  }

  .about-hero-text h2 {
    font-size: 28px;
  }

  .story-container {
    flex-direction: column;
    text-align: center;
  }

  .story-text {
    max-width: 100%;
  }

  .hexagon {
    width: 250px;
    height: 280px;
  }

   .vmc-container {
    grid-template-columns: 1fr;
  }

  .vmc-card {
    text-align: center;
  }

  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .quote::before {
    left: 0;
    top: -20px;
  }

  .hero-slide,
  .donate-hero,
  .parallax-bg,
  .event-hero,
  .gallery-hero,
  .founder-teaser {
    background-size: cover;
    background-position: center top; /* 👈 KEY FIX */
  }
  
}
