@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@500;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #1F2937;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #1E40AF;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: #1E40AF;
    padding: 1rem;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.logo img {
    height: 84px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a.active {
    color: #FFFFFF;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn-donate {
    background: #FFFFFF;
    color: #1E40AF;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-donate:hover {
    background: #F8FAFC;
}

.btn-secondary {
    background: #1E40AF;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #1E3A8A;
}

/* Home Page */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/banner.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.banner h1, .banner h2, .banner h3, .banner h4 {
    color: #ffffff;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner .caption {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.mission-statement {
    padding: 4rem 2rem;
    background: #F3F4F6;
}

.mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.verse {
    font-style: italic;
    color: #475569;
    border-left: 4px solid #FFFFFF;
    padding-left: 1rem;
    margin: 1rem 0;
}

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

.mission-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-block:hover {
    transform: translateY(-5px);
}

.call-to-action {
    grid-column: 1 / -1;
    background: #1E40AF;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.call-to-action h1, .call-to-action h2, .call-to-action h3, .call-to-action h4 {
    color: #ffffff;
}

.call-to-action .btn-donate {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #F3F4F6;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/1740203961546.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.about-hero h1, .about-hero h2, .about-hero h3, .about-hero h4 {
    color: #ffffff;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.mission-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

blockquote {
    font-style: italic;
    color: #475569;
    border-left: 4px solid #FFFFFF;
    padding-left: 1rem;
    margin: 2rem 0;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.history-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
    text-align: center;
}

.history-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-section {
    padding: 4rem 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/contact.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.contact-hero h1, .contact-hero h2, .contact-hero h3, .contact-hero h4 {
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.contact-hero p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-form-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1E40AF;
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus,
form textarea:focus {
    border-color: #FFFFFF;
    outline: none;
}


/* Projects Page */
.projects-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url('../images/projects-hero.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.projects-hero h1, .projects-hero h2, .projects-hero h3, .projects-hero h4 {
    color: #ffffff;
}

.projects-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.projects-hero p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.projects-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

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

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1E40AF;
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #475569;
}

.impact-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.impact-stats li {
    font-size: 0.9rem;
    color: #475569;
    background: #F3F4F6;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.impact-stats strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Get Involved Page */
.involve-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/get-involved.jpg');
    background-size: cover;
    background-position: center top;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.involve-hero h1, .involve-hero h2, .involve-hero h3, .involve-hero h4 {
    color: #ffffff;
}

.involve-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.involve-hero p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.involvement-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
}

.involvement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.option-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1E40AF;
}

.option-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #475569;
}

.impact-story {
    background: #F3F4F6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.impact-story h4 {
    font-size: 1.2rem;
    color: #1E40AF;
    margin-bottom: 0.5rem;
}

.impact-story p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Events Page */
.events-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/events.png');
    background-size: cover;
    background-position: center 40%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.events-hero h1, .events-hero h2, .events-hero h3, .events-hero h4 {
    color: #ffffff;
}

.events-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.events-hero p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.events-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.event-date {
    background: #FFFFFF;
    color: white;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 1.5rem;
}

.event-details {
    padding: 1.5rem;
    text-align: center;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1E40AF;
}

.event-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #475569;
}

.event-details strong {
    color: #1E40AF;
    font-weight: 600;
}

.impact-story {
    background: #F3F4F6;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.impact-story h4 {
    font-size: 1.2rem;
    color: #1E40AF;
    margin-bottom: 0.5rem;
}

.impact-story p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Blog Page */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)), url('../images/projects-hero1.jpg');
    background-size: cover;
    background-position: center 50%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.blog-hero h1, .blog-hero h2, .blog-hero h3, .blog-hero h4 {
    color: #ffffff;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.blog-hero p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Donation Page */
.donation-section {
    padding: 4rem 2rem;
    background: #F3F4F6;
}

.donation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.donation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.security-note {
    color: #FFFFFF;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

input[type="text"],
input[type="email"],
input[type="number"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-option {
    background: #F3F4F6;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-option:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-option {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.method-option:has(input[type="radio"]:checked) {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: white;
}

.method-option input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-option input[type="radio"]:checked {
    border-color: white;
    background-color: white;
}

.method-option input[type="radio"]:checked::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.impact-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.impact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F3F4F6;
    border-radius: 8px;
}

.impact-icon {
    font-size: 1.5rem;
}

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CTA Section */
.cta-section {
    background: #1E40AF;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4 {
    color: #ffffff;
}

/* Footer */
footer {
    background: #1E40AF;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 64px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
        background: #1E40AF;
        border-radius: 8px;
        padding: 0.75rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0.25rem;
    }

    .banner h1, .banner h2, .banner h3, .banner h4 {
        color: #ffffff;
    }

    .banner h1 {
        font-size: 2.5rem;
    }

    .banner .caption {
        font-size: 1.2rem;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .about-hero h1, .about-hero h2, .about-hero h3, .about-hero h4 {
        color: #ffffff;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .mission-section {
        flex-direction: column;
    }

    .projects-hero h1, .projects-hero h2, .projects-hero h3, .projects-hero h4 {
        color: #ffffff;
    }

    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .projects-hero p {
        font-size: 1.4rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-content h3 {
        font-size: 1.5rem;
    }

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

    .impact-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .donation-container {
        grid-template-columns: 1fr;
    }

    .donation-card {
        padding: 1.5rem;
    }

    .event-card {
        flex-direction: column;
        align-items: center;
    }

    .involve-hero h1, .involve-hero h2, .involve-hero h3, .involve-hero h4 {
        color: #ffffff;
    }

    .involvement-container {
        grid-template-columns: 1fr;
    }

    .events-hero h1, .events-hero h2, .events-hero h3, .events-hero h4 {
        color: #ffffff;
    }

    .events-container {
        grid-template-columns: 1fr;
    }

    .blog-hero h1, .blog-hero h2, .blog-hero h3, .blog-hero h4 {
        color: #ffffff;
    }
}
/* Donation Progress Bar */
.donation-progress {
    margin-top: 1.5rem;
}

.progress-label {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: #D1D5DB;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    width: 0;
    transition: width 0.3s ease;
}

.progress-amount {
    display: block;
    font-size: 1rem;
    color: #1E40AF;
    margin-top: 0.5rem;
}
@media (max-width: 480px) {
    .btn-donate, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4 {
        color: #ffffff;
    }
}

/* Immersive Nonprofit UI Refresh */
:root {
    --brand-blue: #1e3a8a;
    --brand-blue-700: #1e40af;
    --brand-gold: #ffffff;
    --brand-gold-700: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-muted: #f1f5f9;
    --text-strong: #0f172a;
    --text-body: #334155;
    --border-soft: #dbe5f1;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lift: 0 18px 40px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-body);
    background: radial-gradient(circle at top right, #eef2ff 0%, #f8fafc 40%, #ffffff 100%);
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--text-strong);
    letter-spacing: -0.01em;
}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-strong);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(8px);
}

nav {
    gap: 1rem;
}

.logo img {
    height: 74px;
    filter: drop-shadow(0 6px 18px rgba(30, 58, 138, 0.2));
}

.nav-links {
    align-items: center;
    gap: 0.35rem;
}

.nav-links a {
    color: var(--text-body);
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--brand-blue);
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--brand-blue-700);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.12), rgba(255, 255, 255, 0.45));
    box-shadow: inset 0 0 0 1px rgba(30, 64, 175, 0.12);
}

.mobile-menu-toggle {
    border-color: rgba(30, 64, 175, 0.35);
}

.mobile-menu-toggle span {
    background: var(--brand-blue-700);
}

.banner,
.about-hero,
.projects-hero,
.involve-hero,
.events-hero,
.contact-hero,
.blog-hero {
    position: relative;
    isolation: isolate;
}

.banner::before,
.about-hero::before,
.projects-hero::before,
.involve-hero::before,
.events-hero::before,
.contact-hero::before,
.blog-hero::before {
    display: none;
}

.banner-content,
.hero-content {
    max-width: 860px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 18px;
    padding: clamp(1.1rem, 2vw, 2rem);
    backdrop-filter: none;
}

.banner .caption,
.hero-content p {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.45);
}

.mission-statement,
.history-section,
.contact-form-section,
.projects-section,
.involvement-section,
.events-section,
.donation-section {
    background: linear-gradient(180deg, var(--surface-soft), #ffffff);
}

.mission-block,
.card,
.timeline-item,
.team-member,
.project-card,
.option-card,
.event-card,
.blog-card,
.form-container,
.donation-card,
.impact-sidebar {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mission-block:hover,
.card:hover,
.timeline-item:hover,
.team-member:hover,
.project-card:hover,
.option-card:hover,
.event-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.btn-donate,
.btn-secondary {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 18px rgba(30, 58, 138, 0.18);
}

.btn-donate {
    background: linear-gradient(110deg, #FFFFFF, var(--brand-gold));
    color: #102753;
    border: 1px solid #dbe5f1;
}

.btn-donate:hover {
    background: linear-gradient(110deg, #FFFFFF, var(--brand-gold-700));
}

.btn-secondary {
    background: linear-gradient(110deg, var(--brand-blue-700), var(--brand-blue));
    color: #f8fafc;
}

.btn-secondary:hover {
    background: linear-gradient(110deg, #2747a8, #1a2f72);
}

.call-to-action,
.cta-section {
    background: linear-gradient(120deg, #1e3a8a 0%, #1e40af 55%, #2c4fb6 100%);
    color: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-lift);
}

.verse,
blockquote {
    color: #1e293b;
    background: #f8fafc;
    border-left: 5px solid var(--brand-gold);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 1.2rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    border-radius: 12px;
    border: 1px solid #cdd8e7;
    background: #fcfdff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: var(--brand-blue-700);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.14);
    outline: none;
}

.event-date,
.progress-fill {
    background: linear-gradient(120deg, #FFFFFF, var(--brand-gold-700));
    color: #102753;
}

footer {
    background: #0f1f52;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .logo img {
        height: 58px;
    }

    .nav-links {
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-soft);
    }

    .nav-links a {
        color: var(--text-strong);
        border-radius: 12px;
    }

    .banner-content,
    .hero-content {
        padding: 1rem;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}