body {
  margin: 0;
  padding: 0;

  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

.about-us-section {
  scroll-margin-top: 100px;
}

.get-involved {
  scroll-margin-top: 0px;
}

#contacts-form {
  scroll-margin-top: 110px;
}

/* ===================== NAV BAR ===================== */
.site-nav {
  background: #3a1f24;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-top-bar {
  background: #9b4f5a;
  padding: 6px 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.nav-top-bar span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 54px;
  width: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(200, 125, 135, 0.5);
  background: #2a1419;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: #f5c5c8;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.nav-logo-tagline {
  font-size: 10px;
  color: #c87d87;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 0 1.1rem;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  line-height: 76px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 3px;
  background: #c87d87;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links li a:hover {
  color: #fff;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}
.nav-links li a.active {
  color: #fff;
}

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

.nav-cta {
  background: transparent;
  color: white;
  border: 1.5px solid #c87d87;
  padding: 9px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #c87d87;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: 0;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}
.nav-cta span {
  position: relative;
  z-index: 1;
}
.nav-cta:hover {
  color: #fff;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: #f5c5c8;
  border-radius: 1px;
  transition: all 0.25s ease;
}

.nav-hamburger span:nth-child(1) {
  width: 24px;
}
.nav-hamburger span:nth-child(2) {
  width: 16px;
}
.nav-hamburger span:nth-child(3) {
  width: 20px;
}

.nav-hamburger.open span:nth-child(1) {
  width: 22px;
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  width: 22px;
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile dropdown */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #2a1419;
  border-top: 1px solid rgba(200, 125, 135, 0.2);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  padding: 14px 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.nav-mobile-menu a:hover {
  color: #fff;
  background: rgba(200, 125, 135, 0.1);
  padding-left: 2.4rem;
}

.nav-mobile-cta {
  margin: 1rem 1.5rem 1.5rem;
  background: transparent;
  color: #f5c5c8;
  border: 1.5px solid #c87d87;
  padding: 13px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
}

.nav-mobile-cta:hover {
  background: #c87d87;
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .nav-links,
  .nav-cta,
  .nav-top-bar {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-inner {
    height: 64px;
    padding: 0 1.25rem;
  }
  .nav-logo-img {
    height: 42px;
    width: 42px;
  }
  .nav-logo-name {
    font-size: 15px;
  }
}
/* ================================================== */

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/home-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
}

.hero-content small {
  font-size: 0.9rem;
  opacity: 0.6;
}

h1 {
  font-size: 3.5rem;
  color: #8c4a54;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1;
}

.hero-content p {
  border-bottom: 2px solid #412c28;
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  color: black;
  opacity: 0.75;
  font-size: 1.2rem;
  line-height: 1.2;
  padding-bottom: 15px;
}

.hero-container {
  width: 85%;
  height: 60%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1.9px);
  -webkit-backdrop-filter: blur(1.9px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hero-content {
  width: 60%;
}

.hero-image img {
  width: 300px;
  height: auto;
  border-radius: 6px;
}

.cta-btn button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  text-align: center;
  background-color: #9b4f5a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn button:hover {
  background-color: #c57e70;
  transform: translateY(-2px);
}

.cta-btn button:active {
  background-color: #c57e70;
  transform: translateY(0);
}

span {
  color: #8c4a54;
  font-style: italic;
}

strong {
  color: #9b4f5a;
}

/******************************** section divider ****************************************/

.section-divider {
  background-color: #c87d87;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  color: white;
}

.divider-container {
  width: 70%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
}

.divider-container span {
  color: white;
  font-weight: bold;
}

.content {
  font-size: 0.9rem;
}

.icon {
  border: 1px solid;
  width: 30%;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

.icon svg {
  padding: 3px;
}

/******************************** about us ****************************************/
.about-us-section {
  background-color: #fffbf5;
}

.about-us-title {
  margin-left: 45%;
  margin-bottom: 10px;
}

.about-us-title h2 {
  text-align: left;
  display: inline-block;
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
}

.about-us-title hr {
  display: inline-block;
  width: 5%;
  border: none;
  height: 2px;
  background-color: #c87d87;
  vertical-align: middle;
}

/*************************** who we are *******************************/
.who-main-container {
  background-color: #fff1f2;
  padding: 40px 80px;
  margin-bottom: 30px;
}

.who-title h2 {
  margin: 0;
  opacity: 0.65;
  font-weight: 500;
  font-size: 2.55rem;
}

.who-2nd-container {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.who-2nd-container .who-image img {
  width: 400px;
  height: 500px;
}

.who-content {
  gap: 15px;
  padding: 10px;
}

.who-icon {
  padding: 14px 14px;
  border-radius: 8px;
  background-color: #c87d87;
  display: flex;
  justify-content: center;
}

.who-card {
  border-bottom: 2px solid rgba(65, 44, 40, 0.7);
  margin: 0px 0;
  padding: 0px 0;
  font-family: "Montserrat", sans-serif;
  color: black;
  opacity: 0.75;
  font-size: 1.1rem;
  line-height: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.who-text h3 {
  margin-bottom: 0;
  opacity: 0.9;
  font-weight: 500;
}

.who-text p {
  margin-top: 0;
  padding-bottom: 10px;
}

.who-content .cta-btn {
  margin-top: 20px;
}

/*************************** our why *******************************/
.why-container {
  font-family: "Montserrat", sans-serif;
  color: black;
  opacity: 0.75;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 20px 0;
  margin: 30px auto;
  width: 60%;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.why-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-content {
  margin: 30px auto;
  width: 80%;
}

.why-content p span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
}

.why-content .center {
  display: block;
  text-align: center;
}

.why-stats-container {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.why-card {
  background-color: #d69aa2;
  padding: 8px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.data {
  font-size: 2rem;
  font-weight: 700;
  color: #9b4f5a;
  margin: 0;
}

.description {
  font-size: 1rem;
  margin-top: 5px;
  color: white;
}

/*************************** meet the founder *******************************/

.founder-container {
  background-color: #fff1f2;
  padding: 40px 80px;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  color: black;
  opacity: 0.75;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  gap: 100px;
}

.founder-image img {
  width: 300px;
  height: auto;
}

.founder-content {
  width: 75%;
}

.founder-content h3 {
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
  font-size: 3rem;
}

.founder-content p {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(65, 44, 40, 0.7);
}

.founder-content .about-us-title {
  margin-left: 0%;
  margin-bottom: 10px;
}

/*************************** section divider 2*******************************/
.section-divider2 {
  background-color: #c87d87;
  padding: 5px;
  display: flex;
  color: white;
}

.divider2-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin: 0 auto;
}

.divider2-row1 {
  display: flex;
  justify-content: space-around;
  align-items: center; /* ensures the line is centered vertically */
  position: relative; /* needed for pseudo-element positioning */
}

.divider2-row1::before {
  content: "";
  position: absolute;
  top: 50%; /* middle of the row */
  left: calc(50% - 35%); /* adjust to start near item1 */
  right: calc(50% - 35%); /* adjust to end near item3 */
  height: 2px;
  background-color: #ffffff;
  z-index: 0; /* behind the circles */
}

.divider2-row1 .row1-item {
  background-color: #ffffff;
  color: #c87d87;
  font-size: 1.9rem;
  padding: 8px;
  border-radius: 50%;
  position: relative;
  z-index: 1; /* ensures circles sit above the line */
}

.divider2-row2 {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  text-align: left;
}

.divider2-container h2 {
  color: white;
  font-size: 2rem;
  margin: 0;
}

.divider2-container p {
  margin-top: 5px;
}

.divider2-container strong {
  color: white;
}

/*************************** campaigns*******************************/
.campaigns {
  background-color: #fffbf5;
  margin: 0;
}
.campaigns-container {
  font-family: "Montserrat", sans-serif;
  background-color: #fffbf5;
  color: black;
  opacity: 0.75;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 20px;
  margin: 30px auto;
  width: 90%;
}

.campaigns-text h1 {
  font-size: 2.8rem;
  margin-bottom: 5px;
  opacity: 0.8;
  color: black;
}

.campaigns-text p {
  margin-top: 0;
  font-size: 1.5rem;
  opacity: 0.8;
}

.campaigns-row2-text h3 {
  opacity: 0.9;
}

.campaigs-row1 {
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/pixels&pads.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 30px;
  color: white;
  text-align: center;
}

.campaigs-row1:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.05) translateY(-5px);
}

.campaigns-row2-items {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.campaigns-row2-items .row2-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  color: white;
  opacity: 1;
}

.campaigns-row2-items #row2-item1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/school.webp");
}

.campaigns-row2-items #row2-item2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/community-image.jpg");
}

.campaigns-row2-items #row2-item3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/mentorship.webp");
}

/* 🔥 NEW: When hovering the container → blur all cards */
.campaigns-row2-items:hover .row2-item {
  filter: blur(3px);
  opacity: 0.6;
  transform: scale(0.95);
}

/* 🔥 ACTIVE CARD (the one hovered) */
.campaigns-row2-items .row2-item:hover {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.05) translateY(-5px);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ✨ OPTIONAL GLASS EFFECT */
.campaigns-row2-items:hover .row2-item {
  backdrop-filter: blur(4px);
}

.campaigns-row2-text p {
  margin-top: 0;
  font-size: 1.3rem;
}

.campaigns-row2-text h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

/*************************** get involved*******************************/

.get-involved-hero {
  height: 60vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/home-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: white;
}

.hero-overlay p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.get-involved-cards {
  position: relative;
  margin-top: -80px;
  z-index: 2;
  padding-bottom: 80px;
}

.cards-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.card {
  width: 30%;
  padding: 35px 25px;
  background: #fffbf5;
  background: linear-gradient(
    -5deg,
    rgba(255, 251, 245, 1) 75%,
    rgba(255, 241, 242, 1) 25%
  );
  border: 1px solid #ffdec7;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.card h3 {
  color: #8c4a54;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  opacity: 0.8;
}

.card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.card:hover {
  border-color: #efa3a0;
}

@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .get-involved-cards {
    margin-top: -80px; /* less overlap on mobile */
  }
}

/*************************** qoute*******************************/

.qoute-container {
  color: #fffbf5;
  padding: 20px;
  margin: 0 auto;
  width: 80%;
}

.qoute {
  background-color: #c87d87;
}

/*************************** contact us *******************************/
.contact-us {
  background-color: #fffbf5;
  font-family: "Montserrat", sans-serif;
  color: black;
  opacity: 0.75;
  font-size: 1.2rem;
  line-height: 1.2;
}

.contact-hero {
  background-color: #f0c4cb;
  text-align: center;
  height: 20vh;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/contact-hero-image.webp");
  background-color: #ede9f1;
  background-size: auto; /* fills empty space nicely */
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.contact-hero h1 {
  color: black;
  opacity: 1;
  margin-bottom: 0;
}

.contact-hero p {
  color: black;
  opacity: 1;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
}

.contact-container {
  display: flex;
  justify-content: center;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 80%;
  margin: 40px auto;
}

.contact-form {
  background: rgba(240, 196, 203, 0.5);
  backdrop-filter: blur(12px);
  width: 100%;
  margin: 0px auto;
  padding: 30px 10px;
}

.contact-form h2 {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  opacity: 0.75;
}

.contact-form p {
  margin: 0;
  padding: 0;
  opacity: 0.9;
}

.contact-form,
.contact-details-container {
  flex: 1; /* makes them equal */
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid white;
  width: 90%;
  max-width: 90%;
  background-color: #fbead6;
  box-sizing: border-box;
}

.contact-form label {
  margin: 15px 0;
  opacity: 0.75;
  font-size: 1rem;
  align-self: flex-start;
  padding-left: 30px;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: #9b4f5a;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 90%;
  margin-top: 30px;
  box-sizing: border-box;
}

.contact-form button:hover {
  background-color: #c57e70;
}

.contact-details-container {
  opacity: 0.75;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0;
  text-align: center;
}

.contact-card-row {
  display: flex;
  justify-content: space-between;
}

.contact-icon {
  margin: 0 auto;
}

.map-container {
  margin: 40px auto 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #ffdec7;
  width: 100%;
  height: 250px;
}

footer {
  background-color: #c87d87;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.footer-icon svg {
  width: 40px;
  height: 40px;
}
.footer-logo img {
  height: 200px;
  width: 200px;
  padding: 0;
  margin: 0;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 5px;
  margin-bottom: 20px;
}

.footer-credits {
  font-size: 0.7rem;
}

footer hr {
  border: none;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 80%;
}

/* =========================
   TABLET (768px - 1023px)
========================= */
@media (max-width: 1023px) {
  h1 {
    font-size: 3rem;
  }

  .hero-container {
    flex-direction: column;
    height: auto;
    padding: 40px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero-image img {
    width: min(300px, 80vw);
  }

  .divider-container {
    width: 90%;
    gap: 20px;
  }

  .about-us-title {
    margin-left: 0;
    text-align: center;
  }

  .who-main-container,
  .founder-container {
    padding: 40px;
  }

  .who-2nd-container,
  .founder-container,
  .contact-content,
  .campaigns-row2-items {
    flex-direction: column;
  }

  .who-2nd-container .who-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .why-container {
    width: 90%;
  }

  .why-stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .founder-container {
    gap: 40px;
  }

  .founder-content {
    width: 100%;
  }

  .founder-image {
    text-align: center;
  }

  .cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    width: 45%;
  }

  .contact-card-row {
    gap: 20px;
  }
}

/* =========================
   MOBILE (320px - 767px)
========================= */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .hero {
    height: 60vh;
    padding: 30px 0;
    background-attachment: scroll;
  }

  .hero-container {
    width: 80%;
    padding: 24px;
    gap: 24px;
  }

  .hero-image {
    display: none;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-divider {
    padding: 10px 5px;
  }

  .divider-container {
    width: 100%;
    gap: 0;
  }
  .content {
    font-size: 0.6rem;
  }

  .icon {
    width: 60px;
  }

  .who-main-container {
    padding: 25px 20px;
  }

  .who-title h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .who-image {
    display: none;
  }

  .who-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    margin-bottom: 20px;
  }

  .about-us-section button {
    display: block;
    margin: 0 auto;
  }

  .why-container {
    width: 92%;
  }

  .why-content {
    width: 90%;
  }

  .why-stats-container {
    flex-direction: column;
  }

  .why-card {
    text-align: center;
  }

  .data {
    font-size: 1.75rem;
  }

  .founder-container {
    padding: 25px 20px;
    text-align: center;
  }

  .founder-content h3 {
    font-size: 2rem;
    text-align: center;
  }

  .divider2-row1 {
    display: none;
  }

  .divider2-row1::before {
    display: none;
  }

  .divider2-row2 {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .campaigns-container {
    width: 95%;
    padding: 15px;
  }

  .campaigns-text h1 {
    font-size: 2rem;
  }

  .campaigns-text p {
    font-size: 1.1rem;
  }

  .campaigs-row1,
  .campaigns-row2-items .row2-item {
    padding: 30px 20px;
  }

  .card {
    width: 95%;
  }

  .get-involved-cards {
    margin-top: -40px;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .contact-hero {
    height: auto;
    padding: 100px 20px 60px;
    background-size: cover;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-content {
    width: 95%;
    gap: 30px;
  }

  .contact-card-row {
    flex-direction: column;
    text-align: center;
  }

  .contact-form label {
    padding-left: 15px;
  }

  .map-container {
    height: 300px;
  }

  .footer-logo img {
    width: 140px;
    height: 140px;
  }

  .footer-icons {
    flex-wrap: wrap;
  }
}

/* =========================
   SMALL PHONES (< 375px)
========================= */
@media (max-width: 375px) {
  h1 {
    font-size: 2rem;
  }

  .hero-container {
    padding: 18px;
  }

  .who-title h2 {
    font-size: 1.7rem;
  }

  .campaigns-text h1 {
    font-size: 1.8rem;
  }

  .founder-content h3 {
    font-size: 1.8rem;
  }
}

/* =========================
   LARGE DESKTOPS (1440px+)
========================= */
@media (min-width: 1440px) {
  .hero-container,
  .contact-content,
  .cards-container,
  .campaigns-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/********************** DONATION MODAL *********************/

/* Backdrop overlay */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58, 31, 36, 0.65);
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-backdrop.open {
  display: flex;
}

/* Modal card */
.modal {
  background: #fffbf5;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  scrollbar-width: none;
  animation: modalIn 0.25s ease;
}

.modal::-webkit-scrollbar {
  display: none;
}

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

/* Header */
.modal-header {
  background: #9b4f5a;
  padding: 1.5rem 1.75rem 1.25rem;
  border-radius: 14px 14px 0 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.modal-header-text {
  flex: 1;
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}

.modal-header h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.modal-description {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

/* Close button */
.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Shared section styles */
.modal-section {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(65, 44, 40, 0.1);
}

.modal-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9b4f5a;
  margin: 0 0 12px;
}

/* Impact items */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff1f2;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.45;
}

.impact-item strong {
  color: #9b4f5a;
  font-weight: 700;
}

.impact-icon {
  width: 20px;
  height: 20px;
  color: #c87d87;
  flex-shrink: 0;
}

/* Banking table */
.banking-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.banking-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(65, 44, 40, 0.08);
  font-family: "Montserrat", sans-serif;
}

.banking-row:last-child {
  border-bottom: none;
}

.banking-label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.banking-value {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  text-align: right;
}

/* Footer */
.modal-footer {
  background: #fff1f2;
  padding: 1.25rem 1.75rem;
  border-radius: 0 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-email {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  padding-bottom: 0;
}

.whatsapp {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0;
  padding-top: 0;
}

.proof {
  display: flex;
  flex-direction: column;
}

.proof strong {
  color: #9b4f5a;
  font-weight: 600;
  font-size: 13px;
}

.modal-email a,
.whatsapp a {
  color: #9b4f5a;
  font-weight: 600;
  text-decoration: none;
}

.modal-email a:hover,
.whatsapp a:hover {
  text-decoration: underline;
}

.note {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: #c87d87;
  flex-shrink: 0;
}

.modal-thanks {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(65, 44, 40, 0.1);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .modal-backdrop {
    padding: 1rem;
    align-items: flex-end;
  }

  .modal {
    max-height: 92vh;
    border-radius: 18px 18px 14px 14px;
  }

  .modal-header {
    padding: 1.25rem 1.25rem 1rem;
    border-radius: 18px 18px 0 0;
  }

  .modal-section,
  .modal-footer {
    padding: 1rem 1.25rem;
  }

  .banking-label,
  .banking-value {
    font-size: 12.5px;
  }
}
