/* Programs Hero */
.programs-hero {
    height: 50vh;
    background: linear-gradient(rgba(43, 58, 74, 0.8), rgba(43, 58, 74, 0.8)), 
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.programs-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.programs-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Program Categories */
.program-categories {
    padding: 80px 0;
    background-color: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e0e5eb;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.program-details {
    display: flex;
    gap: 40px;
    align-items: center;
}

.program-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.program-image:hover img {
    transform: scale(1.05);
}

.program-info {
    flex: 1;
}

.program-info h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.program-info h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 25px 0 15px;
}

.program-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.program-info li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Special Programs */
.special-programs {
    padding: 80px 0;
    background-color: var(--light);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.special-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.special-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.special-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.special-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary);
    gap: 10px;
}

/* Program CTA */
.program-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
}

.program-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.program-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .program-details {
        flex-direction: column;
    }
    
    .program-image, .program-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2.5rem;
    }
    
    .programs-hero p {
        font-size: 1.2rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}