/* ============================================
   PROJECTS PAGE - Projects Section Styles
   ============================================ */

.projects-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 50%, #f8f9fa 100%);
}

/* Our Programs Section - Enhanced Visibility */
.projects-section .section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-section .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.projects-section .program-card {
    background: white;
    border: 2px solid rgba(244, 197, 66, 0.15);
    transition: all 0.3s ease;
}

.projects-section .program-card:hover {
    border-color: rgba(244, 197, 66, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.projects-section .program-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(244, 197, 66, 0.1);
    font-family: var(--font-display);
    line-height: 1;
}

.projects-section .program-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.projects-section .program-icon i {
    width: 32px;
    height: 32px;
}

.projects-section .program-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    position: relative;
    z-index: 2;
}

.projects-section .program-card p {
    color: #415a77;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Project Card */
.project-card {
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f4c542, #f97316);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Project Content */
.project-content {
    padding: 2rem;
}

.project-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-600);
    margin-bottom: 1.5rem;
}

.project-icon i {
    width: 28px;
    height: 28px;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.project-content>p {
    color: #415a77;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Project Highlights */
.project-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #415a77;
}

.project-highlights li i {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

/* Project Stats */
.project-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
}

.project-stats .stat {
    display: flex;
    flex-direction: column;
}

.project-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--amber-600);
    font-family: var(--font-display);
}

.project-stats .stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* Projects CTA */
.projects-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 2rem;
    border: 1px solid rgba(244, 197, 66, 0.2);
}

.projects-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.projects-cta>p {
    color: #415a77;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-section .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 80px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-section .programs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-highlights {
        grid-template-columns: 1fr;
    }

    .projects-cta {
        padding: 3rem 2rem;
    }

    .projects-cta h3 {
        font-size: 1.5rem;
    }

    .projects-section .section-header-center {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 1.5rem;
    }

    .project-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons button {
        width: 100%;
    }
}