:root {
    --primary-green: #228B22;
    --secondary-green: #32CD32;
    --sky-blue: #87CEEB;
    --light-sky-blue: #B0E0E6;
    --yellow: #FFD700;
    --blue: #1e3c72;
    --gradient-sky: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 100%);
    --gradient-green: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    --gradient-blue: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: var(--gradient-green);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--yellow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand img.logo {
    height: 56px; /* a touch smaller to fit the header proportion in the image */
    max-height: 56px;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 4px;
    font-size: 1rem;
    padding: 8px 6px;
}

.btn-volunteer {
    background-color: var(--yellow);
    color: var(--primary-green) !important;
    padding: 8px 18px;
    border-radius: 22px;
    font-weight: 700;
    transition: all 0.15s ease;
    box-shadow: 0 8px 20px rgba(34,139,34,0.06);
}

.btn-volunteer:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Login button style to match screenshot (dark blue rounded) */
.btn-modern {
    background-color: #0b3b5c; /* deep blue */
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(11,59,92,0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-modern:hover, .btn-modern:focus {
    background-color: #08324b;
    color: #fff !important;
    transform: translateY(-2px);
}

/* keep nav link spacing for button items */
.navbar .nav-link.btn { margin-left: 8px; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 100, 0, 0.8), rgba(0, 100, 0, 0.8)),
                url('../images/hero-bg.jpg') center/cover;
    padding: 200px 0 100px;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tagline {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    border-radius: 25px;
}

.btn-primary {
    background-color: var(--yellow);
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-sky);
    margin: 10px auto 0;
    border-radius: 2px;
}

.program-card {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background: var(--gradient-sky);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

.program-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.program-card:hover i {
    color: var(--secondary-green);
}

.program-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--gradient-green);
    color: white;
    padding: 50px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sky);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .cta-buttons .btn {
        display: block;
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Navbar responsive improvements */
    .navbar {
        padding: 1rem 0;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 20px;
        padding: 20px 15px;
        background: rgba(34,139,34,0.98);
        border-radius: 12px;
        margin: 20px 15px 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .navbar-nav .nav-item {
        margin-bottom: 15px;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-radius: 10px;
        margin: 5px 0;
        transition: all 0.3s ease;
        color: white !important;
        font-weight: 600;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.15);
        color: var(--yellow) !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-volunteer, .btn-modern {
        width: 100%;
        margin: 10px 0;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    /* Programs dropdown responsive */
    .mega-menu {
        position: static !important;
        display: block !important;
        background: white;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 25px 20px !important;
        margin-top: 15px;
        border-radius: 12px;
    }

    .program-mega-item {
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .program-mega-item:last-child {
        border-bottom: none;
    }

    .program-mega-item .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .program-mega-item .icon-wrap {
        margin-bottom: 15px;
        align-self: center;
        width: 60px;
        height: 60px;
    }

    /* Card responsive improvements */
    .program-card, .blog-card, .partner-card, .impact-card, .testi-card, .contact .card, .join-card {
        margin-bottom: 25px;
        height: auto !important;
        min-height: 320px;
    }

    .program-card {
        padding: 25px !important;
    }

    .blog-card .blog-content {
        padding: 20px !important;
    }

    /* Grid improvements */
    .row.g-4 > .col-md-4 {
        margin-bottom: 35px;
    }

    /* Footer responsive */
    .footer .row > div {
        margin-bottom: 35px;
        text-align: center;
    }

    .footer .row > div:last-child {
        margin-bottom: 0;
    }

    .footer .social-links {
        justify-content: center;
    }

    /* Section spacing */
    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 35px !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero slider mobile */
    .hero-slider .slide-inner {
        padding: 25px;
    }

    .hero-slider .slide-inner h1 {
        font-size: 2.2rem;
    }

    .hero-slider .slide-inner h2 {
        font-size: 1.6rem;
    }

    /* Ensure navbar collapse is hidden by default on mobile */
    .navbar-collapse {
        display: none !important;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    /* Make navbar toggler more prominent on mobile */
    .navbar-toggler {
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        padding: 12px;
        background: rgba(34,139,34,0.9);
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        background: rgba(34,139,34,1);
        border-color: var(--yellow);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        outline: none;
    }

    /* Programs grid mobile */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-link {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .program-link i {
        font-size: 2rem;
    }

    .program-link span {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-slider .swiper-container {
        height: 350px;
    }

    .hero-slider .slide-inner h1 {
        font-size: 1.8rem;
    }

    .hero-slider .slide-inner h2 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .program-card, .blog-card, .partner-card, .impact-card, .testi-card, .contact .card, .join-card {
        padding: 15px !important;
        margin-bottom: 15px;
        min-height: 250px;
    }

    .program-card .icon-wrap {
        width: 50px !important;
        height: 50px !important;
    }

    .program-card .icon-wrap i {
        font-size: 1.2rem !important;
    }

    .program-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .navbar-brand img.logo {
        height: 50px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer h4 {
        font-size: 1.1rem;
    }

    .footer p, .footer a {
        font-size: 0.9rem;
    }
}

/* Swiper hero slider styles */
.hero-slider .swiper-container { height: 520px; }
.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slider .slide-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,139,34,0.6);
}
.hero-slider .slide-inner {
    color: #fff;
    padding: 40px;
    text-align: center;
}
.hero-slider .slide-inner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-slider .slide-inner h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hero-slider .cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-slider .cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Who we are */
.who-we-are .blue-card {
    background: var(--gradient-sky);
    color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}
.who-we-are .blue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.who-we-are .blue-card h3 { color: #fff; }
.who-we-are .card ul {
    margin-left: 1rem;
    color: rgba(255,255,255,0.9);
}
.who-we-are .card ul li {
    margin-bottom: 8px;
}

/* Programs grid */
.programs { background: #fff; }
.program-card {
    background: var(--gradient-sky);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.program-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--primary-green);
    transition: all 0.3s ease;
}
.program-card:hover .icon-wrap {
    background: white;
    transform: scale(1.1);
}
.program-card h3 {
    margin-top: 15px;
    color: var(--primary-green);
    font-weight: 700;
    flex-grow: 1;
}
.program-card p {
    color: #6c757d;
    flex-grow: 1;
}
.program-card .learn-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}
.program-card .learn-more:hover { color: var(--secondary-green); }

/* Join us */
.join-us .join-card { border-radius: 12px; }
.join-card .icon { color: #fff; }

/* Blog cards */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--gradient-sky);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.blog-card .blog-image {
    width:100%;
    height:180px;
    object-fit:cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-image { transform: scale(1.05); }
.blog-card .blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card .blog-content h3 {
    margin-top: 0;
    color: var(--primary-green);
    flex-grow: 1;
}
.blog-card .blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.blog-card .blog-content p {
    color: #555;
    flex-grow: 1;
}

/* Partners */
.partner-card {
    border-radius: 15px;
    padding: 18px;
    background: var(--gradient-sky);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.partner-logo { max-height: 70px; object-fit: contain; transition: transform 0.3s ease; }
.partner-card:hover .partner-logo { transform: scale(1.1); }

/* Contact cards */
.contact .card {
    border-radius: 15px;
    background: var(--gradient-sky);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.contact .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.contact .icon-circle {
    width:70px;
    height:70px;
    border-radius:50%;
    background: rgba(255,255,255,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color: var(--primary-green);
    transition: all 0.3s ease;
    margin: 0 auto 20px;
}
.contact .card:hover .icon-circle {
    background: white;
    transform: scale(1.1);
}
.contact .card h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}
.contact .card p {
    color: #666;
    flex-grow: 1;
}
.contact .card .btn {
    margin-top: auto;
}

/* Footer map */
.footer .map-wrap iframe { display:block; }

/* Differentiators grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--gradient-sky);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.differentiator-item:hover {
    background: var(--gradient-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.differentiator-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.differentiator-item p {
    margin: 0;
    color: var(--primary-green);
    line-height: 1.5;
    font-weight: 500;
}

/* Join Us section enhancements */
.join-us {
    position: relative;
    overflow: hidden;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

/* Small utilities */
.text-muted { color: #6c757d !important; }

.motto-home {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yellow);
    font-style: italic;
    margin-top: 15px;
}

/* Page header styles for consistency */
.page-header {
    background: var(--gradient-green);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-top: -90px;
    padding-top: 170px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Organization profile styles */
.organization-profile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 15px 0;
}

.motto {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    font-style: italic;
    margin: 20px 0;
}

/* Profile card */
.profile-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-green);
}

.profile-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.profile-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Vision cards for about page */
.vision-card {
    background: var(--gradient-sky);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-card.motto-card {
    background: var(--gradient-green);
    color: white;
}

.vision-card.motto-card i {
    color: var(--yellow);
}

.vision-card.motto-card h3 {
    color: white;
}

.vision-card.motto-card .motto-text {
    color: var(--yellow);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
}

.vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.vision-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.vision-card:hover i {
    color: var(--secondary-green);
}

.vision-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.vision-card p {
    color: #666;
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.motto-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--yellow);
    font-style: italic;
}

/* Values card */
.values-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.values-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.values-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.values-card:hover i {
    color: var(--secondary-green);
}

.values-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.values-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li i {
    color: var(--yellow);
    font-size: 0.9rem;
}

/* Objectives grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.objective-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.objective-number {
    background: var(--gradient-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.objective-item p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}

/* Limits card */
.limits-card {
    background: var(--gradient-sky);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #333;
}

.limits-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.limits-card strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Founder card */
.founder-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
    border-top: 5px solid var(--yellow);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-green);
}

.founder-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Impact stats */
.impact-stat {
    background: var(--gradient-sky);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.impact-stat h3 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-stat p {
    color: #666;
    font-weight: 600;
}

/* Programs list section */
.programs-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.program-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.program-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.program-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    text-decoration: none;
    color: var(--primary-green);
    transition: all 0.3s ease;
    height: 100%;
}

.program-link:hover {
    color: var(--secondary-green);
    text-decoration: none;
}

.program-link i {
    font-size: 2rem;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.program-link:hover i {
    transform: scale(1.1);
    color: var(--secondary-green);
}

.program-link span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Program detail items */
.program-detail-item {
    margin-bottom: 80px;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.program-detail-item:last-child {
    border-bottom: none;
}

.program-detail-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.program-detail-item h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.program-detail-item ul {
    list-style: none;
    padding: 0;
}

.program-detail-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.program-detail-item ul li:before {
    content: "✓";
    color: var(--yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-detail-item .btn {
    margin-top: 30px;
}

/* Mobile responsive for programs */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program-link {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .program-link i {
        font-size: 1.5rem;
    }

    .program-link span {
        font-size: 1rem;
    }

    .program-detail-item h2 {
        font-size: 2rem;
    }

    .program-detail-item img {
        height: 200px;
        margin-bottom: 20px;
    }
}

/* Volunteer form section */
.volunteer-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.volunteer-form-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.volunteer-form-section h2 {
    color: var(--primary-green);
    font-weight: 700;
}

/* Donate section */
.donate-section {
    padding: 80px 0;
}

.donate-section h2 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
}

.donate-section .lead {
    color: #666;
    margin-bottom: 50px;
}

.donation-options, .donation-impact {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.donation-btn {
    margin: 5px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donation-btn:hover, .donation-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--primary-green);
}

.impact-cards .impact-card {
    background: var(--gradient-sky);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.impact-cards .impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.impact-cards .impact-card p {
    color: #666;
    margin: 0;
}

/* WhatsApp floating button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Scroll to top button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 18px;
}

.scroll-to-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-slider .swiper-container { height: 420px; }
    .hero-slider .slide-inner h1 { font-size: 2rem; }
}

/* Impact cards */
.impact-card {
    background: var(--gradient-sky);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.impact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.impact-card h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}
.impact-card p {
    color: #666;
    flex-grow: 1;
}

/* Testimonials */
.testimonials .testi-card {
    background: var(--gradient-sky);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials .testi-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}
.testimonials .testi-card p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}
.testimonials .testi-card strong {
    color: var(--primary-green);
    font-weight: 600;
}
.testimonials .swiper-container { padding: 20px 0; }

/* subtle hover for partners - updated above */

/* Lazy image helper */
img[loading="lazy"] { will-change: transform, opacity; transition: opacity .4s ease, transform .4s ease; opacity: 1; }

/* Additional modern animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Modern button styles */
.btn-modern {
    background: var(--gradient-sky);
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    transition: left 0.3s ease;
}

.btn-modern:hover::before {
    left: 0;
}

.btn-modern:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Enhanced card animations */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Interactive elements */
.interactive-element {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-element:hover {
    transform: scale(1.05);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .card:hover {
        transform: translateY(-5px);
    }

    .btn-modern:hover {
        transform: translateY(-2px);
    }
}

/* Mega menu (Programs) styles */
.programs-dropdown { position: relative; }
.mega-menu {
    display: none; /* hidden by default, shown on hover */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    max-width: 1100px;
    width: calc(100% - 140px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    z-index: 1050;
    padding: 1.5rem 1.75rem;
}
.program-mega-item .icon-wrap { width:64px; height:64px; display:flex; align-items:center; justify-content:center; border-radius:12px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.program-mega-item h5 { color: var(--primary-green); font-weight:700; margin-bottom:8px; font-size:1.05rem; }
.program-mega-item p { color: #6c757d; margin-bottom:8px; line-height:1.5; }
.program-mega-item span { font-weight:600; }

.program-mega-item:hover .icon-wrap { transform: translateY(-4px); }

.mega-menu { transition: opacity 180ms ease, transform 180ms ease; }
.programs-dropdown:focus-within > .mega-menu { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Show mega menu on focus for desktop */
@media (min-width: 992px) {
    .programs-dropdown:focus-within > .mega-menu {
        display: block;
    }
    /* Make sure dropdown toggle doesn't close while interacting with menu */
    .programs-dropdown .dropdown-toggle::after { display: none; }
}

/* General modern tweaks for cards and buttons site-wide */
.card { border-radius: 12px; }
.shadow-sm { box-shadow: 0 8px 30px rgba(0,0,0,0.06) !important; }
.btn { border-radius: 8px; }

/* Ensure the fixed header doesn't overlap content when mega-menu opens: add top spacing to body main sections */
main, .hero, .programs, .page-header { padding-top: 90px; }

@media (max-width: 991px) {
    main, .hero, .programs, .page-header { padding-top: 78px; }
}

/* Small screens: use default Bootstrap dropdown click behavior */
@media (max-width: 991px) {
    .mega-menu { position: static; box-shadow: none; padding: .75rem; }
}

/* Hamburger menu specific styles */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler.close .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m6 6l18 18M6 24l18-18'/%3e%3c/svg%3e");
}

/* Ensure navbar collapse is properly hidden/shown */
.navbar-collapse {
    display: none !important;
}

.navbar-collapse.show {
    display: block !important;
}

/* helper color variables for custom icons (purple used above) */
.text-purple { color: #9b59b6 !important; }

/* Events Page Styles */
.events-section {
    background: #f8f9fa;
}

.event-card-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card-modern:hover .event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.event-date-badge .day {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-content-modern {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--yellow);
}

.event-description {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* News Page Styles */
.news-section {
    background: #f8f9fa;
}

.news-card-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-modern:hover .news-image img {
    transform: scale(1.1);
}

.news-date-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.news-date-overlay .date-day {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.news-date-overlay .date-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content-modern {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-meta .author,
.news-meta .date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.news-meta .author i,
.news-meta .date i {
    color: var(--yellow);
}

.news-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Training Page Styles */
.training-programs {
    background: #f8f9fa;
}

.training-card-modern {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.training-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.training-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-card-modern:hover .training-image img {
    transform: scale(1.1);
}

.training-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.training-status-badge.upcoming {
    background: var(--primary-green);
    color: white;
}

.training-status-badge.ongoing {
    background: var(--yellow);
    color: var(--primary-green);
}

.training-status-badge.completed {
    background: #6c757d;
    color: white;
}

.training-content-modern {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.training-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.training-meta-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.training-meta-modern .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.training-meta-modern .meta-item i {
    color: var(--yellow);
    width: 16px;
}

.training-description {
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.training-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.training-actions .btn {
    flex: 1;
    min-width: 120px;
}

.training-application {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.application-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Impact Page Styles */
.impact-stats-section {
    background: var(--gradient-green);
    color: white;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.impact-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.stat-number .counter {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.impact-stories-section {
    background: #f8f9fa;
}

.impact-stories-grid {
    display: grid;
    gap: 40px;
}

.impact-story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.impact-story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.story-content {
    padding: 30px;
}

.story-content h4 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.story-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}

.story-location i {
    color: var(--yellow);
}

.story-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.metric {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-sky);
    color: #333;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.testimonial-card-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-green);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.testimonial-rating {
    margin: 15px 0;
    color: var(--yellow);
    font-size: 1rem;
}

/* Partners Page Styles */
.partners-intro {
    background: var(--gradient-sky);
    color: #333;
}

.partnership-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.partners-categories {
    background: #f8f9fa;
}

.partners-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h3 {
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.partner-card-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
}

.partner-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--yellow);
}

.partner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.partner-info p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.partnership-opportunities {
    background: white;
}

.opportunities-list {
    margin-top: 30px;
}

.opportunity-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.opportunity-item:hover {
    background: var(--gradient-sky);
    transform: translateX(10px);
}

.opportunity-icon {
    font-size: 2rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.opportunity-content h5 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.opportunity-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.partnership-form-card {
    background: var(--gradient-green);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partnership-form-card h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.partnership-form-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.partnership-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
}

.partnership-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.partnership-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--yellow);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}
