/* Reset and Base Styles */
* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    
}

html {
    scroll-behavior: smooth;
}


.container {
   width: 100%; /* full width */ 
   max-width: 1200px; /* limit on large screens */ 
   margin: 0 auto; /* center content */ 
   padding: 0 20px;
   
}

.flex-box { display: flex; 
  flex-wrap: wrap; /* allows items to wrap on smaller screens */ 
  gap: 20px; }

  .flex-box > div { 
    flex: 1; /* equal space */ 
    min-width: 250px; /* prevents items from shrinking too small */ 
  }

  img { max-width: 100%; 
    height: auto; }

h1, h2, h3, h4 {
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar {
  padding: 0.5rem 1rem;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.logo {
  height: 60px;
  width: auto;
}

/* Navigation links (desktop) */
    nav {
      display: flex;
      justify-content: center;
      background: #ffffff;
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: 3rem;
}

.nav-links li {
  text-align: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d32f2f;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    /* Animate hamburger into X */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-content {
        padding: 0;
    }

    .card {
        max-width: 100%;
    }
}


.donate-btn {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donate-btn:hover {
    background-color: #b71c1c;
}

/* Hero Section */
.hero {
  display: flex;              /* places hero-content and card side by side */
  align-items: center;        /* vertically center them */
  justify-content: space-between;
  padding: 3rem 2rem;
  gap: 40px;                  /* space between text and image card */
  background: linear-gradient(135deg, #f0e6ff 0%, #e8f4f8 100%);
  max-width: 1200px;
  margin: 0 auto;
}

#home.hero {
  background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
  color: #fff;
}

.hero-content {
  flex: 1;                    /* text takes available space */
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
#home.hero h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 400;
}

#home.hero .hero-content h1 {
  color: #fff;
}

.hero-content h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}

.card {
  flex: 1;
  max-width: 400px;           /* control card width */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  background: rgba(255, 255, 255, 0.85);
}

.hero-image {
  width: 100%;                /* image fills card width */
  height: auto;               /* keeps aspect ratio */
  display: block;
}
.card-content {
  padding: 20px;
}
.card-title {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
}
.card-text {
  margin: 0;
  font-size: .95rem;
  color: #333333;
}


.cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.mission-image-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.cta-btn.primary {
    background-color: #d32f2f;
    color: white;
}

.cta-btn.primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.cta-btn.secondary:hover {
    background-color: #d32f2f;
    color: white;
}

/* Mission Section */
.mission {
    padding: clamp(3rem, 6vw, 6rem) 0; /* fluid vertical spacing */
    background-color: #f9f9f9;
}

.mission-text {
    font-size: clamp(1rem, 2vw, 1.25rem); /* fluid typography */
    color: #555;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem); /* fluid spacing */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(1rem, 3vw, 2rem); /* breathing room on small screens */
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1rem, 2vw, 2rem); /* fluid gap between pillars */
}

.pillar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1.25rem, 2vw, 2rem); /* fluid padding */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.pillar-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pillar h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem); /* fluid heading size */
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.pillar p {
    font-size: clamp(0.85rem, 1.5vw, 1rem); /* fluid paragraph size */
    color: #666;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .mission-pillars {
        grid-template-columns: repeat(3, 1fr); /* 3 pillars per row */
    }
}

@media (max-width: 992px) {
    .mission-pillars {
        grid-template-columns: repeat(2, 1fr); /* 2 pillars per row */
    }
}

@media (max-width: 600px) {
    .mission-pillars {
        grid-template-columns: 1fr; /* stack pillars vertically */
    }
}

/* About Section */
.about-detail {
    padding: clamp(3rem, 6vw, 6rem) 0; /* fluid vertical spacing */
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem); /* fluid gap */
    align-items: center;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem); /* fluid text size */
    color: #555;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    text-align: center;
}

.stat {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(211, 47, 47, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.stat strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.stat span {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    opacity: 0.9;
}

.stat:hover {
    background: rgba(211, 47, 47, 0.9);
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.4);
    transform: translateY(-4px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}


/* Programs Section */
.programs {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background-color: #f9f9f9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
}

.program-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-image {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.program-card:hover .program-image {
    transform: scale(1.08);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.program-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: #1a1a1a;
}

.program-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}


/* Stories Section */
.stories {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

    .wrap {
      width: min(1100px, 92vw);
      padding: 32px 1rem;
      margin: 0 auto;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1.5rem, 3vw, 2.5rem);
      justify-items: center;
    }

    @media (max-width: 1024px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .grid { grid-template-columns: 1fr; }
    }


    @media (max-width: 768px) {
       .nav-links { flex-direction: column; 
        text-align: center; } 
      } 
      /* Mobile */ 
      @media (max-width: 480px) {
         h1 { font-size: 1.5rem; } 
         .container { padding: 0 10px; } }

    .card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      display: flex;
      flex-direction: column;
      max-width: 300px;
      width: 100%;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      background: rgba(255, 255, 255, 0.85);
    }

    .media {
      aspect-ratio: 1 / 1;
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      background: #f0f0f0;
    }

    .content {
      padding: 20px 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .title {
      margin: 0 0 8px;
      font-weight: 600;
      font-size: 1.1rem;
      color: #1a1a1a;
    }

    .desc {
      margin: 0;
      color: #666;
      font-size: 0.95rem;
    }

    .badge {
      display: inline-block;
      margin-top: 10px;
      background: color-mix(in oklab, var(--accent) 25%, white);
      color: #0b1a3a;
      font-weight: 600;
      font-size: .8rem;
      padding: 6px 10px;
      border-radius: 999px;
    }

/* Carousel Section */
.carousel-section {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f4f6f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    line-height: 1.6;
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-carousel .swiper-wrapper {
    display: flex;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel .swiper-slide {
    width: 100%;
    min-height: 400px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Swiper Pagination */
.gallery-carousel .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.gallery-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .swiper-pagination-bullet-active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Swiper Navigation Buttons */
.gallery-carousel .swiper-button-prev,
.gallery-carousel .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-carousel .swiper-button-prev:hover,
.gallery-carousel .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .swiper-button-prev {
    left: 20px;
}

.gallery-carousel .swiper-button-next {
    right: 20px;
}

.gallery-carousel .swiper-button-prev::after,
.gallery-carousel .swiper-button-next::after {
    content: '';
}

.gallery-carousel .swiper-button-prev::before {
    content: '❮';
}

.gallery-carousel .swiper-button-next::before {
    content: '❯';
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-carousel .swiper-slide {
        min-height: 300px;
    }
    
    .gallery-carousel .swiper-button-prev,
    .gallery-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-carousel .swiper-button-prev {
        left: 10px;
    }
    
    .gallery-carousel .swiper-button-next {
        right: 10px;
    }
}


        /* Footer styling */
.footer {
    background: #222;
    color: #eee;
    width: 100%;              /* Make it span the page width */
    max-width: 1200px;        /* Prevent it from being too wide */
    margin: 0 auto;           /* Center it horizontally */
    padding: 20px 0;
    box-sizing: border-box;   /* Include padding in width calculation */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 10px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Operations/Leadwell Section Styling */
.leadwell {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
}

/* Headings */
.leadwell h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  font-size: 1.8rem;
  color: #1a1a1a;
  border-bottom: 2px solid #4169E1;
}

.leadwell h2:first-of-type {
  margin-top: 0;
}

.leadwell h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.4rem;
}

/* Paragraphs & Lists */
.leadwell p {
  margin: 1rem 0;
  font-size: 1rem;
  color: #333333;
  text-align: justify;
}

.leadwell ul, .leadwell ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.leadwell li {
  margin-bottom: 0.75rem;
  color: #333333;
  line-height: 1.8;
}

/* Blockquote */
.leadwell blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(240, 230, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid #4169E1;
  font-style: italic;
  color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(65, 105, 225, 0.1);
}

/* Call-to-action box */
.leadwell .cta {
  background: rgba(65, 105, 225, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(65, 105, 225, 0.3);
  transition: all 0.3s ease;
}

.leadwell .cta h3 {
  color: #FFD700;
  margin-top: 0;
}

.leadwell .cta p {
  color: #fff;
  margin: 0.5rem 0;
}

.leadwell .cta:hover {
  background: rgba(65, 105, 225, 0.9);
  box-shadow: 0 12px 40px rgba(65, 105, 225, 0.4);
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .leadwell {
    padding: 1.5rem;
    margin: 2rem auto;
  }

  .leadwell h2 {
    font-size: 1.5rem;
  }

  .leadwell h3 {
    font-size: 1.2rem;
  }

  .leadwell p, .leadwell li {
    font-size: 0.95rem;
    color: #333333;
  }

  .leadwell ul, .leadwell ol {
    padding-left: 1.5rem;
  }

  .leadwell .cta {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .leadwell {
    padding: 1rem;
    margin: 1.5rem auto;
  }

  .leadwell h2 {
    font-size: 1.3rem;
  }

  .leadwell h3 {
    font-size: 1.1rem;
  }

  .leadwell p, .leadwell li {
    font-size: 0.9rem;
  }

  .leadwell ul, .leadwell ol {
    margin-left: 1rem;
    padding-left: 1.5rem;
  }

  .leadwell .cta {
    font-size: 0.9rem;
    padding: 1rem;
  }
}
/* Leaders Section Styling */
.leaders {
  padding: clamp(4rem, 6vw, 6rem) 2rem;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
}

.leaders h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  padding-bottom: 1rem;
}

.leaders h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4169E1, #FF6F00);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.leaders .wrap {
  max-width: 1200px;
}

/* Responsive adjustments for leaders section */
@media (max-width: 1024px) {
  .leaders {
    padding: 2.5rem 1.5rem;
  }

  .leaders h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .leaders {
    padding: 2rem 1rem;
  }

  .leaders h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .leaders {
    padding: 1.5rem 1rem;
  }

  .leaders h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* Support Page Styling */
.support-section {
  padding: clamp(3rem, 6vw, 6rem) 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.support-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  padding-bottom: 1rem;
}

.support-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4169E1, #FF6F00);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #4169E1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-top-color: #FF6F00;
  background: rgba(255, 255, 255, 0.85);
}

.card-icon {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
}

.support-card h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.support-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.payment-info {
  background: rgba(240, 244, 248, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 3px solid #4169E1;
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.08);
}

.payment-info p {
  margin: 0.5rem 0;
  color: #333;
}

.highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FF6F00;
}

.support-card .cta-btn {
  margin-top: auto;
  align-self: center;
  width: 100%;
  max-width: 200px;
}

/* Impact Section */
.impact-section {
  padding: clamp(3rem, 6vw, 6rem) 2rem;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.impact-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  padding-bottom: 1rem;
}

.impact-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF6F00, #4169E1);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.impact-card {
  background: rgba(240, 230, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(65, 105, 225, 0.2);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.08);
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(65, 105, 225, 0.2);
  border-color: #4169E1;
  background: rgba(240, 230, 255, 0.75);
}

.impact-icon {
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.impact-card h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}

.impact-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Support Section */
@media (max-width: 768px) {
  .support-section,
  .impact-section {
    padding: 2.5rem 1.5rem;
  }

  .support-section h2,
  .impact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    border-left: 4px solid #4169E1;
    border-top: none;
  }

  .support-card:hover {
    border-left-color: #FF6F00;
    border-top: none;
  }
}

@media (max-width: 480px) {
  .support-section,
  .impact-section {
    padding: 2rem 1rem;
  }

  .support-section h2,
  .impact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .support-grid,
  .impact-grid {
    gap: 1.5rem;
  }

  .payment-info {
    padding: 1rem;
  }

  .card-icon,
  .impact-icon {
    font-size: 2.5rem;
  }
}

/* ===== VODEC AFRICA DESIGN STYLES ===== */

/* Navbar Enhancement */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.donate-header-btn {
  background: #d32f2f;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.donate-header-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .donate-header-btn {
    display: none;
  }
}

/* Hero Section - VODEC Style */
.hero-vodec {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

@keyframes kenBurnsZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes kenBurnsPan {
  from {
    transform: translate(0, 0) scale(1.1);
  }
  to {
    transform: translate(-20px, -20px) scale(1);
  }
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: transform;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurnsZoom 10s linear forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 71, 42, 0.5) 0%, rgba(26, 71, 42, 0.3) 100%);
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-vodec {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: white;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content-vodec h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content-vodec p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn.primary-vodec {
  background: white;
  color: #1a472a;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary-vodec:hover {
  background: #f5f5f5;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary-vodec {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.cta-btn.secondary-vodec:hover {
  background: white;
  color: #1a472a;
  transform: translateY(-3px);
}

/* About Section */
.about-vodec {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.about-vodec h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
  text-align: center;
}

.about-vodec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-vodec-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f0f0f0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-vodec-card:hover .about-image img {
  transform: scale(1.1);
}

.about-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-vodec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.about-vodec-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a472a;
  font-weight: 700;
}

.about-vodec-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
}

.read-more {
  color: #1a472a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  color: #d32f2f;
  margin-left: 5px;
}

/* What We Do Section */
.what-we-do {
  padding: 4rem 2rem;
  background: white;
}

.what-we-do h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

/* Pop In Animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pop-in {
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
}

.cta-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #1a472a;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a472a;
  font-weight: 700;
}

.cta-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-donate { border-top-color: #d32f2f; }
.cta-partner { border-top-color: #4169E1; }
.cta-volunteer { border-top-color: #FF6F00; }

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background: white;
}

.gallery-section .container {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
  color: white;
  text-align: center;
}

.newsletter-section h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 1.5rem;
  background: white;
  color: #1a472a;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

/* Footer VODEC Style */
.footer-vodec {
  background: #1a1a1a;
  color: #ddd;
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #d32f2f;
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.social-links a {
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #d32f2f;
  transform: scale(1.2);
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d32f2f;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content-vodec h1 {
    font-size: 2.5rem;
  }
  
  .about-vodec-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-vodec {
    padding: 4rem 1.5rem;
    min-height: auto;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-btn.primary-vodec,
  .cta-btn.secondary-vodec {
    width: 100%;
  }
  
  .about-vodec-grid,
  .services-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
}

/* WhatsApp Button Styling */
.wa__btn_popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999999;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.wa__btn_popup a {
  text-decoration: none;
  display: block;
}

.wa__btn_popup_icon {
  background: #2db742;
  border-radius: 50%;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.14);
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.wa__btn_popup_icon:hover {
  background: #25a035;
  box-shadow: 0 8px 12px 2px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .wa__btn_popup {
    bottom: 20px;
    right: 20px;
  }
  
  .wa__btn_popup_icon {
    height: 48px;
    width: 48px;
    font-size: 24px;
  }
}