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

/* CSS Variables */
:root {
    --primary-color: #1d2150;
    --accent-color: #438e6c;
    --white: #ffffff;
    --light-color: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

/* Body font */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Top Header */
.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    padding: 10px 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Slogan and Contact Info */
.slogan {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
}

/* Animation Keyframes */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply to slogan */
.animate-slogan {
    animation: slideFadeIn 1.5s ease-in-out;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 40px;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
    opacity: 0.2;
}

.nav-links li a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.donate-btn {
    background-color: var(--accent-color);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(72, 184, 74, 0.3);
}

.donate-btn:hover {
    background-color: #3a9d3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(72, 184, 74, 0.4);
}

/* Hero Section */
.hero {
    background: url('hero1.jpg') center/cover no-repeat;
    color: var(--primary-color);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeUp 1s ease-in-out;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeUp 1.5s ease-in-out;
    color: var(--primary-color);
}

.hero-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
}

.hero-row h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.hero-row .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 2s ease-in-out;
    width: 100%;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #3a9d3c;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
}

.donate-cta {
    background: #fbbf24;
    color: var(--primary-color) !important;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.donate-cta:hover {
    background: #f59e0b;
    color: var(--white) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(251, 191, 36, 0.5);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Section */
.about-us {
    padding: 80px 0;
    background-color: var(--light-color);
    width: 100%;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 800px; /* Limit width for better readability */
    text-align: center; /* Center text for index.html */
    padding: 20px; /* Add padding for spacing */
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

.about-list {
    list-style: none;
    margin: 25px 0;
    text-align: left; /* Keep list left-aligned for readability */
    display: inline-block; /* Center the list within the text block */
}

.about-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-list i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}

.about-belief {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin-top: 30px;
    display: inline-block; /* Center the belief statement */
}

/* News & Events Section */
.news-events {
    padding: 80px 0;
    background-color: var(--white);
    width: 100%;
}

.news-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.news-card {
    flex: 1 1 30%;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    width: 50px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    display: block;
}

.news-content {
    padding: 15px;
    flex-shrink: 0;
    text-align: left;
}

.news-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.news-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--accent-color);
}

.news-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
    text-align: center;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-gray);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light-color);
    width: 100%;
}

.mission-vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.mission, .vision, .values {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.mission h3, .vision h3, .values h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission p, .vision p, .values p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Founder Section */
.founder {
    padding: 80px 0;
    background-color: var(--white);
    width: 100%;
}

.founder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background-color: var(--light-color);
    width: 100%;
}

.breadcrumbs .container {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--gray);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Designer link style */
.designer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: var(--white);
    text-decoration: underline;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        background-color: var(--white);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        margin-left: 0;
    }

    .nav-links.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .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);
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .about-text {
        width: 100%;
        max-width: 600px; /* Slightly smaller max-width for mobile */
    }

    .founder-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .founder-image {
        width: 100%;
        max-width: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-row {
        flex-direction: column;
        align-items: center;
    }
    
    .top-header .container {
        justify-content: center;
    }
    
    .slogan {
        text-align: center;
    }
}
/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-form-container {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  position: relative;
}

.contact-form {
  flex: 2;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(72, 184, 74, 0.2);
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
}

.contact-info-sidebar {
  flex: 1;
}

.contact-info-sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-method h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--gray);
  line-height: 1.5;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* Success Message Styles */
.form-success {
  background-color: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border-left: 4px solid #28a745;
}

.form-success i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Loading State */
.form-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit-btn.loading i {
  display: none;
}

.form-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-method i {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* Donor Page Specific Styles */
.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text h4 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.founder-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    text-align: center;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
}

.founder-quote footer {
    margin-top: 15px;
    font-weight: 600;
    color: var(--accent-color);
}

.social-media {
    margin: 30px 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link i {
    margin-right: 8px;
}

.contact-info-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.contact-info-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info-card p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Responsive adjustments for donor page */
@media (max-width: 768px) {
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .founder-quote blockquote {
        font-size: 1.1rem;
    }
}
/* ===== About Us Text Centering Fixes ===== */
.about-text {
  text-align: center;
}

.about-text p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; /* keeps lines readable */
}

.about-list {
  text-align: center;
  display: inline-block; /* center the list block */
  margin: 25px auto;
}

.founder-quote {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}
/* ===== ABOUT US — FORCE PROPER CENTERING ===== */

/* 1) Stack the About Us section vertically so text can center nicely */
.about-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 2) Center all copy in the section header (title + subtext) */
.about-us .section-header,
.about-us .section-header p {
  text-align: center !important;
  width: 100%;
}

/* 3) Center all body copy in About text area */
.about-us .about-text {
  text-align: center !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-us .about-text p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

/* 4) Center the list as a block, keep items readable (left) */
.about-us .about-list {
  display: inline-block;
  text-align: left;
  margin: 25px auto;
}

/* 5) Center the founder quote nicely */
.about-us .founder-quote,
.about-us .founder-quote blockquote {
  text-align: center !important;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* ===== About Us Heading & Subheading Spacing ===== */
.about-us .section-header .section-title {
  margin-bottom: 10px; /* reduce space under heading */
}

.about-us .section-header p {
  margin-top: 0;
  margin-bottom: 25px; /* adjust gap before content starts */
  font-size: 1.1rem;
  color: var(--gray);
}
/* ===== Fix About Us Text Alignment ===== */
.about-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* ensures text is centered */
}

.about-us .about-text {
  max-width: 800px;      /* keep it readable */
  margin: 0 auto;        /* center block */
  text-align: center;    /* center headings + text */
}

.about-us .about-text p {
  margin: 0 auto 20px;   /* space between paragraphs */
  text-align: center;
  line-height: 1.7;
  color: var(--gray);
}
.about-simple {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-simple h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.about-simple p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.mission-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-left: 20px;
  list-style: disc;
}

.mission-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.stakeholder-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
}

.stakeholder-table th,
.stakeholder-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  font-size: 1rem;
}

.stakeholder-table th {
  background-color: #005b96;
  color: #fff;
  font-weight: 600;
}

.stakeholder-table tr:nth-child(even) {
  background-color: #f2f2f2;
}
/* Donation Section Styles */
.donation-section {
    padding: 80px 0;
    background-color: var(--light-color);
    width: 100%;
}

.donation-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.donation-options {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.donation-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.donation-card.highlighted {
    border: 2px solid var(--accent-color);
    position: relative;
}

.donation-card.highlighted::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.donation-header {
    margin-bottom: 20px;
}

.donation-header i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.donation-header h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.donation-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 12px;
    background: var(--light-color);
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, .amount-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.custom-amount {
    text-align: left;
}

.custom-amount label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 15px;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 1;
}

.custom-amount input {
    width: 100%;
    padding: 12px 15px 12px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(72, 184, 74, 0.2);
}

.donation-form-container {
    flex: 1;
    min-width: 300px;
}

.donation-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.donation-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.donation-impact {
    margin-top: 60px;
    text-align: center;
}

.donation-impact h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.impact-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.impact-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .donation-content {
        flex-direction: column;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}
/* Founder Section */
.founder {
    padding: 80px 0;
    background-color: var(--white);
    width: 100%;
}

.founder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.founder-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}