:root {
    --primary: #0d6e3f; /* Deep green */
    --secondary: #1a73e8; /* Vibrant blue */
    --accent: #f8b400; /* Gold/orange */
    --highlight: #e63946; /* Red */
    --dark: #1a1a1a; /* Black */
    --light: #ffffff; /* White */
    --gray: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 0.5rem;
    --shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%; /* 16px base */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 90rem; /* 1440px */
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid rgba(13, 110, 63, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 3rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.875rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.1875rem;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--light);
    padding: 0.75rem 1.75rem;
    border-radius: 3.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0.25rem 0.9375rem rgba(13, 110, 63, 0.3);
    font-size: 1rem;
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.375rem 1.25rem rgba(26, 115, 232, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 11.25rem 0 6.25rem;
    background: linear-gradient(135deg, rgba(13, 110, 63, 0.1), rgba(26, 115, 232, 0.08));
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3.75rem;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    font-size: 0.875rem;
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.875rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--highlight));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 2.5rem;
    max-width: 37.5rem;
}

.hero-stats {
    display: flex;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
}

/* Buttons */
.btn {
    padding: 1.125rem 2.25rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-align: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    box-shadow: 0 0.25rem 1.25rem rgba(13, 110, 63, 0.4);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(26, 115, 232, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 0.1875rem solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-0.3125rem);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 0.25rem 1.25rem rgba(248, 180, 0, 0.4);
}

.btn-accent:hover {
    background: #e6a200;
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(230, 162, 0, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.875rem;
}

.renovation-links {
    margin-top: 2.5rem;
    padding-top: 1.875rem;
    border-top: 0.125rem solid rgba(13, 110, 63, 0.1);
}

.renovation-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.renovation-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9375rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 37.5rem;
    height: 31.25rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 6.25rem 0;
}

.section-header {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 3.75rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1875rem;
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5625rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.3rem;
    color: #555;
}

/* Projects Filter */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 3.125rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.9375rem 1.875rem;
    background: transparent;
    border: 0.125rem solid var(--primary);
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--light);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--light);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.project-card.fade-out {
    opacity: 0;
    transform: translateY(1.25rem);
}

.project-card.hidden {
    display: none;
}

.project-image {
    height: 15.625rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 3rem;
}

.project-content {
    padding: 1.875rem;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.9375rem;
    color: var(--dark);
}

.project-description {
    color: #555;
    margin-bottom: 1.5625rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 31.25rem;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    background: none;
    border: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0.125rem solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.1875rem rgba(13, 110, 63, 0.1);
}

.form-control.error {
    border-color: var(--highlight);
}

.error-message {
    color: var(--highlight);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-btn:hover {
    background: var(--secondary);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-loading {
    display: none;
    text-align: center;
    padding: 1rem;
}

.form-loading.show {
    display: block;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(13, 110, 63, 0.1);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.success-message.show {
    display: block;
}

.success-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 75rem) { /* 1200px */
    html {
        font-size: 95%;
    }
}

@media (max-width: 68.75rem) { /* 1100px */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 48rem) { /* 768px */
    html {
        font-size: 90%;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        padding: 1.25rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }
    
    .hero {
        padding: 9.375rem 0 5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 0.9375rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.9375rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .renovation-buttons {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        gap: 0.3125rem;
    }
    
    .tab-btn {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 30rem) { /* 480px */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 2.5rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}
/* Orphans Section Styles */
.orphans {
    background: linear-gradient(135deg, rgba(13, 110, 63, 0.05), rgba(26, 115, 232, 0.05));
    position: relative;
    overflow: hidden;
}

.orphan-card {
    background: var(--light);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.orphan-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.orphan-image {
    height: 15.625rem;
    background: linear-gradient(45deg, var(--accent), var(--highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 3rem;
}

.orphan-content {
    padding: 1.875rem;
}

.orphan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: var(--dark);
}

.orphan-details {
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.orphan-detail {
    background: rgba(13, 110, 63, 0.1);
    padding: 0.5rem 0.9375rem;
    border-radius: 1.875rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.orphan-description {
    color: #555;
    margin-bottom: 1.5625rem;
    line-height: 1.7;
}

.sponsor-btn {
    display: block;
    width: 100%;
    padding: 0.9375rem;
    background: var(--highlight);
    color: var(--light);
    text-align: center;
    border-radius: 0.625rem;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.sponsor-btn:hover {
    background: var(--primary);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(230, 57, 70, 0.4);
}

/* Impact Section Styles */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.875rem;
    margin-top: 3.75rem;
}

.impact-stat {
    background: var(--light);
    border-radius: 1.25rem;
    padding: 2.5rem 1.875rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.impact-stat:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3125rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

/* About Section Styles */
.about-card {
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-0.625rem);
}

.about-card h3 {
    font-family: 'Raleway', sans-serif;
    position: relative;
    padding-bottom: 0.625rem;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3.125rem;
    height: 0.1875rem;
    background: var(--accent);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--dark), #0a0a0a);
    color: var(--light);
    padding: 6.25rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 3.125rem;
    margin-bottom: 3.75rem;
}

.footer-column h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5625rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 3.75rem;
    height: 0.25rem;
    background: var(--accent);
    border-radius: 0.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.9375rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(0.3125rem);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 0.9375rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 0.3125rem;
    min-width: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.9375rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-0.3125rem);
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 1rem;
}

/* Hero Image Styles */
.hero-image-content {
    color: white;
    text-align: center;
    padding: 1.875rem;
    z-index: 2;
}

.hero-image-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-image-text {
    font-size: 1.2rem;
    margin-bottom: 1.875rem;
    opacity: 0.9;
}

.hero-image-stats {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(0.625rem);
    backdrop-filter: blur(0.625rem);
    padding: 1.25rem;
    border-radius: 0.9375rem;
    width: 9.375rem;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Project Card Specific Styles */
.project-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.project-stat {
    text-align: center;
}

.project-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.project-stat-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.3125rem;
}

.project-actions {
    display: flex;
    gap: 0.9375rem;
}

.project-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.625rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.project-btn.donate {
    background: var(--primary);
    color: var(--light);
}

.project-btn.donate:hover {
    background: var(--secondary);
    transform: translateY(-0.1875rem);
}

.project-btn.learn {
    background: transparent;
    border: 0.125rem solid var(--primary);
    color: var(--primary);
}

.project-btn.learn:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-0.1875rem);
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3125rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Container */
.form-container {
    max-width: 50rem;
    margin: 0 auto;
}

/* Additional Responsive Styles */
@media (max-width: 48rem) {
    .hero-image-container {
        height: 25rem;
    }
    
    .hero-image-title {
        font-size: 2rem;
    }
    
    .hero-image-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.9375rem;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 12.5rem;
    }
    
    .impact-stat {
        padding: 1.875rem 1.25rem;
    }
    
    .impact-number {
        font-size: 2.8rem;
    }
    
    .footer {
        padding: 3.75rem 0 1.875rem;
    }
}

@media (max-width: 30rem) {
    .hero-image-container {
        height: 22rem;
    }
    
    .hero-image-title {
        font-size: 1.7rem;
    }
    
    .hero-image-text {
        font-size: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
    }
}
/* ===== MARKAZ SCHOOL STYLES ===== */

/* School Button Style */
.btn-school {
    background: linear-gradient(45deg, #8b5cf6, #6366f1);
    color: var(--light);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-school:hover {
    background: linear-gradient(45deg, #7c3aed, #4f46e5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

/* School navigation item */
.nav-links .school-nav {
    background: linear-gradient(45deg, #8b5cf6, #6366f1);
    padding: 8px 20px !important;
    border-radius: 30px !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-left: 10px;
}

.nav-links .school-nav:hover {
    background: linear-gradient(45deg, #7c3aed, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.nav-links .school-nav i {
    margin-right: 5px;
}

/* School Campaign Section */
.school-campaign {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.05));
    position: relative;
    overflow: hidden;
}

/* School Highlights */
.school-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.highlight-card {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.highlight-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Campaign Container */
.campaign-container {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.campaign-header {
    text-align: center;
    margin-bottom: 30px;
}

.campaign-header h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.campaign-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Campaign Progress */
.campaign-progress {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.goal-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.goal-amount, .raised-amount {
    display: flex;
    flex-direction: column;
}

.goal-label, .raised-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.goal-value, .raised-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.raised-value {
    color: #8b5cf6;
}

.progress-container {
    margin: 25px 0;
}

.progress-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: 6px;
    transition: width 1s ease;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: #8b5cf6;
    font-size: 1.1rem;
}

.donors-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    margin-top: 15px;
}

.donors-count i {
    color: #8b5cf6;
}

/* Campaign Needs */
.campaign-needs {
    margin: 30px 0;
}

.campaign-needs h4 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.need-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.need-item:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.need-item i {
    color: var(--primary);
}

.need-item span {
    color: #374151;
}

/* Campaign CTA */
.campaign-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
}

/* Hero Image Buttons */
.hero-image-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Responsive Design for School Section */
@media (max-width: 768px) {
    .school-highlights {
        grid-template-columns: 1fr;
    }
    
    .campaign-container {
        padding: 25px;
    }
    
    .goal-info {
        flex-direction: column;
        text-align: center;
    }
    
    .needs-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .campaign-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .highlight-card {
        padding: 25px 20px;
    }
    
    .nav-links .school-nav {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .campaign-header h3 {
        font-size: 1.5rem;
    }
    
    .goal-value, .raised-value {
        font-size: 1.5rem;
    }
    
    .hero-image-buttons .btn {
        width: 100%;
    }
}