/* ============ CURRICULUM PAGE PREMIUM OVERRIDES ============ */



/* Hero Banner */
.curriculum-hero-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.curriculum-hero-banner h1 {
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumb-holder {
    padding: 20px 0;
    font-size: 0.88rem;
    color: var(--muted);
    font-family: 'Manrope', sans-serif;
}

.breadcrumb-holder a {
    color: var(--blue);
    font-weight: 500;
}

.breadcrumb-holder span {
    margin: 0 8px;
    color: #cbd5e1;
}

/* General Labels */
.section-label {
    display: inline-block;
    color: var(--gold);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.section-header {
    margin-bottom: 45px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 60ch;
    margin: 0 auto;
}

/* 2. Introduction Section */
.curriculum-intro-section {
    /* padding: 50px 0; */
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.intro-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1.5px solid var(--border);
    width: 420px;
    justify-self: center;
}

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

.intro-image-container:hover .intro-img {
    transform: scale(1.03);
}

.intro-content-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--blue-dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.intro-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 24px;
}

.intro-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.intro-bullets li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-bullets i {
    color: var(--emerald);
}

/* 3. Philosophy Section */
.philosophy-section {
    background: var(--bg-alt);
    /* padding: 70px 0; */
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.philosophy-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(23, 59, 122, 0.08);
    border-color: var(--blue-tint);
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-tint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--blue);
}

.philosophy-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

/* 4. Journey Timeline Section */
.journey-section {
    /* padding: 80px 0; */
}

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.journey-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.journey-row.row-reverse {
    flex-direction: row-reverse;
}

.journey-image-col,
.journey-content-col {
    width: 50%;
}

.journey-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--border);
}

.journey-img {
    width: 100%;
    height: auto;
    display: block;
}

.journey-age {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--blue-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.journey-content-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.journey-content-col p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 20px;
}

.journey-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: var(--blue-tint);
    color: var(--blue);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 5. Teaching Methodology Section */
.methodology-section {
    background: var(--bg-alt);
    /* padding: 70px 0; */
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.methodology-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(23, 59, 122, 0.06);
    border-color: var(--blue-tint);
}

.methodology-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald-tint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: var(--emerald);
}

.methodology-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.methodology-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* 6. Subjects Offered Section */
.subjects-section {
    /* padding: 80px 0; */
}

.subjects-tabs-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 16px;
}

.subject-tab-btn {
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 24px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.subject-tab-btn:hover {
    color: var(--blue);
}

.subject-tab-btn.active {
    color: var(--blue-dark);
}

.subject-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
}

.subject-tab-panel {
    display: none;
}

.subject-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.subject-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.subject-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s;
}

.subject-card:hover {
    border-color: var(--gold);
}

.sub-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sub-header i {
    font-size: 1.25rem;
    color: var(--blue);
}

.sub-header h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0;
}

.subject-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* 7. Beyond Academics Section */
.beyond-section {
    background: var(--bg-alt);
    /* padding: 80px 0; */
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.beyond-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.beyond-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.beyond-img-holder {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
}

.beyond-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.beyond-card:hover .beyond-img-holder img {
    transform: scale(1.05);
}

.beyond-info {
    padding: 16px;
}

.beyond-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.beyond-info p {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--muted);
    margin: 0;
}

/* 8. Assessment & Evaluation Section */
/* .assessment-section {
    padding: 80px 0;
} */

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.assessment-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
}

.assessment-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
}

.assessment-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.assessment-head i {
    font-size: 1.3rem;
    color: var(--blue);
}

.assessment-head h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin: 0;
}

.assessment-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

/* 9. Why Our Curriculum Section */
.why-curriculum-section {
    background: var(--bg-alt);
    /* padding: 80px 0; */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.why-card-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald-tint);
    color: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
}

/* 10. Learning in Action (Gallery Slider) */
.action-gallery-section {
    /* padding: 80px 0 50px 0; */
}

.gallery-slider-outer {
    overflow-x: auto;
    padding: 10px 24px 30px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-tint) transparent;
}

.gallery-slider-outer::-webkit-scrollbar {
    height: 6px;
}

.gallery-slider-outer::-webkit-scrollbar-thumb {
    background: var(--blue-tint);
    border-radius: 4px;
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.gallery-slide-card {
    width: 300px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.gallery-slide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slide-caption {
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--blue-dark);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* 11. FAQ Section */
.faq-section {
    background: var(--bg-alt);
    /* padding: 80px 0; */
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s;
}

.faq-question-btn:hover {
    background-color: var(--blue-tint);
}

.faq-chevron {
    font-size: 1rem;
    color: var(--blue);
    transition: transform 0.2s;
}

.faq-question-btn.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-panel p {
    padding: 0 24px 20px 24px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
}

/* 12. Call To Action Section */
.curriculum-cta-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: #fff;

}

.curriculum-cta-section h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.curriculum-cta-section p {
    color: #cfd9ec;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-actions-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-link-white {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    transition: opacity 0.2s;
}

.btn-link-white:hover {
    opacity: 0.85;
    color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive media breakpoints */
@media (max-width: 1200px) {

    .philosophy-grid,
    .methodology-grid,
    .subject-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .beyond-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .philosophy-grid,
    .methodology-grid,
    .subject-cards-grid,
    .assessment-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beyond-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-row,
    .journey-row.row-reverse {
        flex-direction: column;
        gap: 24px;
    }

    .journey-image-col,
    .journey-content-col {
        width: 100%;
    }

    .journey-image-col {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .beyond-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subject-tab-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .philosophy-grid,
    .methodology-grid,
    .subject-cards-grid,
    .assessment-grid,
    .why-grid,
    .beyond-grid {
        grid-template-columns: 1fr;
    }

    .intro-bullets {
        grid-template-columns: 1fr;
    }

    .curriculum-hero-banner h1,
    .curriculum-cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    section {
        padding: 35px 0px;
    }

    .philosophy-card {
        padding-block: 4px;
    }
}