/* Academics Hero */
.academics-hero {
    background: linear-gradient(135deg, rgba(11, 44, 138, 0.94) 0%, rgba(8, 31, 102, 0.9) 100%), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 40%;
    padding: 7rem 0 6rem;
    color: var(--text-on-dark);
}

.academics-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

/* Curriculum Level Cards */
.level-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.level-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.level-header h3 {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.level-body {
    padding: 1.8rem;
}

.level-age {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Special Programs Grid */
.program-feature-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid var(--border-light);
}

.program-feature-card:hover {
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-soft);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(217, 4, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.program-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

/* Curriculum Pillars */
.pillar-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: 0.2s;
    border: 1px solid var(--border-light);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Faculty Highlight */
.faculty-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
    height: 100%;
}

.faculty-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.faculty-info {
    padding: 1.3rem;
}

.faculty-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.faculty-subject {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Assessment Section */
.assessment-card {
    background: var(--off-white);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    height: 100%;
}

@media (max-width: 768px) {
    .academics-hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}