/* ===================================
1. Reset & Globals
=================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* ===================================
2. NAVBAR
=================================== */
.navbar {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

/* ===================================
3. HERO
=================================== */
.hero {
    background-color: #2563eb;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

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

/* ===================================
4. INTRO SECTION
=================================== */
.intro {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.intro h2 {
    font-size: 36px;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
5. PROGRAMS SECTION
=================================== */
.programs {
    padding: 80px 0;
    background: #ffffff;
}

.programs h2 {
    text-align: center;
    font-size: 42px;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-card .icon {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 28px;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.program-card p,
.program-card ul,
.program-card .impact-stat {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.program-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.brochure-btn:hover {
    background: #1e4fc1;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ===================================
6. TIMELINE CARDS
=================================== */
.timeline-cards {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.timeline-cards h2 {
    font-size: 42px;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
}

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

.timeline-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.timeline-card h3 {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.timeline-card p {
    font-size: 16px;
    color: #555;
}

/* ===================================
7. COLLABORATE SECTION
=================================== */
.collaborate {
    padding: 80px 0;
    background: #ffffff;
}

.collaborate h2 {
    text-align: center;
    font-size: 42px;
    color: #2563eb;
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
}

.collaborate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.form-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-card h3 {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* ===================================
8. FORM STYLING
=================================== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
    transform: translateY(-2px);
}

.contact-form label {
    position: absolute;
    left: 20px;
    top: 14px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: #2563eb;
}

.submit-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1e4fc1;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ===================================
9. FOOTER
=================================== */
footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 60px 20px;
    text-align: center;
    color: #333;
}

footer a {
    color: #2563eb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===================================
10. RESPONSIVE
=================================== */
@media (max-width: 992px) {
    .programs-grid,
    .timeline-cards-grid,
    .collaborate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .intro h2,
    .programs h2,
    .timeline-cards h2,
    .collaborate h2 {
        font-size: 32px;
    }

    .programs-grid,
    .timeline-cards-grid,
    .collaborate-grid {
        grid-template-columns: 1fr;
    }
}
.impact-stats {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    justify-items: center;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card .counter {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 18px;
    color: #555;
}
