/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Blauer Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #2b2b88;
  border-bottom: 1px solid #ddd;
  height: 68px;
  display: flex;
  align-items: center;
}

/* Container: 3 columns for logo | nav | right actions */
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.1rem;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 48px;
  display: block;
  margin-right: 12px; /* breathing space */
  min-width: 0;
  min-height: 0;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;

}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.90rem;
  letter-spacing: 0.01em;
  padding: 0px 4px ;
  transition: color 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #ff6633;
}

/* Header actions (donate + toggle) */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto; /* push to the right */
}

/* Donate Button */
.donate-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ff6b35;
  color: #fff !important;
  padding: 0.45rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.90rem;
  text-transform: Sentence;
  border: 1px solid #fff;
  box-shadow: 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s ease-in-out;
  text-decoration: none;
  margin-left: 0;
}
.donate-btn:hover {
  background-color: #ff8835;
}
.donate-btn i {
  font-size: 1.2rem;
  margin-right: 0.55rem;
}

/* Mobile nav toggle button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
}

/* Dropdown menu (unchanged) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2b2b88;
  list-style: none;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
  margin: 0 1.5rem;
  display: block;
}

/* Mobile Styles */
@media (max-width: 980px) {
  .site-header .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  .main-nav ul {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 0;
  }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px; /* height of header */
    left: 0;
    width: 100%;
    background: #2b2b88;
    z-index: 1000;
    flex-direction: column;
  }
  .main-nav.open {
    display: flex !important;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.25rem 1.5rem;
  }
  .main-nav ul li a {
    font-size: 1rem;
    padding: 0.65rem 0;
  }
  .header-right {
    gap: 0.7rem;
  }
  .donate-btn {
    padding: 0.38rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    justify-content: center;
    text-transform: none;
    border: 3;
  }
  .donate-btn .donate-text {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* Uniform size for donate button inside mobile menu */
.nav-menu .donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: 4px;
  background-color: #ff6b35;
  color: white;
  font-weight: 700;
  text-align: center;
  margin: 0.5rem 0;
}

/* End of header */








/* Hero section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen */
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* slightly darker */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start; /* align to left */
    align-items: center; /* lower position */
    height: 100%;
    text-align: left;
    padding: 0 20px; /* padding bottom to push content lower */
}

.hero-content {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.8rem; /* adjust so it fits on one line*/
    margin-bottom: 10px; /* space between title and subtitle */
    color: #fff; /* text color */
    font-weight: 700; 
    line-height: 1; /* tighter line height for better fit */
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-content .btn-orange {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ff6633; /* Spursbase color */
    color: #fff;
    border-radius: 4px; /* small corners */
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-content .btn-orange:hover {
    background-color: #ff6633;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
/* Hero section end */

/* Empowered Section */
.empowered-section {
    background-color: #f5f7fb;
    padding: 80px 20px;
}

.empowered-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.empowered-text {
    flex: 1 1 450px;
}

.empowered-text h2 {
    font-size: 2.8rem;
    color: #2b2b88;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
}

.empowered-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
}

.empowered-cta {
    display: flex;
    min-width: 100%;
    gap: 15px;
   
    
}
.empowered-cta a {
    display: inline-block;
    background-color: #ff6633; /* Spursbase color */
    color: #fff;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    height: 40px;
    width: 200px;
    text-align: center;
    line-height: 40px; /* vertically center text */
}
.empowered-cta a:hover {
    background-color: #333399; /* darker on hover */
    transition: ease-in;
    transition: opacity 0.3s ease-in;
}

.empowered-images {
    flex: 1 1 450px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.empowered-images img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.empowered-images img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .empowered-content {
        flex-direction: column;
        text-align: center;
    }

    .empowered-cta {
        justify-content: center;
    }
}

/* Give Now Style Section */
.give-now-section {
    position: relative;
    background: url('img/Middle\ 2-09.png') no-repeat center center;
    background-size: cover;
    height: 500px; /* you can adjust the height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.give-now-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.give-now-content {
    color: #fff;
    text-align: left;
    max-width: 1150px;
    padding: 0 20px;
}

.give-now-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.give-now-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-right: 90px; /* padding to prevent text overflow */
}

.btn-give {
    display: inline-block;
    background-color: #ff6600; /* choose your primary color */
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-give:hover {
    background-color: #e65c00; /* darker on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .give-now-section {
        height: 400px;
    }

    .give-now-content h2 {
        font-size: 2rem;
    }

    .give-now-content p {
        font-size: 1.1rem;
    }
}



/* What We Do Section */
.what-we-do-section {
    position: relative;
    background: url('img/DSC05264.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 20;
    z-index: 1; /* ensure it is above other content */
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
}

.what-we-do-overlay {
    position: relative;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    z-index: 02; /* ensure it is above the background image */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
    padding: 80px 20px; /* padding for content */
}

.what-we-do-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    z-index: 3; /* ensure it is above the overlay */
}

.what-we-do-content h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: #fff; /* red like your example */
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.what-we-do-card {
    background-color: rgba(255, 255, 255, 0.1); /* slight white tint */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.what-we-do-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.what-we-do-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .what-we-do-content h2 {
        font-size: 2rem;
    }

    .what-we-do-card img {
        height: 180px;
    }
}
/* End of what we do*/


/* Latest Projects Section */
.latest-projects {
    padding: 80px 20px;
    background-color: #fff;
}

.latest-projects .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.latest-projects h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333399; /* red like your example */
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.project-meta .arrow {
    font-size: 1.2rem;
    color: #ff6633;
}

/* Responsive */
@media (max-width: 768px) {
    .latest-projects h2 {
        font-size: 2rem;
    }

    .project-card img {
        height: 200px;
    }
}

/* Donation Section */
.donate-section {
    display: flex;
    justify-content: center;
    background-color: #e9eaf3; /* light grey like your screenshot */
    padding: 4rem 2rem;
}

.donation-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.donate-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
}

.donate-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #000;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #f4f5f9;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #333;
}

.donate-button {
    background-color: #ff6633;
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background 0.3s;
}

.donate-button:hover {
    background-color: #333399;
}

.donate-images {
    position: relative;
    width: 400px;  /* You can adjust this size */
    height: 400px;
    margin: 0 auto;
}

.donate-images img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    width: 200px; /* adjust as needed */
}

/* Top (North) image */
.donate-images .img-north {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Bottom (South) image */
.donate-images .img-south {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Left (West) image */
.donate-images .img-west {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Right (East) image */
.donate-images .img-east {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.donate-images img:hover {
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
    .donation-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .donate-form-card {
        max-width: 100%;
    }

    .donate-images {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        position: static;
    }

    .donate-images img {
        position: static;
        width: 45%;
    }
}
  /* End donation section*/





  
/* About page*/
.about-hero {
    background: url('img/DSC03413.jpg') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
  }
  
  .about-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    color: #fff;
  }
  
  .about-hero h1 {
    font-size: 45px;
    margin-bottom: 5px;
    max-width: 900px; /* Limit width to prevent overflow */
    margin-left: auto;
    margin-right: auto;


  }
  
  .about-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.2; /* Adjust line height for better readability */
    max-width: 700px; /* Limit width to prevent overflow */
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Center text for better appearance */
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 850px;
  }
  
  .about-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-box i {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .about-box span {
    font-size: 16px;
    font-weight: bold;
  }
  
  .about-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh; /* Reduce height to fit smaller screens better */
    padding: 40px 15px; /* Reduce padding */
  }

  .about-overlay {
    padding: 30px 15px; /* Reduce padding inside overlay */
    text-align: center; /* Center text on small screens */
    align-items: center;
  }

  .about-hero h1 {
    font-size: 28px; /* Smaller heading font */
    max-width: 100%; /* Remove width limit */
    margin-left: 0;
    margin-right: 0;
  }
  
  .about-hero p {
    font-size: 16px; /* Slightly smaller font */
    line-height: 1.4; /* Improve readability */
    max-width: 100%; /* Remove width limit */
    margin-left: 0;
    margin-right: 0;
    text-align: center; /* Center paragraph text on mobile */
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    max-width: 100%;
    gap: 15px;
    padding: 0 10px; /* optional padding */
  
  }
  
  .about-box {
    padding: 15px;
    align-items: center; /* Keep icon/text centered */
  }
  
  .about-box i {
    font-size: 28px; /* Slightly smaller icon */
    margin-bottom: 8px;
  }
  
  .about-box span {
    font-size: 14px;
  }
}


/* End of about page */ 






/* Impact page */
/* Intro CTA Section */
.impact-intro {
    background-color: var(--primary-bg);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.impact-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.impact-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hero Section */
.impact-hero {
    position: relative;
    background: url('img/DSC05721.jpg') center center / cover no-repeat;
    height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
}

.impact-hero::before {
    content: '';
    position: absolute;
    text-align: left;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Single, nice readable overlay */
    z-index: 1;
}
.impact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}   

.impact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center; /* Center text for better appearance */
}

.impact-hero p {
    font-size: 18px;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Center text for better appearance */
    color: #fff;
}

/* Hero Button */
.hero-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #e65500;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-stat h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.impact-stat p {
    font-size: 1rem;
    color: var(--text-light);
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.impact-cta {
    background-color: var(--primary-bg);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.impact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.impact-cta .cta-subtext {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.impact-cta .cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.impact-cta .cta-box {
    background-color: var(--secondary-bg);
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-cta .cta-box img {
    max-width: 80px;
    margin-bottom: 20px;
}

.impact-cta .cta-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.impact-cta .cta-box p {
    font-size: 1rem;
    color: var(--text-light);
}

.impact-cta .cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* CTA Button */
.cta-button {
    text-align: center;
}

.cta-button .button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button .button:hover {
    background-color: #e65500;
}

/* Impact Grid Section */
.impact-links {
    background-color: #f5f5f5;
    padding: 80px 40px;
    text-align: center;
}

.impact-links-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.2;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 2fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-box {
    background: white;
    border-radius: 14px;
    padding: 40px 25px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

.impact-box i {
    font-size: 48px;
    color: #ff6633;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: #ff6633; /* Highlight border on hover */
}

.impact-box:hover i {
    transform: scale(1.15) rotate(5deg);
}

.impact-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 12px;
    color: var(--text-dark);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .impact-hero h1 {
        font-size: 2.5rem;
    }

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

    .impact-intro h2,
    .impact-links-title {
        font-size: 2rem;
    }
}

/* Impact page End */






/* BLOG PAGE STYLES */

/* Hero Section */
.blog-hero {
    background: url('img/IMG_0093.jpg') center/cover no-repeat;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
}

.blog-hero-overlay {
    color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
   padding: 80px;  /* Optional: padding for content */
}
.blog-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px; /* Optional: control text width */
    color: #fff;
    padding: 20px;
    text-align: left; /* Center text for better appearance */ 
    display: flex;
    flex-direction: column;
    align-items: left ; /* Align text to the left */
}

.blog-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.8;
    margin-bottom:-15px;
    text-align: left; /* Align text to the left */
}

.blog-hero p {
    font-size: 18px;
    margin-bottom: 0px;
    max-width: 600px; /* Optional: control text width */
    line-height: 1.5; /* Adjust line height for better readability */
    text-align: left; /* Align text to the left */
}

/* Featured Blog */
.featured-blog {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-blog-image {
    flex: 1 1 50%;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-blog-content {
    flex: 1 1 50%;
    padding: 30px;
    background-color: #fff;
}

.featured-blog-content h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.featured-blog-content p {
    color: #666;
    margin-bottom: 10px;
}

.featured-date {
    display: block;
    margin-bottom: 20px;
    color: #999;
    font-size: 0.9rem;
}

.featured-blog-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6633;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2b3a67;
    margin-bottom: 10px;
}

.blog-card-content p {
    flex-grow: 1;
    color: #555;
    margin-bottom: 15px;
}

.blog-card-content .read-more {
    align-self: start;
    padding: 8px 16px;
    background-color: #ff6633;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.read-more {
    text-decoration: none;
    color: #fff;
    background: #ff6633;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #ff6633;
}
/* Responsive */
@media (max-width: 768px) {
    .featured-blog {
        flex-direction: column;
    }
}


/* Each blog Page */








/* GET INVOLVED HERO */
.get-involved-hero {
    position: relative;
    background: url('img/DSC00214.jpg') center center / cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
}

.get-involved-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.get-involved-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.get-involved-hero-content h1 {
    font-size: 45px;
    margin-bottom: 1px;
    font-weight: 800;
    text-align: left;
}

.get-involved-hero-content p {
    font-size: 18px;
    color: #eee;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Center text for better appearance */
    color: #fff;
}

/* GET INVOLVED GRID */
.get-involved-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.involve-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.involve-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.involve-box h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.involve-box p {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0 20px 20px;
}

.involve-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .get-involved-hero-content h1 {
        font-size: 2.2rem;
    }

    .get-involved-hero-content p {
        font-size: 1rem;
    }
}
/* End of Get Involved Page */






/* CONTACT HERO */
.contact-hero {
    position: relative;
    background: url('img/DSC05274.jpg') center center / cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: 800;
    text-align: left; /* Center text for better appearance */
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #eee;
    line-height: 1.;
    max-width: 700px;
    margin: 0 auto 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Center text for better appearance */
    color: #fff;
}

/* CONTACT SECTION */
.contact-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* CONTACT FORM */
.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button.button {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

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





/* SPONSOR PAGE STYLES */

/* Hero */
.sponsor-hero {
    background: url('img/DSC06337.jpg') center/cover no-repeat;
    padding: 6rem 1rem;
    color: white;
    text-align: center;
    position: relative;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
  }
  
  .sponsor-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* overlay */
}
    .sponsor-hero-content {
        position: relative;
        z-index: 1; /* Ensure content is above overlay */
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
}
 
.sponsor-hero-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    font-weight: 800;
    text-align: center; /* Center text for better appearance */
}
  
  .sponsor-hero-content p {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #eee;
    line-height: 1.;
    max-width: 700px;
    margin: 0 auto 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: flex; /* Center text for better appearance */
    color: #fff;
    z-index: 1; /* Ensure text is above overlay */
  }
  
  /* Info Section */
  .sponsor-info {
    padding: 4rem 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .sponsor-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .sponsor-info p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #444;
  }
  
  .sponsor-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .sponsor-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 250px;
    text-align: left;
  }
  
  .sponsor-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .sponsor-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 1rem;
  }
  
  .sponsor-card p {
    font-size: 0.95rem;
    margin: 0 1rem 1rem;
    color: #555;
  }
  
  /* Donation Form Section */
.donation-form-section {
    background: #161f5d; /* dark blue background */
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 1rem;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
  }
  
  /* Form Container */
  .donation-form-container {
    background: white;
    color: #222;
    border-radius: 10px;
    padding: 1.5rem;
    width: 400px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Form Heading */
  .donation-form-container h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  /* Form Structure */
  .donation-form-container form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  
  /* Labels */
  .donation-form-container label {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.3rem;
  }
  
  /* Inputs & Textareas */
  .donation-form-container input,
  .donation-form-container textarea,
  .donation-form-container select {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #f6f7f9;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  /* Focus style */
  .donation-form-container input:focus,
  .donation-form-container textarea:focus {
    border-color: #f5690b;
    box-shadow: 0 0 0 2px rgba(245, 105, 11, 0.2);
    outline: none;
  }
  
  /* Button */
  .donation-form-container button {
    background: #f5690b;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
  }
  
  .donation-form-container button:hover {
    background: #e25d06;
    }

    /* Right Side Image */
    .donation-side-image img {
    width: 800px;
    max-width: 100%;
    border-radius: 12px;
  }
  

  /* Bank Details Section */
  .bank-details-section {
    padding: 3rem 1.5rem;
    background: #f9f9f9;
    text-align: center;
  }
  
  .bank-details-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .bank-details-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #444;
  }
  
  .cta-button {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: #f5690b;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .bank-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .bank-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .bank-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .bank-card p {
    font-size: 1rem;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .donation-form-section {
      flex-direction: column;
      align-items: center;
    }
  
    .donation-side-image img {
      width: 100%;
      max-width: 350px;
    }
  
    .sponsor-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .bank-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  






  /* Donation Hero Section */
  .main-donation-section {
    font-family: Blauer Nue, sans-serif;
}

.hero-section {
    background: url('img/IMG_0091.jpg') center/cover no-repeat;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* align text to left */
    padding-left: 8%;
    padding: 0 20px;
    color: #fff;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    background-position: 50% 20%;
    font-family: Blauer Nue, sans-serif;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* dark overlay */
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    position: relative; /* important! */
    z-index: 2; /* place text on top of overlay */
    color: #fff;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
    font-weight: 700;
    color: #fff;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
}

.donation-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.donation-form-container {
    background-color:url('img/DSC02112.jpg');
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.main-donation-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.main-donation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.main-donation-form-wrapper {
  flex: 1 1 500px;
}

.main-donation-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-donation-form h2 {
  margin-bottom: 20px;
}

.main-donation-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

.main-donation-form input,
.main-donation-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
}

.main-donation-checkbox {
  display: flex;
  align-items: center;          /* ✅ vertically align center */
  gap: 5px;                    /* space between checkbox and label */
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
  justify-self: flex-start; /* Align checkbox to the left */
}

.main-donation-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
}

.main-donate-button {
  background-color: #ff6633;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.main-donate-button:hover {
  background-color: #1f2296;
}

.main-donation-image-wrapper {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.main-donation-image-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

  .main-donation-image-wrapper img {
    width: 90%;
  }
}
/* Donation Section End  */









/* Founder Message Styles */
/* Founder Banner */
.founder-banner {
  background: url('img/DSC03825.jpg') center/cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
   background-size: cover;
  background-position: center top;
  background-position: 50% 20%;
}

.founder-banner-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-banner-overlay h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  text-align: bottom;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 40px;
  font-size: 1rem;
  background-color: #f7f7f7;
  color: #666;
  text-align: center;
}

.breadcrumb a {
  color: #0073e6;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Founder Message Section */
.founder-message-section {
  padding: 60px 40px;
  background: #fff;
}

.founder-message-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.founder-image {
  flex: 0 0 280px;
}

.founder-image img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Text Styling */
.founder-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.founder-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.founder-text blockquote {
  margin: 30px 0;
  padding-left: 20px;
  border-left: 4px solid #ff6633;
  color: #555;
  font-style: italic;
  font-size: 1.05rem;
}

/* Founder Signature Block */
.founder-signoff {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.founder-signoff img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-signoff p {
  margin: 4px 0;
  font-size: 1rem;
  color: #111;
  line-height: 1.6;
  text-align: left;
}

.founder-signoff strong {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 5px;
}
/* Founder Message End */









/* Board Section Styles */
/* Hero Section */
.leadership-hero {
  background: url('img/DSC03304.jpg') center/cover no-repeat;
  height: 320px;
  position: relative;
   background-size: cover;
  background-position: center top;
  background-position: 50% 20%;
}

.leadership-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.leadership-title {
background-color: #ff6633;
  color: white;
  padding: 15px 30px;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left; /* Align text to the right */
}

.leadership-title .back-arrow {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Breadcrumbs */
.breadcrumb-nav {
  font-size: 0.95rem;
  padding: 0 20px;
  color: #888;
  background: #f7f7f7;
   display: flex;
  justify-content: flex-start; /* ✅ centers it horizontally */
  align-items: center;
  text-align: left; /* Align text to the left */
  padding-left: 80px; /* Add padding to the left for spacing */
  font-weight: 400;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #888;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: #000;
  font-weight: 500;
}

/* Tabs */
.leadership-tabs {
  display: flex;
  gap: 30px;
  padding: 0 40px 30px;
  margin-top: 10px;
  border-bottom: 2px solid #eee;
  justify-content: center;
}

.tab {
  background: none;
  border: none;
  font-size: 1rem;
  color: #777;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.tab.active {
  color: #ff6633;
  font-weight: bold;
  border-bottom: 2px solid #ff6633;
}

.board-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

/* Grid Layout */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Default Board Card */
.board-card {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 260px;
text-align: left; /* Align text to the left */

}

.board-card:hover {
  transform: translateY(-5px);
}

.board-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Footer for Each Card */
.card-footer {
  background-color: #333399;
  padding: 15px 10px;
  color: #fff;
}

.card-footer .name {
  font-weight: bold;
  margin: 0;
  font-size: 1rem;
}

.card-footer .role {
  margin-top: 5px;
  color: #ff6633;
  font-size: 0.85rem;
}

/* 🎯 Featured (Founder) Card */
.board-card.featured {
  grid-column: span 2;
  max-width: 540px;
}

.board-card.featured img {
  height: 420px;
  object-position: center top;
  transform: scale(1.08);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Optional Hover Zoom on Featured */
.board-card.featured:hover img {
  transform: scale(1.12);
}

/* Featured Footer Tweaks */
.card-footer.featured-footer .name {
  font-size: 1.3rem;
}

.card-footer.featured-footer .role {
  font-size: 1.05rem;
  color: #ff6633;
}


/* Responsive Styles */






/* Who We Are Styles */

/* HERO BANNER */
.who-hero {
  background: url('img/DSC05549.jpg') center/cover no-repeat;
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-position: 50% 20%;
}

.who-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.who-label {
  background-color: #ff6633;
  color: #fff;
  font-weight: bold;
  padding: 15px 25px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.back-arrow {
  font-size: 1rem;
  cursor: pointer;
}

/* MAIN CONTENT */
.who-content {
  background-color: #fefefe;
  padding: 60px 20px;
  font-family: 'Blauer Neue', sans-serif;
}

.who-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: justify;
}

.who-container h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.who-container p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

/* VISION + MISSION CARDS */
.vm-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vm-card {
  background: #f5f5f5;
  border-left: 5px solid #ff6633;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.vm-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #333;
}

.vm-card p {
  font-size: 0.95rem;
  color: #555;
}
ul.principles, ul.impact {
      padding-left: 20px;
      margin-top: 20px;
    }

    ul.principles li, ul.impact li {
      margin-bottom: 10px;
      line-height: 1.6;
    }

/* SDG Image */
.sdg-img {
  width: 100px;
  margin-top: 30px;
}







/* WHAT WE DO SECTION */

.what-content {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Blauer Neue', sans-serif;
  color: #333;
}

.what-content p,
.what-content li {
  text-align: justify;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.what-content h3 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #222;
  border-left: 5px solid #ff6633;
  padding-left: 10px;
}

.what-programs,
.what-approach,
.what-promise {
  list-style-type: disc;
  padding-left: 25px;
}

.what-programs li,
.what-approach li,
.what-promise li {
  margin-bottom: 15px;
}

/* END OF WHAT WE DO STLYE */




/* MISSION PAGE STYLES */

@import url('https://fonts.googleapis.com/css2?family=Blauer+Neue&display=swap');

.mission-content {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Blauer Neue', sans-serif;
  color: #333;
  animation: fadeIn 1.2s ease-in-out;
}

.mission-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content p,
.mission-content li {
  text-align: justify;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.mission-content h3 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #222;
  font-weight: 600;
  position: relative;
  padding-left: 12px;
  border-left: 5px solid #ff6633;
}

.mission-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: #ff6633;
  display: block;
  margin-top: 6px;
}

.mission-points {
  list-style-type: disc;
  padding-left: 25px;
}

.mission-points li {
  margin-bottom: 15px;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-content {
    padding: 40px 15px;
  }

  .mission-content h3 {
    font-size: 1.3rem;
  }

  .mission-content p,
  .mission-content li {
    font-size: 1rem;
  }
}

/* End of Mission Page Styles */




/* VISION PAGE STYLES */

@import url('https://fonts.googleapis.com/css2?family=Blauer+Neue&display=swap');

.vision-content {
  padding: 60px 20px;
  background-color: #fdfdfd;
  font-family: 'Blauer Neue', sans-serif;
  color: #333;
  animation: fadeIn 1.2s ease-in-out;
}

.vision-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.vision-content p {
  text-align: justify;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Optional: Fade-in animation reused */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .vision-content {
    padding: 40px 15px;
  }

  .vision-content p {
    font-size: 1rem;
  }
}
/* End of Vision Page Styles */







/* SDG Wheel Styles */
@import url('https://fonts.googleapis.com/css2?family=Blauer+Neue&display=swap');

.sdg-wheel {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Blauer Neue', sans-serif;
  text-align: left;
}

.sdg-wheel h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.sdg-wheel p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #333;
}

/* Wheel Container */
.sdg-grid {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

/* Center SDG 4 */
.sdg-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #ff6633;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  text-align: center; /* Align text to the left */
}

.sdg-center img {
  width: 90px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
}

.sdg-center img:hover {
  transform: scale(3.25);
  box-shadow: 0 0 20px rgba(255, 102, 51, 0.4);
}

.sdg-center p {
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 10px;
  color: #222;
}

/* Common Styles for Outer SDG Icons */
.sdg-icon {
  width: 75px;
  height: auto;
  position: absolute;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.sdg-icon:hover {
  transform: scale(2.15);
  box-shadow: 0 0 15px rgba(255, 102, 51, 0.3);
}

/* Positioning Outer Icons Around Circle */
.sdg-1  { top: 0%;   left: 50%;  transform: translate(-50%, 0); }
.sdg-2  { top: 12%;  left: 76%;  transform: translate(-50%, -50%); }
.sdg-3  { top: 30%;  left: 93%;  transform: translate(-50%, -50%); }
.sdg-5  { top: 50%;  left: 100%; transform: translate(-50%, -50%); }
.sdg-6  { top: 70%;  left: 92%;  transform: translate(-50%, -50%); }
.sdg-7  { top: 86%;  left: 75%;  transform: translate(-50%, -50%); }
.sdg-8  { top: 100%; left: 50%;  transform: translate(-50%, -100%); }
.sdg-9  { top: 86%;  left: 25%;  transform: translate(-50%, -50%); }
.sdg-10 { top: 70%;  left: 8%;   transform: translate(-50%, -50%); }
.sdg-11 { top: 50%;  left: 0%;   transform: translate(50%, -50%); }
.sdg-12 { top: 30%;  left: 7%;   transform: translate(-50%, -50%); }
.sdg-13 { top: 12%;  left: 25%;  transform: translate(-50%, -50%); }
.sdg-14 { top: 20%;  left: 60%;  transform: translate(-50%, -50%); }
.sdg-15 { top: 80%;  left: 60%;  transform: translate(-50%, -50%); }
.sdg-16 { top: 80%;  left: 40%;  transform: translate(-50%, -50%); }
.sdg-17 { top: 20%;  left: 40%;  transform: translate(-50%, -50%); }

/* Responsive Design */
@media (max-width: 768px) {
  .sdg-grid {
    width: 450px;
    height: 450px;
  }

  .sdg-icon {
    width: 55px;
  }

  .sdg-center {
    width: 140px;
    height: 140px;
  }

  .sdg-center img {
    width: 70px;
  }

  .sdg-center p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sdg-grid {
    width: 360px;
    height: 360px;
  }

  .sdg-icon {
    width: 45px;
  }

  .sdg-center {
    width: 120px;
    height: 120px;
  }

  .sdg-center img {
    width: 60px;
  }

  .sdg-center p {
    font-size: 0.75rem;
  }
}

/* End of SDG Wheel Styles */



















/* Footer Styles */
.site-footer {
    background: url('img/Footer.png') no-repeat center center/cover;
    color: white;
    padding: 50px 20px 20px 20px;
   font-family: 'Blauer Neue', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ff6600;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form .btn-orange {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form .btn-orange:hover {
    background-color: #e05500;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: #ff6600;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        max-width: 300px;
    }
}
