/* Additional styles for Academic Programs page */

/* Program Category Cards */
.program-category-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.program-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.program-header .program-type {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.program-body {
    padding: 30px;
}

/* Program List Styles */
.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.program-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.program-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.program-seats {
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

/* Summary Stats */
.stats-summary {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .program-seats {
        align-self: flex-end;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}