.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 1.5rem;
    cursor: pointer;
}
main {
    background-image: unset;
    background: unset;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-black) 0%, #2d2d2d 100%);
    color: var(--pure-white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 50%,
        var(--primary-orange) 0%,
        transparent 50%
    );
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary-orange);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


/* Program Overview Section */
.program-section {
    padding: 8rem 2rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Overview Cards */
.overview-content {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-orange);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.overview-content h3 {
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.overview-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--pure-white);
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
    font-weight: bold;
}
.feature-icon img {
    width : 50px;
    height : 50px;
}

.feature-card h4 {
    color: var(--dark-black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Who Can Apply Section */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.eligibility-card {
    background: var(--light-gray);
    color: var(--pure-white);
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.eligibility-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.eligibility-card p {
    line-height: 1.8;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    background-color: var(--primary-orange);
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55a2b 100%);
    color: var(--pure-white);
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color : white;
}

.cta-button-white {
    background-color: var(--pure-white);
    color: var(--primary-orange);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--dark-black);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .features-grid,
    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    .overview-content {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.eligibility-card {
    animation: slideIn 0.6s ease-out;
}
