/* Reset & Root Variables */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --header-bg: #FCFCF8;
    --hero-bg: #F5FFF0;
    --primary-green: #1A3C24;
    --heading-color: #1A3C24;
    --subheading-color: #1E3E21;
    --accent-green: #0B5D36;
    --light-green-bg: #F2F8F3;
    --title-dark: #1A3C24;
    --text-dark: #45713D;
    --text-muted: #45713D;
    --accent-gold: #946E43;
    --white: #FFFFFF;
    --shadow: 0px 4px 5.8px rgba(0, 0, 0, 0.25);
    --card-shadow: 0px 10px 24px rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --header-height: 104px;
}

body {
    font-family: var(--font-main);
    background-color: var(--hero-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--header-bg);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ==========================================================================
   UNIFIED GLOBAL CONTAINER ALIGNMENT SYSTEM (Strict 100% Equal Margins & Paddings)
   ========================================================================== */
.container,
[class*="-container"],
.header-container,
.hero-container,
.stats-container,
.courses-container,
.syllabi-container,
.why-choose-container,
.approach-container,
.about-container,
.helps-container,
.success-container,
.demo-container,
.faq-container,
.footer-container,
.about-banner-container,
.about-story-container,
.about-why-choose-container,
.about-team-container,
.about-unique-container,
.igcse-hero-container,
.igcse-courses-container,
.igcse-subjects-container,
.igcse-approach-container,
.igcse-why-choose-container,
.igcse-board-success-container,
.cbse-journey-container,
.igcse-cta-banner-container,
.contact-banner-container,
.contact-info-container,
.gallery-banner-container,
.gallery-media-container,
.app-form-hero-container,
.learning-philosophy-container,
.app-form-container,
.app-footer-container,
.payment-hero-container,
.student-details-container,
.fee-structure-container,
.contact-container,
.gallery-container,
.mission-container,
.story-container,
.team-container,
.language-courses-container,
.testimonials-container {
    width: 100% !important;
    max-width: 1600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    box-sizing: border-box !important;
}

@media (max-width: 1440px) {

    .container,
    [class*="-container"],
    .header-container,
    .hero-container,
    .stats-container,
    .courses-container,
    .syllabi-container,
    .why-choose-container,
    .approach-container,
    .about-container,
    .helps-container,
    .success-container,
    .demo-container,
    .faq-container,
    .footer-container,
    .about-banner-container,
    .about-story-container,
    .about-why-choose-container,
    .about-team-container,
    .about-unique-container,
    .igcse-hero-container,
    .igcse-courses-container,
    .igcse-subjects-container,
    .igcse-approach-container,
    .igcse-why-choose-container,
    .igcse-board-success-container,
    .cbse-journey-container,
    .igcse-cta-banner-container,
    .contact-banner-container,
    .contact-info-container,
    .gallery-banner-container,
    .gallery-media-container,
    .app-form-hero-container,
    .learning-philosophy-container,
    .app-form-container,
    .app-footer-container,
    .payment-hero-container,
    .student-details-container,
    .fee-structure-container,
    .contact-container,
    .gallery-container,
    .mission-container,
    .story-container,
    .team-container,
    .language-courses-container,
    .testimonials-container {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo-img {
    width: auto;
    max-width: 194px;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 40px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    position: relative;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-item.active .nav-link {
    font-weight: 500;
    color: var(--primary-green);
}

.active-line {
    position: absolute;
    bottom: -4px;
    left: 2px;
    width: 20px;
    height: 0px;
    border-bottom: 2px solid var(--primary-green);
    border-radius: 2px;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-icon {
    transition: transform 0.2s ease;
}

.dropdown-icon path {
    stroke: var(--text-dark);
    transition: stroke 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: translateY(2px);
}

.nav-item.dropdown:hover .dropdown-icon path {
    stroke: var(--primary-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    min-width: 160px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f4f7f4;
    color: var(--primary-green);
}

.header-action {
    display: flex;
    align-items: center;
}

.btn-book-demo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: 100% !important;
    height: 48px;
    background: var(--primary-green);
    border-radius: 8px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0px 2px 4px rgba(11, 93, 54, 0.2);
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    white-space: nowrap !important;
}

.btn-book-demo:hover {
    background-color: #084829;
    box-shadow: 0px 4px 12px rgba(11, 93, 54, 0.35);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    position: relative;
    z-index: 1250;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .hamburger-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Nav Overlay Backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-action-btn-wrap {
    display: none;
    margin-top: 20px;
    width: 100%;
}


/* ==========================================================================
   HERO / BANNER SECTION STYLES (Exact Figma Properties @ 1920px baseline)
   ========================================================================== */

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 682px;
    background: var(--hero-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 0;
}

.hero-container {
    width: 100%;
    max-width: 1920px;
    padding: 0 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* Left Hero Content Layout */
.hero-content {
    max-width: 766px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge: Trusted by 5000+ Parents */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 16px;
    background: var(--light-green-bg);
    border-radius: 16px;
    margin-bottom: 16px;
}

.hero-badge span {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
}

/* Title: Unlock Your Child's Academic Excellence */
.hero-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 62px;
    line-height: 72px;
    color: #1A3C24;
    margin-bottom: 24px;
}

.highlight-green {
    color: var(--accent-green);
}

/* Board Tags: IGCSE, CBSE, KERALA STATE BOARD */
.board-tags {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.board-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-dot {
    width: 11px;
    height: 11px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
}

.board-item span {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #1E3E21;
}

/* Description Text */
.hero-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    max-width: 710px;
    margin-bottom: 32px;
}

/* Features List: Certified Teacher, Small Batch Classes, Personalized Learning */
.hero-features {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.feature-item span {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 12px;
    line-height: 26px;
    color: var(--text-dark);
}

/* Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-primary-demo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 12px 22px !important;
    width: auto !important;
    min-width: 170px !important;
    max-width: 100% !important;
    height: 48px;
    background: var(--primary-green);
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    line-height: 19px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0px 2px 6px rgba(11, 93, 54, 0.25);
    transition: all 0.25s ease;
    white-space: nowrap !important;
}

.btn-primary-demo:hover {
    background-color: #084829;
    box-shadow: 0px 4px 14px rgba(11, 93, 54, 0.4);
    transform: translateY(-2px);
}

.btn-outline-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 273px;
    height: 48px;
    border: 1.5px solid var(--primary-green);
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--accent-green);
    text-decoration: none;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-outline-explore:hover {
    background: rgba(11, 93, 54, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-outline-explore svg {
    transition: transform 0.2s ease;
}

.btn-outline-explore:hover svg {
    transform: translateX(4px);
}


/* Right Visual & Floating Cards Container */
.hero-visual {
    position: relative;
    width: 750px;
    height: 565px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* FLOATING SEGMENT CARDS (Continuous Gentle Float Keyframe Animation) */
@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    z-index: 20;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card:hover {
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.12);
}

/* Card 1: Live Interactive Classes (Top Left of Girl) */
.card-live {
    top: 25px;
    left: 210px;
    width: 155px;
    height: 49px;
    padding: 0 14px;
    gap: 10px;
    animation-delay: 0s;
}

.card-live .card-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
}

/* Card 2: Personalized Learning (Middle Right of Girl) */
.card-personalized {
    top: 260px;
    right: 45px;
    width: 150px;
    height: 47px;
    padding: 0 12px;
    gap: 10px;
    animation-delay: 1.2s;
}

.card-personalized .card-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
}

/* Card 3: Progress Tracking (Lower Left of Girl) */
.card-progress {
    bottom: 110px;
    left: -20px;
    width: 145px;
    height: 49px;
    padding: 0 14px;
    gap: 10px;
    animation-delay: 2.4s;
}

.card-progress .card-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
}

/* Card 4: Reviews & Ratings (Bottom Left below Progress Tracking) */
.card-reviews {
    bottom: 25px;
    left: -30px;
    width: 186px;
    height: 49px;
    padding: 0 12px;
    gap: 10px;
    animation: none;
}

.card-reviews .review-left {
    display: flex;
    align-items: center;
}

.avatars-img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.card-reviews .review-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-score {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 8px;
    line-height: 12px;
    color: #1E3E21;
}

.stars-img {
    height: 12px;
    width: auto;
    object-fit: contain;
}

/* Card 5: Classroom Thumbnail (Top Right Screen Image) */
.card-board-thumb {
    top: 195px;
    right: 15px;
    width: 186px;
    height: 122px;
    padding: 5px;
    border-radius: 12px;
    animation: none;
    overflow: hidden;
}

.board-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Reducing size proportionally below 1920px)
   ========================================================================== */

/* 1600px Laptop */
@media (max-width: 1600px) {
    .hero-container {
        padding: 0 100px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-title {
        font-size: 52px;
        line-height: 62px;
    }

    .hero-visual {
        width: 650px;
        height: 490px;
    }
}

/* 1440px Desktop / Laptop */
@media (max-width: 1440px) {
    :root {
        --header-height: 92px;
    }

    .header-container {
        padding: 0 50px;
    }

    .hero-container {
        padding: 0 60px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 54px;
    }

    .board-tags {
        gap: 20px;
    }

    .board-item span {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 24px;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-visual {
        width: 580px;
        height: 440px;
    }

    .card-live {
        top: 15px;
        left: 160px;
    }

    .card-personalized {
        top: 220px;
        right: 40px;
    }

    .card-progress {
        bottom: 90px;
        left: -10px;
    }

    .card-reviews {
        bottom: 15px;
        left: -20px;
    }

    .card-board-thumb {
        top: 123px;
        right: -29px;
        width: 130px;
        height: 89px;
    }
}

/* 1200px Small Laptop / Tablet */
@media (max-width: 1200px) {
    :root {
        --header-height: 84px;
    }

    .header-container {
        padding: 0 24px !important;
    }

    .header-nav {
        margin: 0 16px !important;
    }

    .nav-list {
        gap: 20px !important;
    }

    .nav-link {
        font-size: 11.5px !important;
        white-space: nowrap !important;
        gap: 4px !important;
    }

    .hero-container {
        padding: 0 24px !important;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 46px;
    }

    .board-item span {
        font-size: 12px;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn-primary-demo {
        width: 160px;
        height: 44px;
        font-size: 12px;
    }

    .btn-outline-explore {
        width: 230px;
        height: 44px;
        font-size: 12px;
    }

    .hero-visual {
        width: 460px;
        height: 380px;
    }
}

/* 992px Medium Tablet */
@media (max-width: 992px) {
    .hero-banner {
        padding: 40px 0;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        text-align: center !important;
    }

    .hero-content {
        max-width: 100% !important;
        align-items: center !important;
        order: 2 !important;
    }

    .board-tags,
    .hero-features,
    .hero-actions {
        justify-content: center !important;
    }

    .hero-visual {
        width: 100% !important;
        max-width: 550px !important;
        height: auto !important;
        min-height: 280px !important;
        order: 1 !important;
        margin: 0 auto !important;
    }
}

/* 768px Mobile View */
@media (max-width: 768px) {
    :root {
        --header-height: 76px;
    }

    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-action {
        display: none;
    }

    .header-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 85% !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        z-index: 1200 !important;
        padding: 90px 24px 30px !important;
        margin: 0 !important;
        transform: translateX(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease !important;
        box-shadow: -6px 0 25px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .header-nav.open {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 16px !important;
    }

    .nav-item {
        width: 100% !important;
    }

    .nav-link {
        font-size: 14px !important;
        font-weight: 600 !important;
        width: 100% !important;
        padding: 10px 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        color: #1E3E21 !important;
    }

    /* Mobile Accordion Dropdown Menu */
    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #F4F8F5 !important;
        width: 100% !important;
        margin-top: 6px !important;
        padding: 6px 0 !important;
        border-radius: 8px !important;
        border-left: 3px solid #0B5D36 !important;
        list-style: none !important;
    }

    .nav-item.dropdown.open .dropdown-menu {
        display: block !important;
    }

    .nav-item.dropdown.open .dropdown-icon {
        transform: rotate(180deg) !important;
    }

    .mobile-action-btn-wrap {
        display: block;
    }

    .mobile-action-btn-wrap .btn-book-demo {
        width: 100%;
        height: 48px;
        font-size: 12px;
    }

    .hero-title,
    .igcse-hero-title {
        font-size: 24px !important;
        line-height: 34px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .hero-description,
    .igcse-hero-desc {
        font-size: 11.5px !important;
        line-height: 20px !important;
        margin-bottom: 16px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 4px !important;
    }

    .board-tags,
    .hero-features,
    .igcse-hero-features {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px 12px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .igcse-feature-item,
    .board-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .igcse-feature-item span,
    .board-item span {
        font-size: 11px !important;
        line-height: 18px !important;
        white-space: normal !important;
    }

    .igcse-feature-divider,
    .stat-divider {
        display: none !important;
    }

    .hero-actions,
    .contact-hero-actions,
    .gallery-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }

    .igcse-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }

    .btn-primary-demo,
    .btn-outline-explore,
    .btn-igcse-demo,
    .btn-contact-demo,
    .btn-contact-call,
    .btn-gallery-demo,
    .btn-gallery-call {
        flex: 0 1 auto !important;
        width: auto !important;
        max-width: 100% !important;
        height: 42px !important;
        font-size: 11.5px !important;
        line-height: 16px !important;
        padding: 0 14px !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 8px !important;
        letter-spacing: 0.01em !important;
    }

    .btn-outline-explore svg,
    .btn-igcse-demo svg,
    .btn-contact-demo svg,
    .btn-gallery-demo svg {
        width: 12px !important;
        height: 10px !important;
        flex-shrink: 0 !important;
        margin-left: 4px !important;
    }

    .hero-visual {
        width: 100% !important;
        max-width: 480px !important;
        height: auto !important;
        min-height: 280px !important;
        order: 1 !important;
        margin: 0 auto 20px auto !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-content {
        order: 2 !important;
    }

    .main-img-wrapper {
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-main-img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .floating-card {
        transform: scale(0.8) !important;
        transform-origin: center center !important;
    }

    .card-live {
        top: 5px !important;
        left: 10px !important;
    }

    .card-personalized {
        top: 180px !important;
        right: 0px !important;
    }

    .card-progress {
        bottom: 60px !important;
        left: -10px !important;
    }

    .card-reviews {
        bottom: 5px !important;
        left: -10px !important;
    }

    .card-board-thumb {
        display: none !important;
    }
}

/* 480px Small Mobile */
@media (max-width: 480px) {
    :root {
        --header-height: 68px;
    }

    .hero-visual {
        max-width: 340px !important;
        min-height: 240px !important;
        margin-bottom: 12px !important;
    }

    .main-img-wrapper {
        max-width: 270px !important;
    }

    .floating-card {
        transform: scale(0.68) !important;
        transform-origin: center center !important;
    }

    .card-live {
        top: -5px !important;
        left: -5px !important;
    }

    .card-personalized {
        top: 120px !important;
        right: -10px !important;
    }

    .card-progress {
        bottom: 30px !important;
        left: -10px !important;
    }

    .card-reviews {
        bottom: -5px !important;
        left: -10px !important;
    }

    .hero-title {
        font-size: 18px;
        line-height: 34px;
    }

    .board-item span {
        font-size: 11px;
    }

    .hero-description {
        font-size: 11px;
        margin-bottom: 10px;
    }
}

/* 360px Extra Small Mobile */
@media (max-width: 360px) {
    .hero-visual {
        max-width: 300px !important;
        min-height: 210px !important;
    }

    .main-img-wrapper {
        max-width: 230px !important;
    }

    .floating-card {
        transform: scale(0.58) !important;
    }

    .card-live {
        top: -8px !important;
        left: -15px !important;
    }

    .card-personalized {
        top: 100px !important;
        right: -18px !important;
    }

    .card-progress {
        bottom: 20px !important;
        left: -18px !important;
    }

    .card-reviews {
        bottom: -10px !important;
        left: -18px !important;
    }
}


/* ==========================================================================
   STATS / COUNTER SECTION STYLES (Exact Figma Specs @ 1920px Baseline)
   ========================================================================== */

.stats-section {
    width: 100%;
    min-height: 191px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 0;
}

.stats-container {
    width: 100%;
    max-width: 1920px;
    padding: 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Green Bar Container (1600px wide, 107px high at 1920px screen) */
.stats-bar {
    width: 100%;
    max-width: 1600px;
    min-height: 107px;
    background: #1F6834;
    border: 1px solid #939393;
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 24px 60px;
    gap: 20px;
}

/* Individual Stat Item */
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* White Circle Icon Container */
.stat-icon-circle {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Stat Number & Label Info */
.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 2px;
}

.plus-sign {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
}

.stat-label {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #C0C0C0;
    margin-top: 2px;
    white-space: nowrap;
}


/* ==========================================================================
   STATS SECTION RESPONSIVE MEDIA QUERIES (Reducing sizes below 1920px)
   ========================================================================== */

/* 1600px Desktop */
@media (max-width: 1600px) {
    .stats-container {
        padding: 0 80px;
    }

    .stats-bar {
        padding: 24px 40px;
    }
}

/* 1440px Laptop */
@media (max-width: 1440px) {
    .stats-container {
        padding: 0 50px;
    }

    .stats-bar {
        padding: 20px 32px;
        gap: 16px;
    }

    .stat-icon-circle {
        width: 44px;
        height: 44px;
    }

    .stat-icon {
        width: 22px;
        height: 22px;
    }

    .stat-number,
    .plus-sign {
        font-size: 18px;
        line-height: 24px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* 1200px Small Laptop */
@media (max-width: 1200px) {
    .stats-container {
        padding: 0 32px;
    }

    .stats-bar {
        padding: 20px 24px;
        gap: 12px;
    }

    .stat-item {
        gap: 12px;
    }

    .stat-icon-circle {
        width: 40px;
        height: 40px;
    }

    .stat-icon {
        width: 20px;
        height: 20px;
    }

    .stat-number,
    .plus-sign {
        font-size: 16px;
        line-height: 22px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* 992px Tablet (Grid layout with 2 items per row centered) */
@media (max-width: 992px) {
    .stats-section {
        padding: 30px 0;
    }

    .stats-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 28px 32px;
        min-height: auto;
        text-align: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .stat-icon-circle {
        margin: 0 auto;
    }

    .stat-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .stat-number {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        width: 100%;
    }

    .plus-sign {
        display: inline-block;
        width: auto;
    }

    .stat-label {
        text-align: center;
    }
}

/* 600px Mobile (2 items per row centered) */
@media (max-width: 600px) {
    .stats-container {
        padding: 0 16px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 20px;
        text-align: center;
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .stat-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .stat-number {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        width: 100%;
    }

    .plus-sign {
        font-size: 16px;
        display: inline-block;
        width: auto;
    }

    .stat-label {
        font-size: 10px;
        white-space: normal;
        text-align: center;
    }
}

/* 400px Small Mobile (1 item per row centered) */
@media (max-width: 400px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}


/* ==========================================================================
   COURSES OFFERED SECTION STYLES (Exact Figma Specs @ 1920px Baseline)
   ========================================================================== */

.courses-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    background: #FCFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
}

.courses-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Info */
.courses-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
    max-width: 1054px;
}

.courses-subtitle {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: var(--accent-green);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.courses-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
    margin-bottom: 16px;
    max-width: 600px;
}

.courses-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
}

/* Filter Tabs */
.courses-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.course-tab {
    height: 37px;
    padding: 0 24px;
    border: none;
    border-radius: 15px;
    background: rgba(142, 146, 144, 0.19);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #45713D;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.course-tab:hover {
    background: rgba(11, 93, 54, 0.12);
    color: var(--accent-green);
}

.course-tab.active {
    background: rgba(11, 93, 54, 0.19);
    color: var(--accent-green);
}

/* Course Content Wrap & Panels */
.course-content-wrap {
    width: 100%;
    min-height: 394px;
    position: relative;
}

.course-panel {
    display: none;
    width: 100%;
    align-items: center;
    gap: 54px;
}

.course-panel.active {
    display: flex;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Image Column */
.course-image-col {
    width: 673px;
    height: 394px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.08);
}

.course-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.course-image-col:hover .course-main-img {
    transform: scale(1.02);
}

/* Right Info Column */
.course-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.course-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(11, 93, 54, 0.21);
    border-radius: 6px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
    margin-bottom: 12px;
}

.course-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #1E3E21;
    margin-bottom: 12px;
}

.course-card-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    margin-bottom: 24px;
}

.course-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.course-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #45713D;
}

.tick-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-card-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 234px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(11, 93, 54, 0.25);
    transition: all 0.25s ease;
}

.btn-card-demo:hover {
    background-color: #084829;
    box-shadow: 0px 6px 14px rgba(11, 93, 54, 0.35);
    transform: translateY(-2px);
}

.btn-card-demo svg {
    transition: transform 0.2s ease;
}

.btn-card-demo:hover svg {
    transform: translateX(4px);
}

/* Background Arrow Decorative Element */
.course-bg-arrow {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 120px;
    height: 209px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.arrow-shape-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ==========================================================================
   COURSES OFFERED RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1600px Desktop */
@media (max-width: 1600px) {
    .courses-container {
        padding: 0 40px;
    }

    .course-image-col {
        width: 580px;
        height: 350px;
    }
}

/* 1440px Laptop */
@media (max-width: 1440px) {
    .courses-section {
        padding: 60px 0;
    }

    .courses-title {
        font-size: 30px;
        line-height: 44px;
    }

    .courses-description {
        font-size: 14px;
        line-height: 24px;
    }

    .course-image-col {
        width: 520px;
        height: 330px;
    }

    .course-card-desc,
    .course-checklist li {
        font-size: 14px;
        line-height: 22px;
    }
}

/* 1200px Small Laptop */
@media (max-width: 1200px) {
    .courses-panel {
        gap: 36px;
    }

    .course-image-col {
        width: 440px;
        height: 300px;
    }

    .course-card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .course-card-desc,
    .course-checklist li {
        font-size: 13px;
    }
}

/* 992px Tablet (Segmented Menu Bar & Adjusted Tab Content) */
@media (max-width: 992px) {
    .courses-tabs {
        display: inline-flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto 36px auto !important;
        padding: 5px 6px !important;
        background: #EAEFE9 !important;
        border: 1px solid rgba(11, 93, 54, 0.15) !important;
        border-radius: 30px !important;
    }

    .approach-header .approach-title {
        font-size: 18px;
    }

    .course-tab {
        flex: 1 1 auto !important;
        width: auto !important;
        height: 38px !important;
        padding: 0 20px !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        color: #45713D !important;
        background: transparent !important;
        border-radius: 24px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.25s ease !important;
    }

    .course-tab.active {
        background: #0B5D36 !important;
        color: #FFFFFF !important;
        box-shadow: 0px 2px 8px rgba(11, 93, 54, 0.25) !important;
    }

    .course-panel {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .course-image-col {
        width: 100% !important;
        max-width: 100% !important;
        height: 320px !important;
        border-radius: 16px !important;
    }

    .course-main-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    .course-info-col {
        width: 100% !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .course-badge {
        font-size: 10px !important;
        padding: 5px 12px !important;
        border-radius: 6px !important;
        margin-bottom: 10px !important;
    }

    .course-card-title {
        font-size: 20px !important;
        line-height: 28px !important;
        margin-bottom: 10px !important;
    }

    .course-card-desc {
        font-size: 12.5px !important;
        line-height: 22px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }

    .course-checklist {
        width: 100% !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
    }

    .course-checklist li {
        font-size: 12.5px !important;
        line-height: 22px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        text-align: left !important;
    }

    .tick-icon {
        width: 20px !important;
        height: 20px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .syllabi-ideal-wrap {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .btn-card-demo {
        width: auto !important;
        padding: 0 28px !important;
        height: 44px !important;
        font-size: 12.5px !important;
    }

    .course-bg-arrow {
        display: none !important;
    }
}

/* 600px Mobile (Menu Bar Scroll & Scaled Tab Content) */
@media (max-width: 600px) {
    .courses-section {
        padding: 36px 0 !important;
    }

    .courses-container {
        padding: 0 16px !important;
    }

    .courses-title {
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .courses-description {
        font-size: 11.5px !important;
        line-height: 20px !important;
    }

    .courses-tabs {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 4px !important;
        margin-bottom: 24px !important;
        background: #F4F7F4 !important;
        border: 1px solid #E0E8E2 !important;
        border-radius: 22px !important;
        overflow: visible !important;
        box-shadow: none !important;
    }

    .course-tab {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: 100% !important;
        min-height: 34px !important;
        height: auto !important;
        padding: 6px 10px !important;
        font-size: 9.5px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        text-align: center !important;
        white-space: normal !important;
        background: #FFFFFF !important;
        border: 1px solid #D0DAD3 !important;
        border-radius: 18px !important;
        color: #4A524D !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.25s ease !important;
    }

    .course-tab.active {
        background: #0B5D36 !important;
        color: #FFFFFF !important;
        border-color: #0B5D36 !important;
        box-shadow: 0px 2px 6px rgba(11, 93, 54, 0.2) !important;
    }

    .course-image-col {
        height: 200px !important;
        border-radius: 14px !important;
    }

    .course-main-img {
        border-radius: 14px !important;
    }

    .course-card-title {
        font-size: 17px !important;
        line-height: 25px !important;
    }

    .course-card-desc {
        font-size: 11.5px !important;
        line-height: 20px !important;
    }

    .course-checklist li {
        font-size: 11.5px !important;
        line-height: 20px !important;
        gap: 8px !important;
    }

    .tick-icon {
        width: 18px !important;
        height: 18px !important;
        margin-top: 1px !important;
    }

    .btn-card-demo {
        width: 100% !important;
        height: 44px !important;
        font-size: 12px !important;
    }
}


/* ==========================================================================
   SYLLABI & SUBJECTS COVERED SECTION STYLES (Exact Figma Specs @ 1920px)
   ========================================================================== */

.syllabi-section {
    position: relative;
    width: 100%;
    min-height: 1076px;
    background: linear-gradient(0deg, rgba(11, 93, 54, 0.82), rgba(11, 93, 54, 0.82)), url('img/foundation-mastery-course.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    overflow: hidden;
}

.syllabi-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
.syllabi-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
    max-width: 1054px;
}

.syllabi-subtitle {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #A5E4C1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.syllabi-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #FFFFFF;
    text-align: center;
    max-width: 830px;
}

/* Cards Grid (4 Cards) */
.syllabi-cards-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 70px;
    box-sizing: border-box;
}

.syllabi-card {
    width: 100%;
    min-height: 300px;
    background: transparent;
    border: 3px solid #AAD68F;
    box-shadow: 0px 16px 21.4px rgba(255, 255, 255, 0.25), 0px 0px 10px rgba(170, 214, 143, 0.4);
    border-radius: 12px;
    padding: 24px 14px 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.syllabi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 20px 30px rgba(255, 255, 255, 0.35), 0px 0px 16px rgba(170, 214, 143, 0.6);
}

.syllabi-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.syllabi-card-sub {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 13.5px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #E8F4E4;
    margin-bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.syllabi-card-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ideal For */
.syllabi-ideal-wrap {
    margin-bottom: 24px;
    width: 100%;
    max-width: 318px;
}

.ideal-title {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #0B5D36;
    margin-bottom: 3px;
    display: block;
}

.ideal-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 36px;
    padding: 0;
    margin: 0;
}

.ideal-list li {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #3f8335;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ideal-dot {
    width: 5px;
    height: 5px;
    background: #03843F;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Details Button */
.btn-syllabi-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 234px;
    height: 48px;
    background: var(--primary-green);
    border: 1px solid #F6FEF1;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-syllabi-details:hover {
    background-color: #084829;
    box-shadow: 0px 4px 14px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-syllabi-details svg {
    transition: transform 0.2s ease;
}

.btn-syllabi-details:hover svg {
    transform: translateX(4px);
}

/* Subjects Header */
.subjects-header {
    margin-bottom: 28px;
}

.subjects-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 30px;
    line-height: 53px;
    color: #FFFFFF;
    text-align: center;
}

/* Subjects Bar & Column Layout */
.subjects-bar {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.subject-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.subject-pill {
    width: 100%;
    height: 67px;
    border-radius: 29px;
    padding: 0 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.subject-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}

/* Subject Dropdown Card (Closed by default) */
.subject-dropdown {
    display: none;
    width: 100%;
    background: #FFFFFF;
    border-radius: 14px;
    margin-top: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    flex-direction: column;
}

.subject-col.active .subject-dropdown {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    width: 100%;
    padding: 10px 16px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #3f8335;
    text-align: center;
    border-bottom: 1px solid #484D4A;
    background: #FFFFFF;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #F5FFF0;
    color: var(--primary-green);
    cursor: pointer;
}

.pill-pink {
    background: #EDDDE8;
}

.pill-cyan {
    background: #E0F5F7;
}

.pill-purple {
    background: #E1DCF2;
}

.pill-peach {
    background: #F1E0D9;
}

.subject-pill .subject-icon-box {
    width: 67px;
    height: 67px;
    background: #FFFFFF;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subject-pill .subject-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.subject-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #1E3E21;
    text-transform: capitalize;
    margin-left: 12px;
    flex: 1;
    white-space: nowrap;
}

.subject-arrow {
    width: 27px;
    height: 27px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.subject-col.active .subject-arrow {
    transform: rotate(180deg);
}


/* ==========================================================================
   SYLLABI & SUBJECTS RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1600px Desktop */
@media (max-width: 1600px) {
    .syllabi-cards-grid {
        gap: 24px;
    }

    .syllabi-card {
        padding: 30px 22px;
    }

    .subjects-bar {
        gap: 16px;
    }

    .subject-text {
        font-size: 14px;
    }
}

/* 1440px Laptop */
@media (max-width: 1440px) {
    .syllabi-title {
        font-size: 30px;
        line-height: 44px;
    }

    .syllabi-card-title {
        font-size: 20px;
        line-height: 32px;
    }

    .syllabi-card-sub {
        font-size: 16px;
        line-height: 22px;
    }

    .syllabi-card-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .subject-pill {
        height: 60px;
    }

    .subject-pill .subject-icon-box {
        width: 60px;
        height: 60px;
    }

    .subject-text {
        font-size: 13px;
    }
}

/* Maintain 4 in a Row between 1020px and 1400px with compact inside spacing and larger fonts */
@media (min-width: 1020px) and (max-width: 1400px) {
    .syllabi-cards-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
    }

    .syllabi-card {
        padding: 16px 6px 14px 6px !important;
        min-height: 300px !important;
    }

    .syllabi-card-title {
        font-size: 18.5px !important;
        line-height: 24px !important;
        min-height: 44px !important;
        margin-bottom: 4px !important;
    }

    .syllabi-card-sub {
        font-size: 15px !important;
        line-height: 18px !important;
        min-height: 48px !important;
        margin-bottom: 8px !important;
    }

    .syllabi-card-desc {
        font-size: 13.5px !important;
        line-height: 18px !important;
        margin-bottom: 12px !important;
    }

    .btn-syllabi-details {
        max-width: 185px !important;
        height: 42px !important;
        font-size: 13px !important;
        gap: 6px !important;
        padding: 0 8px !important;
    }

    .btn-syllabi-details svg {
        width: 16px !important;
        height: 12px !important;
    }
}

/* Below 1020px Tablet Grid (2x2 Layout) */
@media (max-width: 1019px) {
    .syllabi-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 20px !important;
    }

    .syllabi-card {
        padding: 28px 24px !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .syllabi-card-title {
        font-size: 20px !important;
        line-height: 28px !important;
        min-height: auto !important;
    }

    .syllabi-card-sub {
        font-size: 14px !important;
        line-height: 20px !important;
        min-height: auto !important;
    }

    .syllabi-card-desc {
        font-size: 13px !important;
        line-height: 21px !important;
    }

    .btn-syllabi-details {
        max-width: 220px !important;
        font-size: 13.5px !important;
    }

    .subjects-bar {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .subject-pill {
        width: 100% !important;
    }
}

/* 768px Mobile Stack (Single Column Layout) */
@media (max-width: 768px) {
    .syllabi-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .syllabi-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .subjects-bar {
        grid-template-columns: 1fr !important;
    }
}

/* 600px Mobile */
@media (max-width: 600px) {
    .syllabi-section {
        padding: 60px 0;
    }

    .syllabi-container {
        padding: 0 16px;
    }

    .syllabi-title {
        font-size: 22px;
        line-height: 32px;
    }

    .syllabi-card {
        padding: 24px 16px;
    }

    .btn-syllabi-details {
        width: 100%;
    }

    .subjects-title {
        font-size: 24px;
    }

    .subjects-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subject-text {
        white-space: normal;
        font-size: 13px;
    }
}


/* ==========================================================================
   OUR APPROACH / LEARNING PLAN SECTION STYLES (Exact Figma Specs @ 1920px)
   ========================================================================== */

.approach-section {
    position: relative;
    width: 100%;
    min-height: 755px;
    background: #FCFCF8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    overflow: hidden;
}

.approach-container {
    width: 100%;
    max-width: 1605px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.approach-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
    max-width: 1054px;
}

.approach-header .approach-subtitle {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: var(--accent-green);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.approach-header .approach-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
    margin-bottom: 16px;
    text-align: center;
}

.approach-header .approach-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    text-align: center;
}

/* Cards Row */
.approach-cards-row {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
}

.approach-card {
    flex: 1;
    min-height: 334px;
    border-radius: 27px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.08);
}

.card-green {
    background: rgba(220, 234, 214, 0.4);
}

.card-lavender {
    background: rgba(225, 220, 242, 0.4);
}

/* Card Image */
.approach-card-img-wrap {
    width: 349px;
    height: 288px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.06);
}

.approach-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.approach-card-img-wrap:hover .approach-card-img {
    transform: scale(1.03);
}

/* Card Info */
.approach-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 30px;
    line-height: 53px;
    color: #1E3E21;
    margin-bottom: 12px;
}

.approach-card-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    max-width: 368px;
}

/* Rocket Path Graphic */
.approach-rocket-graphic {
    position: absolute;
    top: -98px;
    right: 40px;
    width: 381px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.rocket-svg {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* ==========================================================================
   OUR APPROACH RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 1600px Desktop */
@media (max-width: 1600px) {
    .approach-cards-row {
        gap: 24px;
    }

    .approach-card-img-wrap {
        width: 300px;
        height: 250px;
    }

    .approach-card-title {
        font-size: 26px;
        line-height: 44px;
    }
}

/* 1440px Laptop */
@media (max-width: 1440px) {
    .approach-title {
        font-size: 30px;
        line-height: 44px;
    }

    .approach-card {
        min-height: 270px;
    }

    .approach-section {

        min-height: 650px;
    }

    .approach-description,
    .approach-card-desc {
        font-size: 12px;
        line-height: 24px;
    }

    .approach-card-img-wrap {
        width: 270px;
        height: 230px;
    }

    .approach-card-title {
        font-size: 24px;
        line-height: 38px;
    }
}

/* 1200px Small Laptop */
@media (max-width: 1200px) {
    .approach-card {
        padding: 20px;
        gap: 20px;
    }

    .approach-card-img-wrap {
        width: 230px;
        height: 210px;
    }

    .approach-card-title {
        font-size: 16px;
        line-height: 34px;
    }

    .approach-rocket-graphic {
        width: 360px;
        top: -20px;
    }
}

/* 992px Tablet (Stack Cards Vertically) */
@media (max-width: 992px) {
    .approach-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .approach-card {
        width: 100%;
        max-width: 650px;
    }

    .approach-rocket-graphic {
        display: none;
    }
}

/* 600px Mobile */
@media (max-width: 600px) {
    .approach-section {
        padding: 60px 0;
    }

    .approach-container {
        padding: 0 16px;
    }

    .approach-title {
        font-size: 22px;
        line-height: 32px;
    }

    .approach-description {
        font-size: 12px;
        line-height: 20px;
    }

    .approach-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
    }

    .approach-card-img-wrap {
        width: 100%;
        height: 220px;
    }

    .approach-card-title {
        font-size: 20px;
        line-height: 30px;
    }

    .approach-card-desc {
        font-size: 12px;
        line-height: 20px;
        max-width: 100%;
    }
}

/* ==========================================================================
   ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
    position: relative;
    width: 100%;
    background-color: #F5FFF0;
    padding: 100px 0;
}

/* Background Decorative Elements */
.about-bg-dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    width: 219px;
    height: auto;
    opacity: 0.85;
}

.about-dots-top-left {
    left: 0;
    top: 40px;
}

.about-dots-bottom-right {
    right: 0;
    bottom: 20px;
}

.about-bg-pambaram {
    position: absolute;
    right: 0;
    top: -106px;
    width: 179px;
    height: 213px;
    pointer-events: none;
    z-index: 10;
}

/* Layout Container */
.about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left Image Column */
.about-image-col {
    flex: 1 1 50%;
    max-width: 729px;
    display: flex;
    justify-content: flex-start;
}

.about-image-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-img {
    width: 100%;
    height: 489px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Right Content Column */
.about-content-col {
    flex: 1 1 50%;
    max-width: 617px;
}

.about-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #2E8B57;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
    margin-bottom: 20px;
}

.about-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    margin-bottom: 32px;
}

/* Feature List */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #221F1F;
}

.about-tick-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: block;
}

/* Button */
.btn-about-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 234px;
    height: 48px;
    padding: 0 28px;
    background-color: #0B5D36;
    color: #FFFFFF;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(11, 93, 54, 0.2);
    transition: all 0.3s ease;
}

.btn-about-learn:hover {
    background-color: #08492a;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(11, 93, 54, 0.3);
}

.btn-about-learn svg {
    transition: transform 0.3s ease;
}

.btn-about-learn:hover svg {
    transform: translateX(4px);
}


/* ==========================================================================
   ABOUT US RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1600px) {
    .about-container {
        max-width: 1440px;
        gap: 50px;
    }

    .about-main-img {
        height: 440px;
    }
}

@media (max-width: 1440px) {
    .about-container {
        padding: 0 50px;
        gap: 40px;
    }

    .about-title {
        font-size: 30px;
        line-height: 46px;
    }

    .about-description,
    .about-feature-item {
        font-size: 14px;
        line-height: 24px;
    }

    .about-main-img {
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 32px;
    }

    .about-bg-pambaram {
        width: 140px;
        height: auto;
        top: -70px;
    }

    .about-dots-top-left,
    .about-dots-bottom-right {
        width: 160px;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column !important;
        gap: 32px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .about-image-col,
    .about-content-col {
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
        box-sizing: border-box !important;
    }

    .about-main-img {
        height: auto !important;
        max-height: 320px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    .about-title {
        font-size: 26px !important;
        line-height: 38px !important;
        margin-bottom: 16px !important;
    }

    .about-description {
        font-size: 13px !important;
        line-height: 22px !important;
        margin-bottom: 24px !important;
    }

    .about-feature-list {
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .about-feature-item {
        font-size: 12.5px !important;
        line-height: 20px !important;
    }

    .about-bg-pambaram {
        width: 120px;
        height: auto;
        right: 10px;
        top: -60px;
    }

    .about-dots-top-left {
        top: 10px;
        width: 140px;
    }

    .about-dots-bottom-right {
        bottom: 10px;
        width: 140px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 16px;
        gap: 36px;
    }

    .about-title {
        font-size: 22px;
        line-height: 34px;
    }

    .about-description,
    .about-feature-item {
        font-size: 13px;
        line-height: 22px;
    }

    .about-main-img {
        height: 260px;
    }

    .btn-about-learn {
        width: 100%;
        min-width: unset;
    }

    .about-bg-pambaram {
        width: 90px;
        height: auto;
        right: 5px;
        top: -45px;
        opacity: 0.8;
    }

    .about-dots-top-left,
    .about-dots-bottom-right {
        width: 100px;
        opacity: 0.4;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================================== */
.why-choose-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding: 110px 0 100px;
    overflow: hidden;
}

.why-choose-container {
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
}

/* Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #1E3E21;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-choose-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
}

/* 3-Column Grid */
.why-choose-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.why-choose-col {
    flex: 1;
}

.why-choose-col.left-col,
.why-choose-col.right-col {
    flex: 1 1 0%;
    width: 0;
    min-width: 0;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-col.center-col {
    flex: 0 0 340px;
    width: 340px;
    max-width: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Student Image & Decorative SVG */
.student-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 330px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.premium-arrow-graphic {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    max-width: 420px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.student-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0px 16px 30px rgba(0, 0, 0, 0.08));
}

/* Feature Cards */
.why-card {
    border-radius: 20px;
    padding: 22px 24px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.06);
}

.why-card.card-light-green {
    background: rgba(220, 234, 214, 0.4);
}

.why-card.card-light-lavender {
    background: rgba(225, 220, 242, 0.4);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.why-card-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #0B5D36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(11, 93, 54, 0.2);
}

.why-card-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.why-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
    color: #1E3E21;
}

.why-card-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    color: #45713D;
}

/* Responsive Styles */
@media (max-width: 1200px) and (min-width: 992px) {
    .why-choose-section {
        padding: 50px 0 45px !important;
    }

    .why-choose-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    .why-choose-header {
        margin-bottom: 28px !important;
    }

    .why-choose-title {
        font-size: 26px !important;
        line-height: 38px !important;
        margin-top: 0 !important;
    }

    .why-choose-section .why-choose-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .why-choose-col.left-col,
    .why-choose-col.right-col {
        flex: 1 1 0% !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 360px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .why-choose-col.center-col {
        flex: 0 0 230px !important;
        width: 230px !important;
        max-width: 230px !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        order: 0 !important;
    }

    .student-img-wrapper {
        width: 100% !important;
        max-width: 220px !important;
        position: relative !important;
    }

    .premium-arrow-graphic {
        width: 300px !important;
        max-width: 300px !important;
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1 !important;
    }

    .why-card {
        padding: 16px 16px !important;
        border-radius: 16px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .why-card-header {
        gap: 10px !important;
        margin-bottom: 8px !important;
    }

    .why-card-icon-box {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }

    .why-card-title {
        font-size: 13px !important;
        line-height: 20px !important;
    }

    .why-card-desc {
        font-size: 10.5px !important;
        line-height: 17.5px !important;
    }
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 45px 0 45px !important;
    }

    .igcse-approach-banner .approach-title {
        font-size: 23px !important;

    }

    .why-choose-container {
        padding: 0 20px !important;
    }

    .why-choose-header {
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .why-choose-subtitle {
        font-size: 11px !important;
        line-height: 16px !important;
        margin-bottom: 8px !important;
    }

    .why-choose-title {
        font-size: 24px !important;
        line-height: 35px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        color: #1A3C24 !important;
    }

    .why-choose-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .why-choose-col.left-col {
        order: 1 !important;
        width: 100% !important;
        max-width: 600px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .why-choose-col.center-col {
        order: 2 !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 16px auto !important;
    }

    .premium-arrow-graphic {
        width: 320px !important;
        max-width: 320px !important;
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1 !important;
    }

    .why-choose-col.right-col {
        order: 3 !important;
        width: 100% !important;
        max-width: 600px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 50px 0 !important;
    }

    .why-choose-container {
        padding: 0 16px !important;
    }

    .why-choose-title {
        font-size: 22px !important;
        line-height: 34px !important;
    }

    .premium-arrow-graphic {
        width: 260px !important;
        max-width: 260px !important;
        top: 10px !important;
    }

    .why-card {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .why-card-title {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .why-card-desc {
        font-size: 12px !important;
        line-height: 20px !important;
    }
}

/* ==========================================================================
   HOW RADICAL STUDY HELPS SECTION STYLES (Frame 2287 @ 1920px)
   ========================================================================== */
.helps-section {
    position: relative;
    width: 100%;
    min-height: 764px;
    background: linear-gradient(0deg, rgba(9, 80, 46, 0.82), rgba(9, 80, 46, 0.82)), url('img/howradiclestudyhelps.png') no-repeat center center / cover;
    padding: 100px 0 90px;
    overflow: hidden;
    color: #FFFFFF;
}

.helps-container {
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
}

/* Top Bar: Subtitle/Title Left, Slider Controls Right */
.helps-top-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}

.helps-header {
    max-width: 950px;
}

.helps-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.helps-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #FFFFFF;
}

/* Slider Arrow Controls */
.helps-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #F3F1FA;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 13.9px rgba(212, 208, 154, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-btn:hover {
    background-color: #FFFFFF;
    transform: scale(1.05);
}

.slider-btn svg path {
    stroke: #000000;
}

/* Cards Track & Horizontal Connecting Line */
.helps-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.helps-connecting-line {
    position: absolute;
    top: 34.5px;
    left: 35px;
    right: 35px;
    height: 1px;
    border-top: 1px solid #9C9797;
    z-index: 1;
}

.helps-cards-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    transition: transform 0.28s ease-out;
}

.helps-card {
    flex: 0 0 calc((100% - 80px) / 3);
    width: calc((100% - 80px) / 3);
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Round White Icon Box */
.helps-icon-box {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background-color: #F3F1FA;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 13.9px rgba(212, 208, 154, 0.25);
    margin-bottom: 32px;
    flex-shrink: 0;
}

.helps-icon {
    width: 34.5px;
    height: 34.5px;
    object-fit: contain;
    display: block;
}

.helps-card-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 16px;
    min-height: 64px;
}

.helps-card-desc {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #DFD5D5;
}

/* Responsive Rules for How Radical Study Helps */
@media (max-width: 1600px) {
    .helps-container {
        max-width: 1440px;
        padding: 0 50px;
    }

    .helps-card-title {
        font-size: 20px;
        line-height: 30px;
        min-height: 60px;
    }

    .helps-card-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 1200px) {
    .helps-top-bar {
        margin-bottom: 60px;
    }

    .helps-title {
        font-size: 28px;
        line-height: 44px;
    }

    .helps-cards-row {
        gap: 24px;
    }

    .helps-card {
        flex: 0 0 calc((100% - 48px) / 3);
        width: calc((100% - 48px) / 3);
    }

    .helps-card-title {
        font-size: 18px;
        line-height: 28px;
        min-height: 56px;
    }

    .helps-card-desc {
        font-size: 13px;
        line-height: 22px;
    }
}

@media (max-width: 992px) {
    .helps-top-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: nowrap;
    }

    .helps-header {
        flex: 1;
        min-width: 0;
    }

    .helps-slider-controls {
        flex-shrink: 0;
        margin-left: auto;
    }

    .helps-cards-row {
        gap: 24px;
    }

    .helps-card {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }

    .helps-card-title {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .helps-section {
        padding: 50px 0 40px;
        min-height: auto !important;
    }

    .helps-container {
        padding: 0 20px;
    }

    .helps-top-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
        margin-bottom: 36px;
    }

    .helps-header {
        flex: 1;
        min-width: 0;
    }

    .helps-title {
        font-size: 22px;
        line-height: 32px;
    }

    .helps-slider-controls {
        flex-shrink: 0;
        margin-left: auto;
    }

    .helps-connecting-line {
        display: none;
    }

    .helps-cards-row {
        gap: 16px;
    }

    .helps-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .helps-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .helps-icon {
        width: 28px;
        height: 28px;
    }

    .helps-card-title {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 12px;
        min-height: auto;
    }

    .helps-card-desc {
        font-size: 13px;
        line-height: 21px;
    }
}

@media (max-width: 480px) {
    .helps-section {
        padding: 40px 0 36px;
    }

    .helps-container {
        padding: 0 16px;
    }

    .helps-top-bar {
        margin-bottom: 24px;
        gap: 12px;
    }

    .helps-title {
        font-size: 19px;
        line-height: 28px;
    }

    .helps-card-title {
        font-size: 15px;
        line-height: 23px;
    }

    .helps-card-desc {
        font-size: 12px;
        line-height: 19px;
    }
}

/* ==========================================================================
   SUCCESS STORIES SECTION STYLES (Frame 2248 @ 1920px)
   ========================================================================== */
.success-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0 50px;
    overflow: hidden;
}

.success-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-top-bar {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 40px;
}

/* Header */
.success-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 950px;
}

.success-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #2E8B57;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.success-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
    margin-bottom: 16px;
}

.success-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
}

.success-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* Carousel Row */
.success-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0px 30px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.success-carousel-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.success-cards-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    width: max-content;
    margin: 0 auto;
}

.success-card {
    position: relative;
    width: 380px;
    height: 483px;
    border-radius: 35px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.18);
}

.success-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.success-card:hover .success-card-img {
    transform: scale(1.04);
}

/* Centered White Circular Play Button */
.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 5;
}

.play-video-btn svg {
    margin-left: 3px;
}

.success-card:hover .play-video-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background-color: #F8FFF5;
}

/* Responsive Media Queries */
@media (max-width: 1600px) {
    .success-card {
        width: 330px;
        height: 430px;
        border-radius: 28px;
    }

    .play-video-btn {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 1200px) {
    .success-section {
        padding: 45px 0 40px !important;
        overflow: hidden !important;
    }

    .success-top-bar {
        padding: 0 24px !important;
        margin-bottom: 24px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }

    .success-header {
        margin-bottom: 0 !important;
        padding: 0 !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .success-title {
        font-size: 24px !important;
        line-height: 35px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .success-description {
        font-size: 13px !important;
        line-height: 22px !important;
    }

    .success-slider-controls {
        flex-shrink: 0 !important;
        margin-left: auto !important;
        margin-bottom: 4px !important;
    }

    .success-carousel-wrapper {
        padding: 10px 0px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .success-cards-row {
        justify-content: flex-start !important;
        gap: 16px !important;
        margin: 0 !important;
        padding: 0 24px !important;
    }

    .success-card {
        width: 270px !important;
        height: 350px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 768px) {
    .success-top-bar {
        padding: 0 16px !important;
        margin-bottom: 20px !important;
        gap: 12px !important;
    }

    .success-cards-row {
        padding: 0 16px !important;
    }

    .success-card {
        width: 250px !important;
        height: 320px !important;
        border-radius: 20px !important;
    }

    .btn-igcse-explore {
        font-size: 10px !important;
    }

    .approach-header {
        margin-bottom: 20px !important;
    }

    .approach-header .approach-title {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }
}

@media (max-width: 600px) {
    .success-section {
        padding: 36px 0 32px !important;
    }

    .success-top-bar {
        padding: 0 16px !important;
        margin-bottom: 16px !important;
        gap: 12px !important;
    }

    .success-header {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .success-title {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    .success-description {
        font-size: 12px !important;
        line-height: 20px !important;
    }

    .success-carousel-wrapper {
        padding: 6px 0px 16px !important;
    }

    .success-cards-row {
        gap: 14px !important;
        padding: 0 16px !important;
    }

    .success-card {
        width: 220px !important;
        height: 280px !important;
        border-radius: 16px !important;
    }

    .play-video-btn {
        width: 48px !important;
        height: 48px !important;
    }
}

/* ==========================================================================
   BOOK FREE DEMO CLASS SECTION STYLES (Frame 2276 & 2277 @ 1920px)
   ========================================================================== */
.demo-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding-bottom: 20px;
}

/* Top Dark Green Background Area */
.demo-top-bg {
    width: 100%;
    background-color: #0B5D36;
    padding: 35px 0 100px;
}

.demo-container {
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
}

/* Header */
.demo-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: #FFFFFF;
}

.demo-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #A5E4C1;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.demo-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.demo-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #E0E0E0;
}

/* Form Card Container (Overlapping Top Area) */
.demo-card-wrapper {
    width: 100%;
    max-width: 1604px;
    margin: -80px auto 0;
    padding: 0 85px;
    position: relative;
    z-index: 10;
}

.demo-card {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.12);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Left Image Column */
.demo-card-img-col {
    flex: 0 0 360px;
    height: 345px;
    border-radius: 20px;
    overflow: hidden;
}

.demo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Form Column */
.demo-card-form-col {
    flex: 1;
    padding-right: 10px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0;
}

.demo-form .form-row.full-width {
    grid-template-columns: 1fr;
}

.demo-form .form-row.full-width .form-group,
.demo-form .form-row.two-col .form-group {
    width: 100%;
}

.demo-form .form-row.two-col .form-group {
    min-width: 0;
}

.form-group {
    position: relative;
}

/* Underline Inputs & Select Dropdowns - Uniform Height & Style */
.form-input,
.form-select {
    width: 100%;
    height: 38px;
    padding: 6px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #000000;
    font-family: 'Poppins', var(--font-main);
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #1E3E21;
    outline: none;
    box-sizing: border-box;
    transition: border-bottom-color 0.3s ease;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 12px 8px;
    cursor: pointer;
}

.form-select:invalid,
.form-select option[value=""][disabled] {
    color: #1E3E21;
}

.form-select option {
    background-color: #FFFFFF;
    color: #1E3E21;
    padding: 8px;
}

.form-input::placeholder {
    color: #45713D !important;
    opacity: 1 !important;
    font-weight: 400;
}

.form-input:focus,
.form-select:focus {
    border-bottom-color: #0B5D36;
    border-bottom-width: 2px;
}

/* Form Submit Button */
.form-submit-wrap {
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
}

.btn-submit-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 0 28px;
    background-color: #0B5D36;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    cursor: pointer;
    box-shadow: 0px 4px 12px rgba(11, 93, 54, 0.25);
    transition: all 0.3s ease;
}

.btn-submit-demo:hover {
    background-color: #08492a;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(11, 93, 54, 0.35);
}

.btn-submit-demo svg {
    transition: transform 0.3s ease;
}

.btn-submit-demo:hover svg {
    transform: translateX(4px);
}

/* Responsive Media Queries */
@media (max-width: 1600px) {

    .demo-container,
    .demo-card-wrapper {
        max-width: 1440px;
        padding: 0 50px;
    }

    .demo-card-img-col {
        flex: 0 0 450px;
        height: 460px;
    }
}

@media (max-width: 1200px) {
    .demo-top-bg {
        padding: 80px 0 150px;
    }

    .demo-title {
        font-size: 28px;
        line-height: 44px;
    }

    .demo-card {
        padding: 24px;
        gap: 28px;
    }

    .demo-card-img-col {
        flex: 0 0 380px;
        height: 420px;
    }

    .form-row {
        gap: 24px;
    }

    .form-input {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .demo-top-bg {
        padding: 55px 0 110px !important;
    }

    .demo-container,
    .demo-card-wrapper {
        padding: 0 16px !important;
    }

    .demo-header {
        margin-bottom: 24px !important;
    }

    .demo-title {
        font-size: 24px !important;
        line-height: 35px !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
    }

    .demo-description {
        font-size: 12.5px !important;
        line-height: 22px !important;
    }

    .demo-card-wrapper {
        margin-top: -60px !important;
    }

    .approach-header {
        margin-bottom: 20px !important;
    }

    .approach-header .approach-description {
        font-size: 13px !important;
    }

    .demo-card {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .demo-card-img-col {
        width: 100% !important;
        flex: unset !important;
        height: 320px !important;
    }

    .demo-card-form-col {
        padding-right: 0 !important;
    }

    .form-row.two-col {
        flex-direction: column !important;
        gap: 24px !important;
    }
}

@media (max-width: 600px) {
    .demo-top-bg {
        padding: 40px 0 90px !important;
    }

    .demo-container,
    .demo-card-wrapper {
        padding: 0 16px !important;
    }

    .demo-title {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .demo-description {
        font-size: 11.5px !important;
        line-height: 20px !important;
    }

    .demo-card-wrapper {
        margin-top: -50px !important;
    }

    .demo-card {
        padding: 16px !important;
        border-radius: 24px !important;
    }

    .demo-card-img-col {
        height: 240px !important;
        border-radius: 20px !important;
    }

    .btn-submit-demo {
        width: 100% !important;
    }
}

/* ==========================================================================
   FAQ SECTION STYLES (Frame 2286 @ 1920px)
   ========================================================================== */
.faq-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 0 50px;
    overflow: hidden;
}

/* Floating Illustrations */
.faq-decor-book {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 150px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.faq-decor-rocket {
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 160px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.faq-container {
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
    position: relative;
    z-index: 5;
}

/* Header */
.faq-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-subtitle {
    display: block;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #2E8B57;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 34px;
    line-height: 53px;
    color: #1A3C24;
}

/* Accordion Outer Box */
.faq-accordion-box {
    width: 100%;
    max-width: 1222px;
    margin: 0 auto;
    background: #F9FCF4;
    border: 1px solid #949494;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #949494;
    transition: background-color 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-item-header:hover {
    background-color: rgba(11, 93, 54, 0.04);
}

.faq-question {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.032em;
    color: #1E3E21;
    margin: 0;
    padding-right: 20px;
}

/* Circle Chevron Icon Box */
.faq-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #767676;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #45713D;
    transition: all 0.3s ease;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

/* Active Open FAQ Item Styling */
.faq-item.active {
    background-color: #F9FCF4;
}

.faq-item.active .faq-icon-box {
    background-color: #0B5D36;
    border-color: #0B5D36;
    color: #FFFFFF;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

/* Body / Answer text */
.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 40px;
}

.faq-item.active .faq-item-body {
    max-height: 300px;
    padding: 0 40px 28px 40px;
}

.faq-answer {
    font-family: 'Poppins', var(--font-main);
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: #3F3E3E;
    margin: 0;
}

/* Responsive Media Queries for FAQ */
@media (max-width: 1600px) {
    .faq-container {
        max-width: 1440px;
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    .faq-section {
        padding: 80px 0 100px;
    }

    .faq-title {
        font-size: 28px;
        line-height: 44px;
    }

    .faq-decor-book {
        width: 120px;
        top: 20px;
        right: 20px;
    }

    .faq-decor-rocket {
        width: 130px;
        bottom: 20px;
        left: 20px;
    }

    .faq-item-header {
        padding: 22px 30px;
    }

    .faq-item.active .faq-item-body {
        padding: 0 30px 22px 30px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 25px;
    }
}

@media (max-width: 992px) {
    .demo-section {
        padding-bottom: 0px !important;
    }

    .faq-section {
        position: relative !important;
        padding: 36px 0 45px !important;
        overflow: hidden !important;
    }

    .faq-header {
        margin-bottom: 24px !important;
    }

    .faq-decor-book {
        display: block !important;
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        width: 80px !important;
        height: auto !important;
        opacity: 0.85 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    .faq-decor-rocket {
        display: block !important;
        position: absolute !important;
        bottom: 15px !important;
        left: 15px !important;
        width: 85px !important;
        height: auto !important;
        opacity: 0.85 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }
}

@media (max-width: 768px) {
    .faq-item-header {
        padding: 18px 20px !important;
    }

    .faq-item.active .faq-item-body {
        padding: 0 20px 18px 20px !important;
    }

    .faq-question {
        font-size: 14px !important;
        line-height: 23px !important;
    }

    .faq-icon-box {
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 600px) {
    .demo-section {
        padding-bottom: 0px !important;
    }

    .faq-section {
        position: relative !important;
        padding: 24px 0 36px !important;
        overflow: hidden !important;
    }

    .faq-container {
        padding: 0 16px !important;
    }

    .faq-header {
        margin-bottom: 20px !important;
    }

    .faq-title {
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .faq-decor-book {
        display: block !important;
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        width: 60px !important;
        height: auto !important;
        opacity: 0.85 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    .faq-decor-rocket {
        display: block !important;
        position: absolute !important;
        bottom: 10px !important;
        left: 10px !important;
        width: 65px !important;
        height: auto !important;
        opacity: 0.85 !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    .faq-item-header {
        padding: 16px !important;
    }

    .faq-item.active .faq-item-body {
        padding: 0 16px 16px 16px !important;
    }

    .faq-answer {
        font-size: 12px !important;
        line-height: 22px !important;
    }
}

/* ==========================================================================
   SITE FOOTER STYLES (1920px Design Specs)
   ========================================================================== */
.site-footer {
    position: relative;
    width: 100%;
    min-height: 361px;
    background-color: #0B5D36;
    background-image: linear-gradient(0deg, rgba(11, 93, 54, 0.88), rgba(11, 93, 54, 0.88)), url('img/footer.png');
    background-repeat: repeat;
    background-size: 361px 361px;
    animation: continuousFooterScroll 50s linear infinite;
    padding: 70px 0 60px;
    color: #FFFFFF;
}

@keyframes continuousFooterScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 361px 361px;
    }
}

.footer-container {
    width: 100%;
    max-width: 1604px;
    margin: 0 auto;
    padding: 0 85px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 360px 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

/* Col 1: Logo */
.footer-col-logo {
    width: 100%;
    max-width: 320px;
}

.footer-logo-img {
    width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Titles */
.footer-col-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 22px;
    line-height: 36px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

/* Links lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a {
    font-family: 'Poppins', var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E4E4E4;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Poppins', var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E4E4E4;
}

.contact-item a {
    color: #E4E4E4;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: #FFFFFF;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Footer Copyright Section */
.footer-copyright {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-copyright-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-copyright-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-copyright-logo {
    width: 120px;
    height: auto;
    display: inline-block;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-copyright-text {
    font-family: 'Poppins', var(--font-main);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #E4E4E4;
    margin: 8px 0;
}

.footer-branding a {
    text-decoration: none;
    color: #FFFFFF;
}

.footer-branding a img {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.footer-branding {
    font-family: 'Poppins', var(--font-main);
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 8px 0 0 0;
}

/* Responsive Rules for Footer */
@media (max-width: 1600px) {
    .footer-container {
        max-width: 1440px;
        padding: 0 50px;
    }

    .footer-col-title {
        font-size: 18px;
    }

    .footer-links-list a,
    .contact-item {
        font-size: 14px;
    }

    .footer-logo-img {
        width: 240px;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 36px 0 32px !important;
    }

    .footer-container {
        padding: 0 24px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1.2fr 1fr 1fr !important;
        gap: 20px !important;
        align-items: flex-start !important;
    }

    .footer-col-logo {
        grid-column: auto !important;
        order: initial !important;
        text-align: left !important;
        max-width: 100% !important;
        display: block !important;
        margin-bottom: 0 !important;
    }

    .footer-logo-img {
        width: 180px !important;
        height: auto !important;
    }

    .footer-col-title {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 12px !important;
    }

    .footer-links-list {
        gap: 10px !important;
    }

    .footer-copyright {
        order: 10 !important;
        grid-column: 1 / -1 !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
    }

    .footer-copyright-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .footer-copyright-left {
        align-items: flex-start !important;
    }

    .footer-copyright-right {
        align-items: flex-end !important;
    }
}


@media (max-width: 768px) {
    .site-footer {
        padding: 28px 0 20px !important;
    }

    .footer-container {
        padding: 0 16px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1.1fr 1fr 1fr !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .footer-col-logo {
        grid-column: auto !important;
        order: initial !important;
        text-align: left !important;
        max-width: 100% !important;
        display: block !important;
        margin-bottom: 0 !important;
    }

    .footer-logo-img {
        width: 140px !important;
        height: auto !important;
    }

    .footer-col-title {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 8px !important;
    }

    .footer-links-list {
        gap: 6px !important;
    }

    .footer-links-list a,
    .contact-item {
        font-size: 12px !important;
        line-height: 16px !important;
    }

    .footer-copyright {
        order: 10 !important;
        grid-column: 1 / -1 !important;
        margin-top: 12px !important;
        padding-top: 12px !important;
    }

    .footer-copyright-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .footer-copyright-left {
        align-items: flex-start !important;
    }

    .footer-copyright-right {
        align-items: flex-end !important;
    }

    .footer-copyright-logo {
        width: 90px !important;
        margin-bottom: 6px !important;
    }

    .footer-copyright-text {
        font-size: 10px !important;
        line-height: 14px !important;
        margin: 0 !important;
    }

    .footer-branding {
        font-size: 9px !important;
        line-height: 14px !important;
        margin: 0 !important;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 30px 0 28px !important;
    }

    .footer-container {
        padding: 0 16px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .footer-col-logo {
        grid-column: 1 !important;
        order: -1 !important;
        max-width: 100% !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 8px !important;
    }

    .footer-logo-img {
        width: 170px !important;
        height: auto !important;
    }

    .footer-col-title {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 10px !important;
    }

    .footer-links-list {
        gap: 10px !important;
    }

    .footer-links-list a,
    .contact-item {
        font-size: 12px !important;
        line-height: 20px !important;
    }

    .footer-copyright {
        order: 10 !important;
        grid-column: 1 !important;
        margin-top: 12px !important;
        padding-top: 16px !important;
        text-align: center !important;
    }

    .footer-copyright-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .footer-copyright-left {
        align-items: center !important;
    }

    .footer-copyright-right {
        align-items: center !important;
    }

    .footer-copyright-logo {
        width: 100px !important;
        margin-bottom: 12px !important;
    }

    .footer-copyright-text {
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .footer-branding {
        font-size: 11px !important;
        line-height: 18px !important;
    }
}

/* ==========================================================================
   IGCSE BANNER / HERO SECTION STYLES (Exact Figma Specs & Responsive)
   ========================================================================== */

.igcse-hero-banner,
.gcse-hero-banner {
    position: relative;
    width: 100%;
    min-height: 540px;
    background: linear-gradient(180deg, #ECEFE8 0%, #ECEFE8 100%);
    border-radius: 0px 0px 0px 81px;
    padding: 40px 0 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Vector Graphic */
.igcse-hero-vector-bg {
    position: absolute;
    width: 351px;
    height: 343px;
    right: 15%;
    top: -33px;
    background: #E8F4E4;
    opacity: 0.67;
    transform: rotate(29.5deg);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.igcse-hero-container {
    width: 100%;
    max-width: 1600px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Main Top Row */
.igcse-hero-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* Left Content Column */
.igcse-hero-content {
    max-width: 700px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge Pill: Frame 6 */
.igcse-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: 32px;
    padding: 0 16px;
    background: #F2F8F3;
    border-radius: 16px;
    margin-bottom: 16px;
}

.igcse-hero-badge span {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Main Title */
.igcse-hero-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    color: #1A3C24;
    margin-bottom: 20px;
}

.igcse-hero-title .highlight-green {
    color: #0B5D36;
}

/* Description Text */
.igcse-hero-desc {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    margin-bottom: 32px;
    max-width: 580px;
}

/* Feature Checklist Row: Frame 2142 */
.igcse-hero-features {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
}

.igcse-feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.igcse-tick-circle {
    width: 24px;
    height: 24px;
    background: #0B5D36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.igcse-feature-item span {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #1E3E21;
    white-space: nowrap;
}

.igcse-feature-divider {
    width: 1px;
    height: 32px;
    background: #6B6969;
    opacity: 0.3;
    display: inline-block;
}

/* CTA Action Buttons: Frame 18 */
.igcse-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-igcse-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 182px;
    height: 48px;
    background: #0B5D36;
    border-radius: 8px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0px 4px 10px rgba(11, 93, 54, 0.25);
}

.btn-igcse-demo:hover {
    background: #084829;
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(11, 93, 54, 0.35);
}

.btn-igcse-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    height: 48px;
    border: 1px solid #0B5D36;
    border-radius: 8px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 19px;
    color: #2E8B57;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-igcse-explore:hover {
    background: rgba(11, 93, 54, 0.05);
    transform: translateY(-2px);
}

/* Right Visual Column */
.igcse-hero-visual {
    position: relative;
    flex: 1.2;
    max-width: 950px;
    min-height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.igcse-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.igcse-banner-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
    transform: none;
}

/* Floating Cards Common */
@keyframes floatCardIgcse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.state-hero-banner {
    background: #E3E1E0;
    border-radius: 0px 0px 0px 81px;
}

.language-hero-banner {
    position: relative;
    width: 100%;
    min-height: 540px;
    background: linear-gradient(180deg, #FEF2D7 0%, #FFF9EB 100%);
    border-radius: 0px 0px 0px 81px;
    padding: 40px 0 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.language-hero-banner .igcse-hero-title {
    margin-top: 12px;
}

.igcse-floating-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px !important;
    height: auto !important;
    max-height: 44px !important;
    width: max-content;
    max-width: 90%;
    z-index: 5;
    transition: box-shadow 0.3s ease;
    animation: floatCardIgcse 4s ease-in-out infinite;
}

.igcse-floating-card img {
    height: 22px !important;
    max-height: 22px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.igcse-floating-card:hover {
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.14);
}

.igcse-floating-card .card-text {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    color: #1E3E21;
    white-space: nowrap;
}

/* Card 1: Live Interactive Classes */
.card-live-classes {
    top: 8%;
    left: -40px;
    animation-delay: 0s;
}

.pulse-indicator {
    position: relative;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 13px;
    height: 13px;
    background: #47B57A;
    opacity: 0.36;
    border-radius: 50%;
    animation: pulseGlow 2s infinite ease-in-out;
}

.pulse-core {
    position: relative;
    width: 7px;
    height: 7px;
    background: #03843F;
    border-radius: 50%;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* Card 2: Progress Tracking */
.card-progress-tracking {
    top: 48%;
    left: -40px;
    animation-delay: 0.8s;
}

/* Card 3: Personalized Learning */
.card-personalized-learning {
    bottom: 18%;
    right: 40px;
    animation-delay: 1.6s;
}

/* Card 4: Ratings & Reviews (Static) */
.card-reviews-rating {
    top: 4%;
    right: 20px;
    padding: 8px 12px;
    animation: none;
    height: auto !important;
    max-height: 54px !important;
    width: auto !important;
    max-width: 220px !important;
}

.review-avatar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* GCSE Hero Custom Floating Cards Matching Figma Reference */
.gcse-icon-box {
    width: 36px;
    height: 36px;
    background: #8CAE88;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gcse-icon-box svg path,
.gcse-icon-box svg circle {
    stroke: #FFFFFF !important;
}

.gcse-icon-box img,
.gcse-card-svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gcse-card-exam-focused {
    top: 2%;
    left: -20px;
    padding: 8px 16px !important;
    animation-delay: 0s;
}

.gcse-card-goals-driven {
    top: 60%;
    left: -30px;
    padding: 8px 16px !important;
    animation-delay: 1s;
}

.gcse-card-subject-wise {
    bottom: 18%;
    right: -10px;
    padding: 8px 16px !important;
    animation-delay: 2s;
}

.state-card {
    min-height: 355px !important;
}

.review-avatars {
    height: 24px !important;
    max-height: 24px !important;
    width: auto !important;
    object-fit: contain;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gcse-ca {
    min-height: 331px !important;
}

.review-score {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 8px;
    line-height: 12px;
    color: #1E3E21;
    white-space: nowrap;
}

.stars-img {
    height: 10px !important;
    max-height: 10px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

/* Bottom Stats Card: Frame 2143 */
.igcse-stats-card {
    width: 100%;
    max-width: 1200px;
    background: #FFFFFF;
    border: 1px solid #0B5D36;
    box-shadow: 0px 8px 24px rgba(11, 93, 54, 0.12);
    border-radius: 20px;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -50px auto 0 auto;
    position: relative;
    z-index: 100;
}

/* Language Stats Card Specific Styles */
.language-stats-card {
    padding: 16px 28px !important;
}

.lang-stat-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.lang-stat-img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    object-fit: contain;
    flex-shrink: 0;
}

.lang-fr-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E8F4E8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0B5D36;
    flex-shrink: 0;
}

.lang-avatar-img {
    height: 28px !important;
    width: auto !important;
    flex-shrink: 0;
}

.lang-stat-icon-img {
    width: 26px !important;
    height: 26px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.lang-stat-text-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.lang-stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    color: #525252;
}

.lang-stat-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    line-height: 18px;
    color: #1A3C24;
}

.igcse-stat-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.stat-logo-col {
    justify-content: flex-start;
    max-width: 260px;
}

.cambridge-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.stat-divider {
    width: 1px;
    height: 55px;
    background: #946E43;
    opacity: 0.15;
    margin: 0 20px;
    flex-shrink: 0;
}

.stat-globally-col {
    max-width: 410px;
}

.stat-globally-col .stat-text {
    max-width: 326px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #1A3C24;
}

.stat-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrap.gradient-bg {
    background: linear-gradient(180deg, #FFF3F3 0%, #CACECC 100%);
}

.stat-svg-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.stat-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #1A3C24;
}

.stat-text.bold-text {
    font-weight: 600;
}

.stat-students-col {
    max-width: 280px;
}

.stat-students-col .stat-text {
    max-width: 160px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 26px;
    color: #1A3C24;
}

.stat-avatars-wrap {
    flex-shrink: 0;
}

.stat-avatars-img {
    height: 32px;
    width: auto;
}

.stat-success-col {
    max-width: 280px;
}

.stat-success-text {
    display: flex;
    flex-direction: column;
}

.success-rate-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rate-number {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #494C4B;
}

.rate-label {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    color: #1E3E21;
}

.rate-sub {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #45713D;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .igcse-hero-container {
        padding: 0 24px !important;
    }

    .igcse-hero-title {
        font-size: 30px;
        line-height: 42px !important;
    }

    .igcse-hero-content {
        max-width: 540px !important;
    }

    .igcse-hero-features {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
    }

    .igcse-feature-item span {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .igcse-tick-circle {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    .igcse-feature-divider {
        display: none !important;
    }

    .igcse-hero-actions,
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 16px !important;
    }

    .btn-igcse-demo,
    .btn-igcse-explore,
    .btn-primary-demo,
    .btn-outline-explore {
        width: auto !important;
        padding: 10px 16px !important;
        font-size: 10.5px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 42px !important;
    }

    .igcse-hero-visual {
        flex: 1.1 !important;
        max-width: 520px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .igcse-img-wrapper {
        width: 100% !important;
        max-width: 500px !important;
        position: relative !important;
    }

    .igcse-banner-img {
        width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        min-height: auto !important;
        object-fit: contain !important;
        transform: none !important;
    }

    .igcse-floating-card {
        transform: scale(0.85) !important;
    }

    .card-reviews-rating {
        top: -10px !important;
        right: -10px !important;
    }

    .card-live-classes {
        top: -10px !important;
        left: -25px !important;
    }

    .card-progress-tracking {
        top: 45% !important;
        left: -30px !important;
    }

    .card-personalized-learning {
        bottom: 5% !important;
        right: -15px !important;
    }

    .igcse-stats-card {
        flex-wrap: nowrap !important;
        gap: 16px !important;
        justify-content: space-between !important;
        margin: -28px auto 0 auto !important;
        padding: 16px 20px !important;
        max-width: 1100px !important;
        position: relative !important;
        z-index: 100 !important;
    }

    .stat-divider {
        display: block !important;
    }

    .igcse-stat-col {
        min-width: 0 !important;
        flex: 1 !important;
    }

    .stat-globally-col .stat-text,
    .stat-students-col .stat-text,
    .stat-text {
        font-size: 11px !important;
        line-height: 18px !important;
    }
}

@media (max-width: 992px) {

    .igcse-hero-banner,
    .hero-banner {
        padding: 30px 0 36px !important;
    }

    .igcse-hero-main-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 24px !important;
    }

    .why-choose-header {
        margin-bottom: 10px !important;
    }

    .igcse-hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        order: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .igcse-hero-title {
        font-size: 25px !important;
        line-height: 36px !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .igcse-hero-title br {
        display: none !important;
    }

    .igcse-hero-desc {
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 20px !important;
        white-space: normal !important;
        text-align: left !important;
        margin-bottom: 20px !important;
    }

    .igcse-hero-features {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 10px 14px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .igcse-feature-item span {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .igcse-tick-circle {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
    }

    .igcse-hero-actions {
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .igcse-hero-visual,
    .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        margin: 0 auto 16px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        order: 1 !important;
    }

    .igcse-img-wrapper {
        width: 100% !important;
        max-width: 480px !important;
        position: relative !important;
        margin: 12px auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .igcse-banner-img {
        min-height: auto !important;
        height: auto !important;
        max-height: 380px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        transform: scale(1.1) translateX(-5%) !important;
        transform-origin: center center !important;
    }

    .igcse-floating-card {
        transform: scale(0.88) !important;
    }

    .card-live-classes {
        top: 0px !important;
        left: -10px !important;
    }

    .card-reviews-rating {
        top: 0px !important;
        right: -10px !important;
    }

    .card-progress-tracking {
        bottom: 20px !important;
        top: auto !important;
        left: -15px !important;
    }

    .card-personalized-learning {
        bottom: 20px !important;
        right: -10px !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .igcse-stats-card {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: -33px auto 0 auto !important;
        padding: 16px 24px !important;
        width: 100% !important;
        max-width: 1100px !important;
        box-sizing: border-box !important;
    }

    .igcse-stats-card .stat-divider {
        display: block !important;
        height: 36px !important;
        width: 1px !important;
        background: #B4B4B4 !important;
        flex-shrink: 0 !important;
    }

    .igcse-stat-col {
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 991px) and (min-width: 577px) {
    .igcse-stats-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        align-items: center !important;
        justify-content: center !important;
        margin: -20px auto 20px auto !important;
        padding: 20px 24px !important;
        gap: 16px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .igcse-stats-card .stat-divider {
        display: none !important;
    }

    .igcse-stat-col,
    .lang-stat-col {
        width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
    }

    .stat-cambridge-img,
    .igcse-cambridge-logo {
        max-width: 180px !important;
        height: auto !important;
        margin: 0 0 4px 0 !important;
    }
}

@media (max-width: 576px) {

    .igcse-hero-banner,
    .hero-banner {
        padding: 28px 0 24px !important;
        border-radius: 0px 0px 0px 32px;
    }

    .igcse-approach-banner .approach-title {
        font-size: 23px !important;

    }

    .igcse-hero-container {
        padding: 0 16px;
        gap: 20px !important;
    }

    .igcse-hero-title {
        font-size: 22px !important;
        line-height: 32px !important;
        white-space: normal !important;
        margin-top: 0 !important;
    }

    .igcse-hero-desc {
        white-space: normal !important;
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .igcse-hero-features {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 12px !important;
        margin-bottom: 16px !important;
    }

    .igcse-feature-item span {
        white-space: normal !important;
    }

    .igcse-feature-divider {
        display: none !important;
    }

    .igcse-stats-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 12px !important;
        padding: 18px 14px !important;
        margin: -20px auto 24px auto !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .stat-divider,
    .igcse-stats-card .stat-divider,
    .cbse-stat-divider {
        display: none !important;
    }

    .igcse-stat-col,
    .lang-stat-col {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .stat-cambridge-img,
    .igcse-cambridge-logo {
        max-width: 110px !important;
        height: auto !important;
        margin: 0 !important;
        object-fit: contain !important;
        align-self: center !important;
    }

    .stat-globally-col .stat-text,
    .stat-students-col .stat-text,
    .stat-text {
        font-size: 10.5px !important;
        line-height: 15px !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .stat-icon {
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
    }

    .igcse-hero-main-row,
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .igcse-hero-content,
    .hero-content {
        order: 2 !important;
    }

    .igcse-hero-visual,
    .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 16px auto !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        order: 1 !important;
    }

    .igcse-img-wrapper {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .igcse-banner-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 340px !important;
        min-height: auto !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
        transform: scale(1.12) translateX(-6%) !important;
        transform-origin: center center !important;
    }

    .igcse-floating-card {
        padding: 4px 8px !important;
        font-size: 8px !important;
        border-radius: 8px !important;
    }

    .card-live-classes {
        top: -8px !important;
        left: -8px !important;
    }

    .card-progress-tracking {
        bottom: 10px !important;
        left: -10px !important;
    }

    .card-personalized-learning {
        bottom: 10px !important;
        right: -10px !important;
    }

    .card-reviews-rating {
        top: -8px !important;
        right: -8px !important;
    }
}

/* ==========================================================================
   IGCSE COURSES OFFERED SECTION (Frame 2183 / Frame 2182)
   ========================================================================== */

.igcse-courses-section {
    width: 100%;
    padding: 80px 0;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
}

.igcse-courses-container {
    width: 100%;
    max-width: 1600px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header: Frame 2179 */
.igcse-courses-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.igcse-courses-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.igcse-courses-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.igcse-courses-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 48px;
    color: #1A3C24;
    margin: 0;
}

.igcse-title-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

/* Courses Grid: Frame 2182 */
.igcse-courses-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* GCSE Curriculum Tracks (Foundation & Higher Tier) 2-Card Grid */
.gcse-tracks-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.gcse-track-card {
    background: #F4F8F3;
    border: 1px solid #D2E2CF;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gcse-track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 24px rgba(11, 93, 54, 0.1);
}

.gcse-track-goal-label {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #0B5D36;
    margin-top: 24px;
    margin-bottom: 6px;
    display: block;
}

.gcse-track-goal-desc {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #45713D;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .gcse-tracks-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .gcse-track-card {
        padding: 24px 20px !important;
    }

    .gcse-pathway-title {
        font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
        font-style: normal;
        font-weight: 600;
        font-size: 25px !important;
        line-height: 36px !important;
    }
}

/* GCSE A Personalized Pathway for every Student Section */
.gcse-pathway-section {
    width: 100%;
    background: #fff;
    padding: 70px 0;
    position: relative;
}

.gcse-pathway-container {
    width: 100%;
    max-width: 1567px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gcse-pathway-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.gcse-pathway-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #1A3C24;
    margin-bottom: 12px;
    position: relative;
}

.gcse-pathway-title::after {
    content: '';
    display: block;
    width: 76px;
    height: 3px;
    background: #946E43;
    margin: 8px auto 0 auto;
}

.gcse-pathway-subtitle {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #585757;
    max-width: 826px;
}

.gcse-pathway-lead {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #45713D;
    align-self: flex-start;
    margin-bottom: 36px;
}

.gcse-pathway-chain {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 48px;
}

.gcse-pathway-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 110px;
}

.gcse-pathway-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(180deg, #FFFFFF 10.62%, #D0EBDE 78.92%);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0px 4px 12px rgba(11, 93, 54, 0.08);
}

.gcse-pathway-icon-box svg,
.gcse-pathway-icon-box img,
.gcse-pathway-svg {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(26%) sepia(74%) saturate(674%) hue-rotate(104deg) brightness(96%) contrast(96%) !important;
}

.gcse-pathway-step-title {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    color: #0B5D36;
}

.gcse-pathway-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    color: #0B5D36;
    flex-shrink: 0;
}

.gcse-pathway-footer-text {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #585757;
    max-width: 936px;
}

@media (max-width: 992px) {
    .gcse-pathway-chain {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .gcse-pathway-arrow {
        display: none;
    }

    .gcse-pathway-lead {
        align-self: center;
        text-align: center;
    }
}

/* GCSE What Our Programme Includes 10-Card Grid Section */
.gcse-includes-section {
    width: 100%;
    background: #F7FAF6;
    padding: 70px 0;
    position: relative;
}

.gcse-includes-container {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gcse-includes-header {
    text-align: center;
    margin-bottom: 50px;
}

.gcse-includes-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 53px;
    color: #1A3C24;
    margin: 0;
    position: relative;
    display: inline-block;
}

.gcse-includes-title::after {
    content: '';
    display: block;
    width: 76px;
    height: 3px;
    background: #946E43;
    margin: 8px auto 0 auto;
}

.gcse-includes-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.gcse-include-card {
    background: #FFFFFF;
    border: 1px solid #D5C2C2;
    border-radius: 17px;
    padding: 24px 20px;
    min-height: 169px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gcse-include-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(11, 93, 54, 0.1);
    border-color: #0B5D36;
}

.gcse-card-num {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #0B5D36;
    margin-bottom: 8px;
}

.gcse-card-heading {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #585757;
    margin-bottom: 8px;
}

.gcse-card-body {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #585757;
}

@media (max-width: 1400px) {
    .gcse-includes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gcse-includes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gcse-includes-title {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 576px) {
    .gcse-includes-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .gcse-include-card {
        padding: 20px 16px;
    }
}

/* Course Card: Frame 30 */
.igcse-course-card {
    background: rgba(246, 254, 241, 0.43);
    border: 1px solid #B4B4B4;
    box-shadow: 0px 0px 4.5px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.igcse-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

/* Badge Pill: Frame 2180 */
.igcse-card-badge-wrap {
    margin-bottom: 24px;
    text-align: center;
}

.igcse-card-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #E9F0E3;
    border-radius: 9px;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #0B5D36;
}

/* Icon Box & Title: Group 41 */
.igcse-card-header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.igcse-icon-box {
    width: 61px;
    height: 61px;
    background: linear-gradient(180deg, #FFFFFF 10.62%, #A2DEC1 78.92%);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.igcse-course-svg {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.igcse-card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #1E3E21;
}

/* Description */
.igcse-card-desc {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    color: #45713D;
    margin-bottom: 12px;
    min-height: 104px;
}

/* Checklist */
.igcse-card-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.igcse-card-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 26px;
    color: #3f8335;
}

.igcse-card-tick {
    width: 18px;
    height: 18px;
    background: #0B5D36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Ideal For */
.igcse-card-ideal-wrap {
    margin-bottom: 24px;
}

.igcse-ideal-title {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #0B5D36;
    display: block;
    margin-bottom: 6px;
}

.igcse-ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.igcse-ideal-list li {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #3f8335;
    display: flex;
    align-items: center;
    gap: 8px;
}

.igcse-ideal-dot {
    width: 5px;
    height: 5px;
    background: #03843F;
    border-radius: 50%;
    display: inline-block;
}

/* Card Button: Frame 5 / Frame 2181 */
.btn-igcse-card-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 234px;
    height: 48px;
    background: #0B5D36;
    border-radius: 8px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-igcse-card-demo:hover {
    background: #084829;
    transform: translateY(-2px);
}

.btn-igcse-card-demo svg {
    transition: transform 0.2s ease;
}

.btn-igcse-card-demo:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles for Courses Grid */
@media (max-width: 1200px) {
    .igcse-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .igcse-courses-grid {
        grid-template-columns: 1fr;
    }

    .igcse-course-card {
        padding: 24px 20px;
    }

    .igcse-card-desc {
        min-height: auto;
    }

    .igcse-approach-banner .approach-title {
        font-size: 23px !important;

    }
}

/* ==========================================================================
   EXPLORE ALL IGCSE SUBJECTS SECTION (Frame 2296 / Frame 2152)
   ========================================================================== */

.igcse-subjects-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 80px 0;
    background-color: rgba(198, 249, 225, 0.20);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.igcse-subjects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/mid-section.png');
    background-repeat: repeat;
    background-size: 361px 361px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: continuousFrameScroll 40s linear infinite;
}

@keyframes continuousFrameScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 361px 361px;
    }
}

.igcse-subjects-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Header */
.igcse-subjects-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.igcse-subjects-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.igcse-subjects-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 48px;
    color: #1A3C24;
    margin: 0;
}

/* 4-Column Grid: Frame 2152 */
.igcse-subjects-grid {
    width: 100%;
    max-width: 1540px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.igcse-subjects-grid.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    gap: 40px;
    margin: 0 auto;
}

/* Subject Card: Frame 30 */
.igcse-subject-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #B4B4B4;
    box-shadow: 0px 0px 4.5px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.igcse-subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}

/* Card Header (Icon Box & Title) */
.subject-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
    width: 100%;
}

.igcse-subject-card .subject-icon-box {
    width: 61px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    flex-shrink: 0;
}

.igcse-subject-card .subject-icon-box.box-pink {
    background: linear-gradient(180deg, #FFFFFF 7.43%, #F6E0DC 49.63%);
}

.igcse-subject-card .subject-icon-box.box-cyan {
    background: linear-gradient(180deg, #F3FAFF 8.77%, rgba(145, 207, 252, 0.21) 49.63%);
}

.igcse-subject-card .subject-icon-box.box-purple {
    background: linear-gradient(180deg, #FFFFFF 7.43%, rgba(162, 136, 253, 0.21) 49.63%);
}

.igcse-subject-card .subject-icon-box.box-orange {
    background: linear-gradient(180deg, #FFFFFF 7.43%, rgba(253, 184, 136, 0.21) 49.63%);
}

.subject-header-icon {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.subject-card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #1E3E21;
    margin: 0;
}

/* Subject List */
.subject-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subject-item-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subject-item-icon {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    object-fit: contain;
}

.subject-item-list li span {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #3f8335;
}

/* Responsive Grid for Subjects */
@media (max-width: 1440px) {

    .igcse-courses-title,
    .igcse-subjects-title {
        font-size: 26px;
        line-height: 42px;
    }

    .igcse-courses-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .igcse-card-title,
    .subject-card-title {
        font-size: 16px;
        line-height: 28px;
    }

    .igcse-card-desc,
    .igcse-card-checklist li,
    .subject-item-list li span {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 1200px) {
    .igcse-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .igcse-subjects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .igcse-courses-section,
    .igcse-subjects-section {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {

    .igcse-subjects-container,
    .igcse-courses-container {
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .igcse-subjects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .igcse-subject-card {
        padding: 24px 16px !important;
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .subject-item-list {
        width: 100% !important;
        align-items: flex-start !important;
    }

    .igcse-courses-title,
    .igcse-subjects-title {
        font-size: 22px;
        line-height: 36px;
    }

    .igcse-courses-subtitle {
        font-size: 14px;
        line-height: 28px;
    }

    .igcse-card-title,
    .subject-card-title {
        font-size: 16px;
        line-height: 26px;
    }

    .igcse-card-badge {
        font-size: 10px;
        line-height: 24px;
    }

    .igcse-ideal-title {
        font-size: 14px;
    }

    .igcse-ideal-list li,
    .subject-item-list li span {
        font-size: 12px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {

    .igcse-courses-grid,
    .igcse-subjects-grid {
        grid-template-columns: 1fr;
    }

    .igcse-course-card,
    .igcse-subject-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .igcse-card-desc {
        min-height: auto;
    }

    .igcse-courses-header,
    .igcse-subjects-header {
        margin-bottom: 36px;
    }

    .btn-igcse-card-demo {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .igcse-subjects-container,
    .igcse-courses-container {
        padding: 0 16px !important;
    }

    .igcse-subjects-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .igcse-subject-card {
        padding: 20px 16px !important;
    }

    .igcse-courses-title,
    .igcse-subjects-title {
        font-size: 20px;
        line-height: 32px;
    }

    .igcse-courses-subtitle {
        font-size: 12px;
        line-height: 24px;
    }

    .subject-card-title,
    .igcse-card-title {
        font-size: 15px;
        line-height: 24px;
    }

    .igcse-card-checklist li,
    .subject-item-list li span {
        font-size: 11.5px;
        line-height: 20px;
    }
}

/* ==========================================================================
   OUR SPECIAL APPROACH / SMALL GROUP LEARNING SECTION (Frame 2294 / Frame 2121)
   ========================================================================== */

.igcse-approach-section {
    width: 100%;
    padding: 80px 0 40px 0;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
}

.igcse-approach-container {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tabs Navigation: Frame 2325 */
.igcse-approach-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    padding-bottom: 4px;
    margin: 0 auto 40px auto;
    width: max-content;
    max-width: 100%;
}

.approach-tab {
    position: relative;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.2;
    color: #1E3E21;
    cursor: pointer;
    transition: color 0.25s ease;
    user-select: none;
    padding-bottom: 4px;
}

.approach-tab.active {
    font-weight: 600;
    color: #0B5D36;
}

.approach-tab.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0B5D36;
    border-radius: 2px;
    z-index: 5;
}

.approach-tabs-line {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 0px;
    border-bottom: 2px solid #B8ADAD;
    z-index: 1;
}

.approach-tab-active-bar {
    display: none !important;
}

/* Approach Panels Toggle */
.approach-panel {
    display: none !important;
}

.approach-panel.active {
    display: flex !important;
}

/* Green Banner Card: Frame 2121 */
.igcse-approach-banner {
    width: 100%;
    max-width: 1440px;
    min-height: 407px;
    background: #1F6834;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 28px 42px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    overflow: hidden;
    animation: fadeInApproach 0.4s ease forwards;
}

@keyframes fadeInApproach {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Arrow / Rocket Doodle: perosonlised-learning-arrow.svg */
.igcse-approach-banner::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 20px;
    width: 260px;
    height: 210px;
    background-image: url('img/perosonlised-learning-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

/* Left Image Box: image 19 */
.approach-img-wrap {
    width: 482px;
    height: 351px;
    flex-shrink: 0;
    border-radius: 22px;
    overflow: hidden;
    z-index: 2;
}

.approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Content */
.approach-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    z-index: 2;
}

.igcse-approach-banner .approach-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 0.04em;
    color: #DFFFE7;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center;
}

.igcse-approach-banner .approach-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 34px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 28px;
    text-align: center;
}

.igcse-approach-banner .approach-title em {
    font-style: italic;
    font-weight: 400;
}

/* 4 Features Row */
.approach-features-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.approach-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 135px;
    flex-shrink: 0;
}

.approach-icon-circle {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFF3F3 0%, #CACECC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.approach-feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.approach-feature-icon.icon-full {
    width: 47px;
    height: 47px;
}

.approach-feature-text {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    word-break: break-word;
}

/* Right Action Button: Frame 5 */
.approach-action-wrap {
    z-index: 2;
    flex-shrink: 0;
}

.btn-schedule-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 234px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 8px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #0B5D36;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-schedule-demo:hover {
    background: #F0FAF3;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-schedule-demo svg {
    transition: transform 0.2s ease;
}

.btn-schedule-demo:hover svg {
    transform: translateX(4px);
}

/* Responsive Rules for Approach Section */
@media (max-width: 1440px) {
    .approach-tab {
        font-size: 24px;
        line-height: 42px;
    }

    .igcse-approach-tabs {
        gap: 60px;
        margin-bottom: 40px;
    }

    .igcse-approach-banner {
        padding: 28px 32px;
        gap: 20px;
        border-radius: 36px;
    }

    .approach-subtitle,
    .igcse-approach-banner .approach-subtitle {
        font-size: 13px;
        line-height: 24px;
    }

    .approach-title,
    .igcse-approach-banner .approach-title {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .approach-img-wrap {
        width: 380px;
        height: 275px;
        flex-shrink: 0;
        border-radius: 20px;
    }

    .approach-features-row {
        gap: 12px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .approach-feature-item {
        width: 120px;
        flex: initial;
        max-width: 130px;
    }

    .approach-icon-circle {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    .approach-feature-text {
        font-size: 11.5px;
        line-height: 17px;
    }

    .btn-schedule-demo {
        width: 200px;
        height: 48px;
        font-size: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 1200px) {
    .approach-tab {
        font-size: 22px;
        line-height: 36px;
    }

    .igcse-approach-tabs {
        gap: 40px;
        margin-bottom: 36px;
    }

    .igcse-approach-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 32px;
        border-radius: 36px;
        gap: 28px;
    }

    .approach-subtitle,
    .igcse-approach-banner .approach-subtitle {
        font-size: 13px;
        line-height: 24px;
    }

    .approach-title,
    .igcse-approach-banner .approach-title {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 22px;
    }

    .approach-img-wrap {
        width: 100%;
        max-width: 520px;
        height: 280px;
        border-radius: 22px;
    }

    .approach-features-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 20px 24px;
        width: 100%;
    }

    .why-choose-features-row {
        justify-content: space-evenly;
    }

    .approach-feature-item {
        width: 140px;
        flex: initial;
        max-width: 150px;
    }

    .approach-icon-circle {
        width: 58px;
        height: 58px;
        margin-bottom: 10px;
    }

    .approach-feature-icon {
        width: 28px;
        height: 28px;
    }

    .approach-feature-icon.icon-full {
        width: 58px;
        height: 58px;
    }

    .approach-feature-text {
        font-size: 12.5px;
        line-height: 18px;
        color: #FFFFFF;
    }

    .approach-action-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }

    .btn-schedule-demo {
        width: 220px;
        height: 50px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {

    .igcse-approach-section,
    .approach-section {
        padding: 40px 0 20px 0 !important;
    }

    .igcse-why-choose-section,
    .why-choose-section {
        padding: 20px 0 40px 0 !important;
    }

    .igcse-approach-container,
    .igcse-why-choose-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .approach-tab {
        font-size: 18px;
        line-height: 32px;
    }

    .igcse-approach-tabs {
        gap: 30px;
        width: 100%;
        justify-content: center;
    }

    .igcse-approach-banner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .approach-title {
        font-size: 20px;
        line-height: 32px;
    }

    .approach-subtitle {
        font-size: 11px;
    }

    .approach-img-wrap {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 300px !important;
    }

    .approach-features-row {
        width: 100% !important;
        justify-content: space-around !important;
        gap: 16px 12px !important;
    }
}

@media (max-width: 768px) {

    .igcse-approach-section,
    .approach-section {
        padding: 30px 0 16px 0 !important;
    }

    .igcse-why-choose-section,
    .why-choose-section {
        padding: 16px 0 32px 0 !important;
    }

    .igcse-approach-container,
    .igcse-why-choose-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .igcse-approach-tabs {
        gap: 24px;
        margin-bottom: 30px;
    }

    .approach-tab {
        font-size: 16px;
        line-height: 30px;
    }

    .igcse-approach-banner {
        padding: 24px 16px !important;
        border-radius: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .approach-subtitle {
        font-size: 10px;
        line-height: 20px;
    }

    .approach-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    .approach-title em,
    .igcse-approach-banner .approach-title em {
        display: block !important;
        margin-top: 2px !important;
    }

    .approach-img-wrap {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
    }

    .approach-features-row {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 12px 6px !important;
    }

    .approach-feature-item {
        flex: 1 1 20% !important;
        min-width: 65px !important;
        max-width: 110px !important;
    }

    .approach-icon-circle {
        width: 40px;
        height: 40px;
    }

    .approach-feature-icon {
        width: 20px;
        height: 20px;
    }

    .approach-feature-icon.icon-full {
        width: 40px;
        height: 40px;
    }

    .approach-feature-text {
        font-size: 10px;
        line-height: 15px;
    }

    .btn-schedule-demo {
        width: 100%;
        max-width: 260px;
        height: 48px;
        font-size: 11.5px;
    }

    .why-choose-left {
        width: 100% !important;
    }

    .why-choose-features-row {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        gap: 14px 6px !important;
    }

    .why-feature-item {
        flex: 1 1 18% !important;
        min-width: 65px !important;
        max-width: 120px !important;
    }

    .why-choose-stats-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {

    .igcse-approach-section,
    .approach-section {
        padding: 24px 0 10px 0 !important;
    }

    .igcse-why-choose-section,
    .why-choose-section {
        padding: 24px 0 24px 0 !important;
    }

    .igcse-approach-tabs {
        gap: 16px;
    }

    .approach-tab {
        font-size: 13px;
        line-height: 24px;
    }

    .approach-subtitle {
        font-size: 9px;
    }

    .approach-title {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .btn-schedule-demo {
        width: auto !important;
        max-width: 240px !important;
        height: 44px !important;
        font-size: 10.5px !important;
        line-height: 16px !important;
        padding: 0 16px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .approach-features-row {
        width: 100% !important;
        justify-content: space-around !important;
        gap: 12px 8px !important;
    }

    .approach-feature-item {
        flex: 1 1 42% !important;
        width: 45% !important;
    }

    .approach-feature-text {
        font-size: 10px;
        line-height: 15px;
    }
}

/* ==========================================================================
   WHY CHOOSE RADICLE STUDY SECTION
   ========================================================================== */
.igcse-why-choose-section {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.igcse-why-choose-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content Area */
.why-choose-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-width: 0;
}

.why-choose-header-wrap {
    position: relative;
    display: inline-block;
}

.why-choose-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 42px;
    color: #1A3C24;
    margin: 0;
}

.why-choose-title .highlight-green {
    color: #0B5D36;
}

/* Black Underline Line 1 under 'Choose' */
.why-choose-title-underline {
    position: relative;
    display: inline-block;
}

.why-choose-title-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #946E43;
}

/* 5 Feature Badges Row */
.why-choose-features-row {
    display: flex;
    align-items: flex-start;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 135px;
    flex-shrink: 0;
}

.why-icon-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFF3F3 0%, #CACECC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.why-feature-icon,
.why-feature-icon.icon-full {
    width: 38px;
    height: 38px;
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
}

.why-feature-text {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    color: #3f8335;
}

/* Vertical Divider Line 8 */
.why-choose-vertical-divider {
    width: 1px;
    height: 246px;
    background: #3B3939;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Right Green Card: Frame 2155 */
.why-choose-stats-card {
    width: 581px;
    height: 262px;
    background: #1F6834;
    border-radius: 31px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Grid Cross Divider Lines (Line 8 & Line 9) */
.why-stats-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.why-stats-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(-50%);
}

.why-stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
}

.why-stat-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-stat-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.why-stat-info {
    display: flex;
    flex-direction: column;
}

.why-stat-number {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
}

.why-stat-number .plus {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 20px;
}

.why-stat-label {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #C0C0C0;
}

/* ==========================================================================
   RESPONSIVE SCALING FOR WHY CHOOSE SECTION
   ========================================================================== */
@media (max-width: 1350px) {
    .igcse-why-choose-container {
        gap: 24px;
        padding: 0 24px;
    }

    .why-choose-title {
        font-size: 26px;
        line-height: 38px;
    }

    .why-choose-features-row {
        gap: 10px;
    }

    .why-feature-item {
        width: 110px;
    }

    .why-icon-circle {
        width: 62px;
        height: 62px;
        margin-bottom: 10px;
    }

    .why-feature-icon,
    .why-feature-icon.icon-full {
        width: 30px;
        height: 30px;
        max-width: 30px;
        max-height: 30px;
        object-fit: contain;
    }

    .why-feature-text {
        font-size: 11.5px;
        line-height: 17px;
    }

    .why-choose-vertical-divider {
        height: 200px;
    }

    .why-choose-stats-card {
        width: 480px;
        height: 230px;
        padding: 20px 24px;
        border-radius: 24px;
    }

    .why-stat-number {
        font-size: 20px;
    }

    .why-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .igcse-why-choose-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
        padding: 0 24px;
    }

    .why-choose-left {
        align-items: center;
        width: 100%;
        gap: 32px;
    }

    .why-choose-title {
        font-size: 28px;
        line-height: 40px;
        text-align: center;
    }

    .why-choose-vertical-divider {
        display: none;
    }

    .why-choose-features-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 24px 28px;
        width: 100%;
    }

    .why-feature-item {
        width: 135px;
        flex-shrink: 0;
    }

    .why-icon-circle {
        width: 68px;
        height: 68px;
        margin-bottom: 12px;
    }

    .why-feature-icon,
    .why-feature-icon.icon-full {
        width: 34px;
        height: 34px;
        max-width: 34px;
        max-height: 34px;
        object-fit: contain;
    }

    .why-feature-text {
        font-size: 12.5px;
        line-height: 18px;
        color: #3f8335;
    }

    .why-choose-stats-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 24px 32px;
        border-radius: 28px;
    }

    .why-stat-number {
        font-size: 22px;
        line-height: 28px;
    }

    .why-stat-label {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Tablet & Mid Screen Size Fix (577px to 1024px) - Display all 4 stats boxes in 1 single horizontal row */
@media (min-width: 577px) and (max-width: 1024px) {
    .igcse-why-choose-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 32px !important;
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-choose-left {
        width: 100% !important;
        align-items: center !important;
        gap: 24px !important;
    }

    .why-choose-title {
        font-size: 24px !important;
        line-height: 34px !important;
        text-align: center !important;
    }

    .why-choose-vertical-divider {
        display: none !important;
    }

    .why-choose-features-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-evenly;
        align-items: flex-start !important;
        gap: 20px 24px !important;
        width: 100% !important;
    }

    .why-feature-item {
        width: 135px !important;
        max-width: 150px !important;
        flex-shrink: 0 !important;
    }

    .why-icon-circle {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 10px !important;
    }

    .why-feature-icon,
    .why-feature-icon.icon-full {
        width: 32px !important;
        height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        object-fit: contain !important;
    }

    .why-feature-text {
        font-size: 12.5px !important;
        line-height: 18px !important;
        text-align: center !important;
        color: #3f8335 !important;
    }

    .why-choose-stats-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 20px 16px !important;
        border-radius: 20px !important;
        flex-shrink: 0 !important;
    }

    .why-stats-grid {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

    .why-stats-grid::before,
    .why-stats-grid::after {
        display: none !important;
    }

    .why-stat-box {
        flex: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 4px 8px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-sizing: border-box !important;
    }

    .why-stat-box:last-child {
        border-right: none !important;
    }

    .why-stat-icon-circle {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }

    .why-stat-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .why-stat-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        white-space: normal !important;
    }

    .why-stat-number {
        font-size: 16px !important;
        line-height: 20px !important;
        font-weight: 600 !important;
    }

    .why-stat-label {
        font-size: 10px !important;
        line-height: 13px !important;
    }
}

@media (max-width: 768px) {
    .why-choose-title {
        font-size: 22px;
        line-height: 32px;
    }

    .why-choose-features-row {
        gap: 16px 14px;
    }

    .why-feature-item {
        width: 115px;
    }

    .why-icon-circle {
        width: 58px;
        height: 58px;
    }

    .why-feature-icon,
    .why-feature-icon.icon-full {
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
        object-fit: contain;
    }

    .why-feature-text {
        font-size: 11px;
        line-height: 18px;
    }
}

@media (max-width: 576px) {
    .why-choose-title {
        font-size: 18px;
        line-height: 28px;
    }

    .why-choose-stats-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 20px 16px !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
    }

    .why-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 14px 10px !important;
        width: 100% !important;
        height: auto !important;
    }

    .why-stats-grid::before,
    .why-stats-grid::after {
        display: none !important;
    }

    .why-stat-box {
        border-bottom: none !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .why-stat-number {
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .why-stat-label {
        font-size: 9.5px !important;
        line-height: 15px !important;
    }
}

/* ==========================================================================
   BOARD EXAM SUCCESS SECTION
   ========================================================================== */
.igcse-board-success-section {
    width: 100%;
    background: #F3F5EE;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.igcse-board-success-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* Left Content Area */
.board-success-left {
    width: 533px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.board-success-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 0.02em;
    color: #1E3E21;
    margin-bottom: 6px;
}

.board-success-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 56px;
    color: #0B5D36;
    margin-bottom: 32px;
}

.board-success-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0B5D36;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-text {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #221F1F;
}

/* Center Content: Circle & Graduate Image */
.board-success-center {
    position: relative;
    width: 533px;
    height: 533px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.graduate-circle-bg {
    position: absolute;
    width: 533px;
    height: 533px;
    background: #DEE9DB;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

.graduate-img {
    position: absolute;
    bottom: -10px;
    width: 518px;
    height: auto;
    max-height: 590px;
    object-fit: contain;
    z-index: 2;
}

/* Right Content Area: White Card (Frame 2165) */
.board-success-right {
    z-index: 2;
    flex-shrink: 0;
}

.board-stats-card {
    width: 410px;
    min-height: 350px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 27px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.board-stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.board-stat-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.board-stat-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.board-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
    flex: 1;
}

.board-stat-num {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #0B5D36;
    text-align: center;
    width: 100%;
}

.board-stat-desc {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1A3C24;
    text-align: center;
    width: 100%;
}

/* ==========================================================================
   RESPONSIVE SCALING FOR BOARD SUCCESS SECTION
   ========================================================================== */
@media (max-width: 1440px) {
    .board-success-left {
        width: 440px;
    }

    .board-success-subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    .board-success-title {
        font-size: 20px;
        line-height: 30px;
    }

    .checklist-text {
        font-size: 13px;
        line-height: 22px;
    }

    .board-success-center {
        width: 440px;
        height: 440px;
    }

    .graduate-circle-bg {
        width: 440px;
        height: 440px;
    }

    .graduate-img {
        width: 430px;
    }

    .board-stats-card {
        width: 330px;
        min-height: 250px;
        padding: 20px 16px;
    }

    .board-stat-num {
        font-size: 22px;
        line-height: 28px;
    }

    .board-stat-desc {
        font-size: 13px;
        line-height: 19px;
    }
}

@media (max-width: 1200px) {
    .igcse-board-success-section {
        padding: 44px 0;
    }

    .igcse-board-success-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 24px 20px;
        padding: 0 32px;
    }

    .board-success-left {
        flex: 1 1 50%;
        max-width: 560px;
        min-width: 300px;
        align-items: flex-start;
        text-align: left;
    }

    .board-success-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 4px;
    }

    .board-success-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .board-success-checklist {
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .checklist-text {
        font-size: 14px;
        line-height: 22px;
    }

    .checklist-icon-circle {
        width: 22px;
        height: 22px;
    }

    .checklist-icon-circle svg {
        width: 11px;
        height: 9px;
    }

    .board-success-center {
        width: 250px;
        height: 250px;
        flex-shrink: 0;
    }

    .graduate-circle-bg {
        width: 250px;
        height: 250px;
    }

    .graduate-img {
        width: 240px;
        max-height: 280px;
        bottom: -5px;
    }

    .board-success-right {
        width: 100%;
        flex-shrink: 0;
    }

    .board-stats-card {
        width: 100%;
        min-height: auto;
        padding: 18px 24px;
        border-radius: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
    }

    .board-stat-row {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-right: 1px solid #E5E7EB;
        padding: 0 12px;
    }

    .board-stat-row:last-child {
        border-right: none;
    }

    .board-stat-icon-wrap {
        width: 44px;
        height: 44px;
    }

    .board-stat-icon {
        width: 32px;
        height: 32px;
    }

    .board-stat-content {
        align-items: flex-start;
        text-align: left;
    }

    .board-stat-num {
        font-size: 20px;
        line-height: 26px;
        text-align: left;
    }

    .board-stat-desc {
        font-size: 12px;
        line-height: 16px;
        text-align: left;
    }
}

/* TABLET VIEWPORT FIX (768px - 991px): Compact Side-by-Side Layout (Content Left, Image Right) */
@media (min-width: 768px) and (max-width: 991px) {
    .igcse-board-success-section {
        padding: 36px 0 !important;
    }

    .igcse-board-success-container {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-areas:
            "left center"
            "right right" !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px 24px !important;
        padding: 0 24px !important;
    }

    .board-success-left {
        grid-area: left !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .board-success-subtitle {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-bottom: 2px !important;
        text-align: left !important;
    }

    .board-success-title {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 14px !important;
        text-align: left !important;
    }

    .board-success-checklist {
        align-items: flex-start !important;
        text-align: left !important;
        gap: 10px !important;
    }

    .checklist-item {
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 8px !important;
    }

    .checklist-text {
        font-size: 13px !important;
        line-height: 19px !important;
        text-align: left !important;
    }

    .board-success-center {
        grid-area: center !important;
        width: 250px !important;
        height: 250px !important;
        margin: 0 auto !important;
        align-self: center !important;
        flex-shrink: 0 !important;
    }

    .graduate-circle-bg {
        width: 250px !important;
        height: 250px !important;
    }

    .graduate-img {
        width: 240px !important;
        max-height: 270px !important;
        bottom: -5px !important;
    }

    .board-success-right {
        grid-area: right !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 12px !important;
    }

    .board-stats-card {
        width: 100% !important;
        max-width: 680px !important;
        min-height: auto !important;
        padding: 14px 20px !important;
        border-radius: 18px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-around !important;
        gap: 12px !important;
        margin: 0 auto !important;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    .board-stat-row {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        border-right: 1px solid #E5E7EB !important;
        padding: 0 8px !important;
    }

    .board-stat-row:last-child {
        border-right: none !important;
    }

    .board-stat-icon-wrap {
        width: 36px !important;
        height: 36px !important;
    }

    .board-stat-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .board-stat-num {
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .board-stat-desc {
        font-size: 10.5px !important;
        line-height: 14px !important;
    }
}

@media (max-width: 767px) {
    .igcse-board-success-section {
        padding: 32px 0;
    }

    .igcse-board-success-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
        padding: 0 16px;
        margin: 0 auto;
        width: 100%;
    }

    .board-success-left {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    .board-success-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin: 0 auto 4px auto;
        text-align: center;
    }

    .board-success-title {
        font-size: 20px;
        line-height: 28px;
        margin: 0 auto 16px auto;
        text-align: center;
    }

    .board-success-checklist {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .checklist-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 8px;
        width: 100%;
    }

    .checklist-text {
        font-size: 13px;
        line-height: 19px;
        text-align: left;
    }

    .checklist-icon-circle {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .checklist-icon-circle svg {
        width: 10px;
        height: 8px;
    }

    .board-success-center {
        width: 180px;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 6px auto;
        position: relative;
        flex-shrink: 0;
    }

    .graduate-circle-bg {
        width: 180px;
        height: 180px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .graduate-img {
        width: 175px;
        max-height: 200px;
        position: absolute;
        bottom: -5px;
    }

    .board-success-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .board-stats-card {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: center;
        padding: 14px 12px;
        border-radius: 16px;
        gap: 8px;
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    }

    .board-stat-row {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 4px;
        border-right: 1px solid #E5E7EB;
        border-bottom: none;
        padding: 0 4px;
    }

    .board-stat-row:last-child {
        border-right: none;
    }

    .board-stat-icon-wrap {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .board-stat-icon {
        width: 26px;
        height: 26px;
    }

    .board-stat-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .board-stat-num {
        font-size: 17px;
        line-height: 22px;
        text-align: center;
        width: 100%;
    }

    .board-stat-desc {
        font-size: 10.5px;
        line-height: 14px;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .board-success-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 12px;
        text-align: center;
    }

    .board-success-checklist {
        gap: 8px;
    }

    .checklist-text {
        font-size: 12px;
        line-height: 17px;
        text-align: left;
    }

    .board-success-center {
        width: 160px;
        height: 160px;
    }

    .graduate-circle-bg {
        width: 160px;
        height: 160px;
    }

    .graduate-img {
        width: 155px;
        max-height: 180px;
    }

    .board-stats-card {
        padding: 12px 8px;
        border-radius: 14px;
    }

    .board-stat-num {
        font-size: 15px;
        line-height: 20px;
        text-align: center;
    }

    .board-stat-desc {
        font-size: 9.5px;
        line-height: 13px;
        text-align: center;
    }
}

.igcse-hero-badge img {
    width: 20px;
}

/* ==========================================================================
   IGCSE SUCCESS JOURNEY CTA BANNER SECTION
   ========================================================================== */
.igcse-cta-banner-section {
    width: 100%;
    background: #FFFFFF;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.igcse-cta-banner-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

/* Card: Frame 2143 */
.igcse-cta-card {
    width: 100%;
    max-width: 1326px;
    min-height: 177px;
    background: #E9F1E2;
    border: 1px solid #0B5D36;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-sizing: border-box;
}

/* Left Image: 117189 1 */
.cta-img-wrap {
    width: 189px;
    height: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-books-img {
    width: 189px;
    height: 143px;
    object-fit: contain;
}

/* Middle Content: Frame 2157 */
.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cta-title {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #1D1D1D;
    margin: 0;
}

.cta-title .highlight-green {
    color: #0B5D36;
}

.cta-subtitle {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: #3f8335;
    margin: 0;
}

/* Right Action Button: Frame 5 */
.cta-action-wrap {
    flex-shrink: 0;
}

.btn-cta-demo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 14px 28px !important;
    width: auto !important;
    min-width: 200px !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 52px !important;
    background: #0B5D36;
    border-radius: 12px !important;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 15px !important;
    line-height: 22px !important;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    white-space: nowrap !important;
}

.btn-cta-demo:hover {
    background: #08492a;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(11, 93, 54, 0.3);
}

/* Contact Page Specific CTA Banner Override */
.contact-cta-card {
    background: #0B5D36 !important;
    border: none !important;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.contact-cta-card .cta-title {
    color: #FFFFFF !important;
    line-height: 32px !important;
}

.contact-cta-card .cta-title .highlight-green {
    color: #FFFFFF !important;
}

.contact-cta-card .cta-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
}

.contact-cta-card .btn-cta-demo {
    background: #FFFFFF !important;
    color: #1E3E21 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    width: auto !important;
    min-width: 190px !important;
    max-width: 100% !important;
    border-radius: 12px !important;
}

.contact-cta-card .btn-cta-demo:hover {
    background: #F4F7EE !important;
    color: #0B5D36 !important;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================================================
   RESPONSIVE RULES FOR CTA BANNER SECTION
   ========================================================================== */
@media (max-width: 1440px) {
    .igcse-cta-card {
        padding: 20px 36px;
        gap: 24px;
    }

    .cta-title {
        font-size: 20px;
        line-height: 26px;
    }

    .btn-cta-demo {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-height: 48px !important;
    }
}

@media (max-width: 1200px) {
    .igcse-cta-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px 20px !important;
        gap: 12px !important;
        min-height: auto !important;
    }

    .cta-img-wrap {
        width: 120px !important;
        height: 90px !important;
        margin: 0 auto !important;
    }

    .cta-books-img {
        width: 120px !important;
        height: 90px !important;
        object-fit: contain !important;
    }

    .cta-content {
        align-items: center !important;
        gap: 6px !important;
    }

    .btn-cta-demo {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 768px) {
    .igcse-cta-card {
        padding: 20px 16px !important;
        gap: 10px !important;
    }

    .cta-img-wrap {
        width: 100px !important;
        height: 75px !important;
        margin: 0 auto !important;
    }

    .cta-books-img {
        width: 100px !important;
        height: 75px !important;
    }

    .cta-content {
        gap: 4px !important;
        align-items: center !important;
    }

    .cta-title {
        font-size: 17px !important;
        line-height: 24px !important;
    }

    .cta-subtitle {
        font-size: 11px !important;
        line-height: 18px !important;
        margin-bottom: 6px !important;
    }

    .btn-cta-demo {
        padding: 10px 20px !important;
        font-size: 12.5px !important;
        line-height: 18px !important;
        min-height: 44px !important;
        width: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .igcse-cta-card {
        padding: 16px 14px !important;
        gap: 8px !important;
    }

    .cta-img-wrap {
        width: 80px !important;
        height: 60px !important;
        margin: 0 auto !important;
    }

    .cta-books-img {
        width: 80px !important;
        height: 60px !important;
    }

    .cta-title {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .cta-subtitle {
        font-size: 10.5px !important;
        line-height: 17px !important;
        margin-bottom: 4px !important;
    }

    .btn-cta-demo {
        padding: 9px 16px !important;
        font-size: 11.5px !important;
        line-height: 17px !important;
        min-height: 40px !important;
        width: auto !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   CBSE HERO STATS CARD STYLES
   ========================================================================== */
.cbse-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
}

.cbse-stat-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.cbse-stat-icon-img.cbse-logo-badge {
    width: 52px;
    height: 52px;
}

.cbse-stat-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cbse-stat-title-green {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #0B5D36;
    margin-bottom: 2px;
}

.cbse-stat-desc-gray {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #1A3C24;
    white-space: nowrap;
}

/* ==========================================================================
   CBSE LEARNING JOURNEY TIMELINE SECTION
   ========================================================================== */
.cbse-journey-section {
    width: 100%;
    background: #FFFFFF;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cbse-journey-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cbse-journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.cbse-journey-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 42px;
    color: #1A3C24;
    margin: 0;
    position: relative;
}

.cbse-title-underline {
    position: relative;
    display: inline-block;
}

.cbse-title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

/* Timeline Wrap */
.cbse-timeline-wrap {
    position: relative;
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Connector Line across step circles */
.cbse-timeline-line {
    position: absolute;
    top: 22.5px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: #4B534F;
    z-index: 1;
}

/* Step Item */
.cbse-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

.cbse-step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0B5D36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 24px;
    box-shadow: 0 0 0 6px #FFFFFF;
    flex-shrink: 0;
}

.cbse-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cbse-step-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #1E3E21;
    margin: 0;
}

.cbse-step-desc {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    color: #3f8335;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1440px) {
    .cbse-journey-title {
        font-size: 26px;
        line-height: 38px;
    }

    .cbse-step-item {
        width: 150px;
    }

    .cbse-step-title {
        font-size: 16px;
        line-height: 24px;
    }

    .cbse-step-desc {
        font-size: 12px;
        line-height: 19px;
    }
}

@media (max-width: 1200px) and (min-width: 577px) {
    .cbse-timeline-wrap {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 36px 20px !important;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cbse-timeline-line {
        display: none !important;
    }

    .cbse-step-item {
        width: 100% !important;
        max-width: 220px !important;
    }

    .cbse-step-circle {
        width: 42px !important;
        height: 42px !important;
        font-size: 13px !important;
        margin-bottom: 14px !important;
    }

    .cbse-step-title {
        font-size: 14.5px !important;
        line-height: 22px !important;
    }

    .cbse-step-desc {
        font-size: 11px !important;
        line-height: 18px !important;
    }
}

@media (max-width: 576px) {
    .cbse-journey-title {
        font-size: 22px;
        line-height: 34px;
    }

    .cbse-timeline-wrap {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 10px !important;
        width: 100% !important;
        justify-items: center !important;
    }

    .cbse-timeline-line {
        display: none !important;
    }

    .cbse-step-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 2px !important;
        box-sizing: border-box !important;
    }

    .cbse-step-circle {
        width: 36px !important;
        height: 36px !important;
        font-size: 11.5px !important;
        margin-bottom: 10px !important;
    }

    .cbse-step-title {
        font-size: 12.5px !important;
        line-height: 19px !important;
    }

    .cbse-step-desc {
        font-size: 9.5px !important;
        line-height: 15px !important;
    }
}

/* ==========================================================================
   ONLINE TUITION COURSES FOR LANGUAGE STUDENTS SECTION STYLES
   ========================================================================== */
.language-courses-section {
    padding: 80px 0;
    background-color: #F7FAF6;
    position: relative;
    overflow: hidden;
}

.language-courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hello-languages.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.language-courses-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.language-courses-header {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 40px auto;
}

.language-courses-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.3;
    color: #1A3C24;
    margin-bottom: 16px;
}

.language-courses-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.5;
    color: #1E3E21;
    margin: 0 auto;
}

/* 5 Language Tabs Row */
.language-tabs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.lang-tab-btn {
    background: rgba(142, 146, 144, 0.19);
    border: none;
    border-radius: 15px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.2vw, 18px);
    color: #45713D;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.lang-tab-btn:hover {
    background: rgba(11, 93, 54, 0.12);
    color: #0B5D36;
}

.lang-tab-btn.active {
    background: rgba(11, 93, 54, 0.22);
    color: #0B5D36;
}

/* Tab Panels */
.language-panels-wrap {
    position: relative;
    width: 100%;
}

.lang-panel {
    display: none;
    animation: fadeInLang 0.4s ease-in-out forwards;
}

.lang-panel.active {
    display: block;
}

@keyframes fadeInLang {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-panel-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.lang-panel-img-wrap {
    flex: 0 0 44%;
    max-width: 44%;
}

.lang-panel-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.lang-panel-content {
    flex: 1;
    min-width: 0;
}

.lang-badge-pill {
    display: inline-block;
    background: rgba(11, 93, 54, 0.21);
    border-radius: 10px;
    padding: 6px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(11px, 1vw, 13px);
    color: #1E3E21;
    margin-bottom: 14px;
}

.lang-panel-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.3;
    color: #1E3E21;
    margin-bottom: 12px;
}

.lang-subtitle-row {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.2vw, 16px);
    color: #1E3E21;
    margin-bottom: 16px;
}

.lang-panel-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.55;
    color: #45713D;
    margin-bottom: 24px;
}

/* Green Program Box */
.lang-program-box {
    background: rgba(152, 205, 180, 0.31);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 24px;
}

.lang-program-box-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.3vw, 18px);
    color: #3f8335;
    margin-bottom: 16px;
    display: block;
}

.lang-program-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lang-program-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.flag-icon {
    font-size: 22px;
    line-height: 1;
}

.program-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 1.3vw, 18px);
    color: #1E3E21;
}

.program-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.45;
    color: #45713D;
    padding-left: 34px;
}

/* Bullet List for Sanskrit */
.lang-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lang-bullet-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bullet-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #0B5D36;
}

.bullet-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.45;
    color: #45713D;
}

/* Green Dots List for Malayalam, Hindi, Dhivehi */
.lang-green-dots-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-green-dots-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(13px, 1.1vw, 15px);
    color: #45713D;
}

.green-dot {
    width: 8px;
    height: 8px;
    background: #0B5D36;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.lang-panel-footer-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.15vw, 16px);
    line-height: 1.55;
    color: #45713D;
}

/* Responsive adjustments for lower screen sizes */
@media (max-width: 1024px) {
    .lang-panel-inner {
        flex-direction: column;
        gap: 32px;
    }

    .lang-panel-img-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .lang-panel-img {
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .language-courses-section {
        padding: 50px 0;
    }

    .language-tabs-wrap {
        gap: 10px;
        margin-bottom: 32px;
    }

    .lang-tab-btn {
        padding: 10px 18px;
    }

    .lang-program-box {
        padding: 18px 20px;
    }
}

.igsce-card-sec {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.igsce-card-sec .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.language-stats-card {
    padding: 16px 28px !important;
    position: relative;
    z-index: 100 !important;
}

.igcse-stats-card {
    width: 100%;
    max-width: 1125px !important;
    margin: -50px auto 0 auto;
    position: relative !important;
    z-index: 100;
}

/* ==========================================================================
   CONTACT HERO BANNER SECTION (Contact Page)
   ========================================================================== */

.contact-hero-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #ECEFE8 0%, #ECEFE8 100%);
    border-radius: 0px 0px 0px 81px;
    padding: 40px 0 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-banner-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.contact-hero-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.contact-hero-content {
    max-width: 650px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.contact-hero-visual {
    position: relative;
    z-index: 1;
    flex: 1.1;
    max-width: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #E8F4E8;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-hero-badge span {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.04em;
    color: #0B5D36;
    text-transform: uppercase;
}

.contact-hero-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 50px;
    line-height: 64px;
    color: #1A3C24;
    margin: 0 0 20px 0;
}

.contact-hero-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #45713D;
    max-width: 520px;
    margin-bottom: 32px;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-contact-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: #0B5D36;
    border-radius: 8px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-contact-demo:hover {
    background: #084829;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-contact-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    background: transparent;
    border: 1px solid #0B5D36;
    border-radius: 8px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 12px;
    color: #0B5D36;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-contact-call:hover {
    background: rgba(11, 93, 54, 0.05);
    color: #0B5D36;
    transform: translateY(-2px);
}

/* Responsive Scaling for Contact Banner */
@media (max-width: 1440px) {
    .contact-hero-banner {
        padding: 50px 0 40px 0;
    }

    .contact-hero-title {
        font-size: 44px;
        line-height: 56px;
    }

    .contact-hero-desc {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 36px;
        line-height: 48px;
    }

    .igcse-stats-car {
        margin-top: -30px;
    }

    .contact-hero-content {
        max-width: 520px;
    }
}

@media (max-width: 992px) {
    .contact-hero-banner {
        padding: 30px 0 36px !important;
        min-height: auto !important;
    }

    .contact-hero-main-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 24px !important;
    }

    .contact-hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        height: auto !important;
        margin: 0 auto 16px auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        order: 1 !important;
        /* Mobile Image FIRST! */
    }

    .contact-hero-content {
        align-items: flex-start !important;
        text-align: left !important;
        order: 2 !important;
        /* Mobile Content SECOND! */
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-hero-title {
        font-size: 26px !important;
        line-height: 38px !important;
        text-align: left !important;
    }

    .contact-hero-desc {
        text-align: left !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-hero-actions {
        justify-content: flex-start !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 22px !important;
        line-height: 34px !important;
    }

    .contact-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .btn-contact-demo,
    .btn-contact-call {
        flex: 1 1 0% !important;
        width: 50% !important;
        max-width: 50% !important;
        font-size: 10px !important;
    }
}

/* ==========================================================================
   CONTACT INFO & FORM SECTION (Get In Touch & Send Us a Message)
   ========================================================================== */

.contact-info-section {
    width: 100%;
    padding: 80px 0;
    background-color: #FBFBF9;
}

.contact-info-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 36px;
    align-items: start;
}

/* Left Card: Get In Touch */
.contact-get-touch-card {
    background: #F3F6EC;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
}

.touch-card-header {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
}

.touch-card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1E3E21;
    margin: 0;
}

.touch-title-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.touch-items-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.touch-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.touch-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.touch-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F4F7EE;
    border: 1px solid #B7B7B7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.touch-icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.touch-item-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    margin: 0;
}

.touch-item-body {
    padding-left: 58px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.touch-brand-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #0B5D36;
}

.touch-item-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #45713D;
    margin: 0;
}

.touch-item-link {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #45713D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.touch-item-link:hover {
    color: #0B5D36;
}

.touch-item-subtext {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #45713D;
}

.touch-divider {
    width: 100%;
    height: 1px;
    background: #9E9797;
    opacity: 0.4;
    margin: 4px 0;
}

/* Right Card: Send Us a Message */
.contact-form-card {
    background: #F3F6EC;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
}

.form-card-header {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 32px;
}

.form-card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1E3E21;
    margin: 0;
}

.form-title-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.contact-form,
.contact-form-card .demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row-2col .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #45713D;
}

.contact-input {
    width: 100%;
    height: 62px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    padding: 0 20px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    color: #45713D;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder {
    color: #45713D !important;
    opacity: 1 !important;
    font-weight: 400;
}

.contact-input:focus {
    border-color: #0B5D36;
    box-shadow: 0 0 0 3px rgba(11, 93, 54, 0.15);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.contact-select {
    width: 100%;
    height: 62px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    padding: 0 50px 0 20px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    color: #45713D;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-select:invalid,
.contact-select option[value=""][disabled] {
    color: #45713D;
}

.contact-select:focus {
    border-color: #0B5D36;
    box-shadow: 0 0 0 3px rgba(11, 93, 54, 0.15);
}

.select-arrow-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.contact-textarea {
    width: 100%;
    min-height: 85px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 15px;
    color: #45713D;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-textarea::placeholder {
    color: #45713D !important;
    opacity: 1 !important;
    font-weight: 400;
}

.contact-textarea:focus {
    border-color: #0B5D36;
    box-shadow: 0 0 0 3px rgba(11, 93, 54, 0.15);
}

.btn-submit-contact {
    width: 100%;
    height: 48px;
    background: #0B5D36;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-submit-contact:hover {
    background: #084829;
    transform: translateY(-2px);
}

/* Responsive Media Queries for Contact Info & Form */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: 400px 1fr;
        gap: 28px;
    }

    .contact-get-touch-card {
        padding: 32px 28px;
    }

    .contact-form-card {
        padding: 32px 32px;
    }

    .touch-card-title,
    .form-card-title {
        font-size: 26px;
        line-height: 38px;
    }
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-get-touch-card,
    .contact-form-card {
        padding: 32px 24px;
    }

    .contact-input,
    .contact-select {
        height: 54px;
        font-size: 13px;
    }

    .contact-label,
    .touch-item-text,
    .touch-item-link {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 50px 0;
    }

    .contact-info-container {
        padding: 0 16px;
    }

    .form-row-2col {
        flex-direction: column;
        gap: 20px;
    }

    .touch-card-title,
    .form-card-title {
        font-size: 22px;
        line-height: 34px;
    }

    .touch-item-title {
        font-size: 18px;
    }

    .touch-item-body {
        padding-left: 0;
    }
}

/* ==========================================================================
   ABOUT HERO BANNER SECTION (About Us Page)
   ========================================================================== */

.about-hero-banner {
    position: relative;
    width: 100%;
    min-height: 659px;
    background-image: url('img/about-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0 60px 0;
}

.about-banner-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero-content {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 24px;
}

.about-hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
}

.about-hero-badge span {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    text-transform: uppercase;
}

.about-hero-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 52px;
    line-height: 64px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.about-hero-title .highlight-green {
    color: #0B5D36;
}

.about-hero-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 0;
}

/* Responsive Scaling for About Banner */
@media (max-width: 1440px) {
    .about-hero-banner {
        min-height: 580px;
        padding: 80px 0 50px 0;
    }

    .about-hero-title {
        font-size: 44px;
        line-height: 56px;
    }

    .about-hero-desc {
        font-size: 13px;
        line-height: 24px;
    }
}

@media (max-width: 1200px) {
    .about-hero-banner {
        min-height: 520px;
        padding: 60px 0 40px 0;
    }

    .about-hero-title {
        font-size: 36px;
        line-height: 48px;
    }

    .about-hero-content {
        max-width: 480px;
    }
}

@media (max-width: 992px) {
    .about-hero-banner {
        min-height: 460px;
        background-position: center right 20%;
    }

    .about-hero-title {
        font-size: 30px;
        line-height: 42px;
    }

    .about-hero-content {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        min-height: auto;
        padding: 50px 0 40px 0;
        background-position: center;
    }

    .about-banner-container {
        padding: 0 20px;
    }

    .about-hero-title {
        font-size: 26px;
        line-height: 38px;
    }

    .about-hero-desc {
        font-size: 12px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 22px;
        line-height: 34px;
    }
}

/* ==========================================================================
   ABOUT OUR STORY SECTION (Empowering Learners Worldwide)
   ========================================================================== */

.about-story-section {
    width: 100%;
    padding: 80px 0;
    background-color: #FBFBF9;
}

.about-story-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Image Wrap */
.story-img-wrap {
    width: 100%;
    height: 544px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Content Wrap */
.story-content-wrap {
    display: flex;
    flex-direction: column;
}

.story-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.story-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.story-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 44px;
    color: #1A3C24;
    margin: 0;
}

.story-title-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.story-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #45713D;
    margin: 0 0 10px 0;
}

/* Syllabus Grid */
.story-syllabus-wrap {
    margin-top: 16px;
}

.syllabus-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.syllabus-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.syllabus-pill {
    min-height: 48px;
    height: 48px;
    background: rgba(46, 139, 87, 0.76);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 12.5px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
    transition: background 0.25s ease, transform 0.2s ease;
}

.syllabus-pill:hover {
    background: #0B5D36;
    transform: translateY(-2px);
}

/* Responsive Media Queries for Our Story Section */
@media (min-width: 1500px) {
    .syllabus-pill {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}

@media (max-width: 1200px) {
    .about-story-grid {
        grid-template-columns: 500px 1fr;
        gap: 36px;
    }

    .story-img-wrap {
        height: 480px;
    }

    .story-title {
        font-size: 26px;
        line-height: 38px;
    }

    .story-text {
        font-size: 14px;
        line-height: 24px;
    }

    .syllabus-pill {
        font-size: 11.5px !important;
        padding: 8px 16px !important;
        min-height: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .story-img-wrap {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 50px 0;
    }

    .about-story-container {
        padding: 0 20px;
    }

    .story-img-wrap {
        height: 360px;
    }

    .story-title {
        font-size: 18px;
        line-height: 34px;
    }
}

@media (max-width: 576px) {
    .story-img-wrap {
        height: 280px;
    }

    .story-subtitle {
        font-size: 14px;
    }

    .syllabus-subtitle {
        font-size: 14px;
    }

    .syllabus-pill {
        font-size: 11px !important;
        padding: 8px 12px !important;
        min-height: 40px !important;
        height: auto !important;
        white-space: normal !important;
    }
}

/* ==========================================================================
   ABOUT WHY CHOOSE SECTION (Why Radicle Study Is The Better Choice)
   ========================================================================== */

.about-why-choose-section {
    width: 100%;
    padding: 40px 0;
    background-color: #FDFAF3;
}

.about-why-choose-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-choose-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 54px;
}

.why-choose-badge {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-choose-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.why-choose-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1A3C24;
    margin: 0;
}

.why-choose-title-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.why-choose-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    max-width: 580px;
    margin: 0;
}

.about-why-choose-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.why-choose-card {
    position: relative;
    background: #FBFAF0;
    border: 1px solid #C2C0C0;
    box-shadow: 0px 4px 4px 2px rgba(179, 179, 179, 0.25);
    border-radius: 24px;
    padding: 36px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 317px;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
}

.card-num-tag {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 42px;
    line-height: 53px;
    color: #E0E2C4;
    user-select: none;
}

.card-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #0B5D36;
    box-shadow: 0px 4px 4px rgba(42, 42, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.card-icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.why-choose-card .card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #1E3E21;
    margin: 0 0 12px 0;
}

.why-choose-card .card-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 13px;
    line-height: 26px;
    color: #45713D;
    margin: 0;
}

/* Responsive Media Queries for Why Choose Section */
@media (max-width: 1200px) and (min-width: 577px) {
    .about-why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .why-choose-card {
        padding: 24px 20px;
    }

    .why-choose-card .card-title {
        font-size: 17px;
        line-height: 24px;
    }

    .why-choose-card .card-text {
        font-size: 12.5px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .about-why-choose-section {
        padding: 28px 0 20px !important;
    }

    .about-why-choose-container {
        padding: 0 16px !important;
    }

    .why-choose-header {
        margin-bottom: 20px !important;
    }

    .about-why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .why-choose-title {
        font-size: 18px !important;
        line-height: 28px !important;
        margin-top: 0 !important;
    }

    .why-choose-desc {
        font-size: 11.5px !important;
        line-height: 19px !important;
    }

    .card-num-tag {
        font-size: 26px !important;
        top: 14px !important;
        right: 14px !important;
    }
}

/* ==========================================================================
   ABOUT TEAM SECTION (Meet The People Behind Radicle Study)
   ========================================================================== */

.about-team-section {
    width: 100%;
    padding: 100px 0;
    background-color: #F3FCF4;
}

.about-team-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 54px;
}

.team-badge {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.team-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.team-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1A3C24;
    margin: 0;
}

.team-title-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.team-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    max-width: 920px;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: #F6F4EE;
    border: 1px solid #E7E7E7;
    box-shadow: 0px 4px 4px 2px rgba(179, 179, 179, 0.25);
    border-radius: 24px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 195px;
    height: auto;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
}

.team-photo-wrap {
    width: 125px;
    height: 155px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.team-name {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #1E3E21;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: #0B5D36;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-degree {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #0B5D36;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-exp {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #45713D;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Interactive Card Expansion */
.team-card.expanded {
    height: auto !important;
    min-height: 195px;
}

.team-card.expanded .team-name,
.team-card.expanded .team-role {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.team-card.expanded .team-degree,
.team-card.expanded .team-exp {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
}

.read-more-btn {
    display: inline-block;
    color: #0B5D36;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    margin-top: 2px;
    user-select: none;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: #05371f;
    text-decoration: underline;
}

.team-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-social-btn {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(11, 93, 54, 0.12);
    box-shadow: 0px 4px 4px rgba(42, 42, 42, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.team-social-btn:hover {
    background: #0B5D36;
    transform: scale(1.08);
}

.team-social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.team-social-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive Media Queries for Team Section */

/* Large & Medium Tablets (769px to 1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .team-card {
        padding: 16px !important;
        gap: 14px !important;
        min-height: 195px !important;
        height: auto !important;
    }

    .team-photo-wrap {
        width: 115px !important;
        height: 150px !important;
        flex-shrink: 0 !important;
    }

    .team-name {
        font-size: 15px !important;
        line-height: 22px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .team-role {
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Small Tablets / 768px View (577px to 768px) */
@media (max-width: 768px) and (min-width: 577px) {
    .about-team-section {
        padding: 40px 0 !important;
    }

    .team-header {
        margin-bottom: 28px !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .team-card {
        flex-direction: row !important;
        align-items: center !important;
        padding: 14px 12px !important;
        gap: 12px !important;
        min-height: 195px !important;
        height: auto !important;
    }

    .team-photo-wrap {
        width: 100px !important;
        height: 140px !important;
        flex-shrink: 0 !important;
    }

    .team-info {
        min-width: 0 !important;
    }

    .team-name {
        font-size: 14px !important;
        line-height: 20px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .team-role {
        font-size: 11.5px !important;
        line-height: 16px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .team-degree {
        font-size: 11px !important;
        line-height: 16px !important;
        -webkit-line-clamp: 3 !important;
    }

    .team-exp {
        font-size: 11px !important;
        line-height: 15px !important;
        -webkit-line-clamp: 3 !important;
    }
}

/* Mobile Screens (Up to 576px) */
@media (max-width: 576px) {
    .about-team-section {
        padding: 24px 0 36px !important;
    }

    .about-team-container {
        padding: 0 16px !important;
    }

    .team-header {
        margin-bottom: 20px !important;
    }

    .team-title {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-top: 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .team-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 16px !important;
        height: auto !important;
        min-height: auto !important;
    }

    .team-photo-wrap {
        width: 100% !important;
        height: 220px !important;
        border-radius: 14px !important;
    }

    .team-info {
        width: 100% !important;
        margin-top: 12px !important;
    }

    .team-name {
        font-size: 16px !important;
        line-height: 22px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .team-role {
        font-size: 13px !important;
        line-height: 18px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .team-degree {
        font-size: 12px !important;
        line-height: 18px !important;
        -webkit-line-clamp: 4 !important;
    }

    .team-exp {
        font-size: 12px !important;
        line-height: 17px !important;
        -webkit-line-clamp: 5 !important;
    }
}

/* ==========================================================================
   ABOUT UNIQUE CLASSES SECTION (Designed Differently .Delivering Excellence)
   ========================================================================== */

.about-unique-section {
    width: 100%;
    padding: 90px 0;
    background-color: #F2F3E4;
}

.about-unique-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-unique-grid {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 56px;
    align-items: center;
}

.unique-content-wrap {
    display: flex;
    flex-direction: column;
}

.unique-subtitle {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #0B5D36;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.unique-title-wrap {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 32px;
}

.unique-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1A3C24;
    margin: 0;
}

.unique-title-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 3px;
    background: #946E43;
}

.unique-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unique-check-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #0B5D36;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    color: #45713D;
    margin: 0;
}

/* Right Image Wrap */
.unique-img-wrap {
    width: 100%;
    height: 384px;
    border-radius: 59px;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.unique-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Media Queries for Unique Classes Section */
@media (max-width: 1200px) {
    .about-unique-grid {
        grid-template-columns: 1fr 480px;
        gap: 36px;
    }

    .unique-img-wrap {
        height: 340px;
        border-radius: 40px;
    }

    .unique-title {
        font-size: 26px;
        line-height: 38px;
    }

    .check-item-text {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 992px) {
    .about-unique-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .unique-img-wrap {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .about-unique-section {
        padding: 60px 0;
    }

    .about-unique-container {
        padding: 0 20px;
    }

    .unique-title {
        font-size: 22px;
        line-height: 34px;
    }

    .unique-subtitle {
        font-size: 14px;
    }

    .check-item-text {
        font-size: 13px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .unique-img-wrap {
        height: 260px;
        border-radius: 28px;
    }

    .unique-title {
        font-size: 20px;
        line-height: 32px;
    }
}

/* ==========================================================================
   GALLERY HERO BANNER SECTION (Moments that Inspire Success)
   ========================================================================== */

.gallery-hero-banner {
    position: relative;
    width: 100%;
    min-height: 659px;
    background-image: url('img/gallery-photo-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #F4F8F3;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.gallery-banner-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-hero-content {
    max-width: 610px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #0B5D36;
    border-radius: 16px;
    margin-bottom: 24px;
}

.gallery-hero-badge span {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    color: #FFFFFF;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gallery-hero-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 62px;
    line-height: 76px;
    color: #1A3C24;
    margin: 0 0 20px 0;
}

.gallery-hero-title .highlight-green {
    color: #0B5D36;
}

.gallery-hero-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    max-width: 610px;
    margin: 0 0 36px 0;
}

.gallery-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-gallery-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: #0B5D36;
    border-radius: 8px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-gallery-demo:hover {
    background: #084829;
    transform: translateY(-2px);
}

.btn-gallery-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    background: transparent;
    border: 1px solid #0B5D36;
    border-radius: 8px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 14px;
    color: #0B5D36;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn-gallery-call:hover {
    background: rgba(11, 93, 54, 0.08);
    transform: translateY(-2px);
}

/* Responsive Media Queries for Gallery Hero Banner */
@media (max-width: 1440px) {
    .gallery-hero-banner {
        min-height: 580px;
        padding: 70px 0;
    }

    .gallery-hero-title {
        font-size: 50px;
        line-height: 64px;
    }
}

@media (max-width: 1200px) {
    .gallery-hero-banner {
        min-height: 520px;
        padding: 60px 0;
    }

    .gallery-hero-title {
        font-size: 40px;
        line-height: 52px;
    }

    .gallery-hero-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .gallery-hero-content {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .gallery-hero-banner {
        min-height: 460px;
        background-position: center right 15%;
        padding: 50px 0;
    }

    .gallery-hero-title {
        font-size: 32px;
        line-height: 44px;
    }

    .gallery-hero-content {
        max-width: 440px;
    }
}

@media (max-width: 768px) {
    .gallery-hero-banner {
        min-height: auto;
        padding: 50px 0;
        background-position: center;
    }

    .gallery-banner-container {
        padding: 0 20px;
    }

    .gallery-hero-title {
        font-size: 26px;
        line-height: 38px;
    }

    .gallery-hero-desc {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .gallery-hero-title {
        font-size: 22px;
        line-height: 34px;
    }

    .gallery-hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-gallery-demo,
    .btn-gallery-call {
        width: 100%;
    }
}

/* ==========================================================================
   GALLERY MEDIA TABBED SECTION (Photos & Videos)
   ========================================================================== */

.gallery-media-section {
    width: 100%;
    padding: 80px 0 100px 0;
    background-color: #FFFFFF;
}

.gallery-media-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Tab Switcher Bar */
.gallery-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.gallery-tab-switch {
    width: 397px;
    height: 64px;
    background: #FFFFFF;
    border: 1px solid #0B5D36;
    border-radius: 32px;
    padding: 0px;
    display: flex;
    align-items: center;
}

.gallery-tab-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 28px;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #1E3E21;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.gallery-tab-btn.active {
    background: #0B5D36;
    color: #FFFFFF;
}

/* Tab Panels */
.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

/* Photos Grid (3 Columns) */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
}

.photo-card {
    display: flex;
    flex-direction: column;
}

.photo-img-wrap {
    width: 100%;
    height: 319px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.photo-card:hover .photo-img {
    transform: scale(1.04);
}

.photo-caption {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #45713D;
    margin: 0;
}

/* Videos Grid (4 Columns) */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.video-card {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 483px;
    background: #0B5D36;
}

.video-thumbnail-wrap {
    position: relative;
    width: 100%;
    height: 404px;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.video-card:hover .video-thumb {
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, background 0.25s ease;
    padding-left: 5px;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #F4F8F3;
}

.video-card-footer {
    height: 79px;
    background: #0B5D36;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-caption {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Media Queries for Gallery Media Section */
@media (max-width: 1200px) and (min-width: 577px) {
    .photos-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 20px !important;
    }

    .videos-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 20px !important;
    }

    .photo-img-wrap {
        height: 240px !important;
    }

    .video-card {
        height: 380px !important;
    }

    .video-thumbnail-wrap {
        height: 310px !important;
    }
}

@media (max-width: 768px) {
    .gallery-media-section {
        padding: 50px 0 70px 0;
    }

    .gallery-media-container {
        padding: 0 20px;
    }

    .gallery-tab-switch {
        width: 100%;
        max-width: 340px;
        height: 54px;
    }

    .gallery-tab-btn {
        font-size: 16px;
    }

    .photo-caption {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {
    .photos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .videos-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .photo-img-wrap {
        height: 220px !important;
    }

    .video-card {
        height: 340px !important;
        border-radius: 24px !important;
    }

    .video-thumbnail-wrap {
        height: 275px !important;
    }

    .video-play-btn {
        width: 64px;
        height: 64px;
    }

    .video-caption {
        font-size: 13px;
        line-height: 22px;
    }
}

/* ==========================================================================
   APPLICATION FORM HERO BANNER SECTION (Take the First Step Towards Excellence)
   ========================================================================== */

.app-form-hero-banner {
    position: relative;
    width: 100%;
    min-height: 659px;
    background-image: url('img/application-form-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #0B5D36;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Banner Top-Left Logo */
.app-banner-logo {
    position: absolute;
    top: 36px;
    left: 40px;
    z-index: 10;
    display: inline-block;
}

.app-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.4));
}

.app-form-hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}

.app-form-hero-content {
    width: 100%;
    max-width: 634px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.app-form-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 46px;
    line-height: 58px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.app-form-title .highlight-green {
    color: #0B5D36;
}

.app-form-title-line {
    width: 76px;
    height: 3px;
    background: #FFFFFF;
    margin-bottom: 24px;
    display: block;
}

.app-form-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #DFE7F8;
    max-width: 615px;
    margin: 0;
}

/* Responsive Media Queries for Application Form Hero Banner */
@media (max-width: 1440px) {
    .app-form-hero-banner {
        min-height: 580px;
        padding: 70px 0;
    }

    .app-form-title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media (max-width: 1200px) {
    .app-form-hero-banner {
        min-height: 500px;
        padding: 60px 0;
    }

    .app-form-title {
        font-size: 34px;
        line-height: 46px;
    }

    .app-form-hero-content {
        max-width: 540px;
    }
}

@media (max-width: 992px) {
    .app-form-hero-banner {
        min-height: auto !important;
        background-position: center !important;
        padding: 36px 0 40px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .app-banner-logo {
        position: static !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        text-align: center !important;
    }

    .app-logo-img {
        height: 75px !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    .app-form-hero-container {
        justify-content: center !important;
        width: 100% !important;
    }

    .app-form-hero-content {
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
    }

    .app-form-title-line {
        margin: 0 auto 20px auto !important;
    }
}

@media (max-width: 768px) {
    .app-form-hero-container {
        padding: 0 20px;
    }

    .app-form-title {
        font-size: 28px;
        line-height: 40px;
    }

    .app-form-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .app-form-title {
        font-size: 22px;
        line-height: 34px;
    }
}

/* ==========================================================================
   OUR LEARNING PHILOSOPHY SECTION (Frame 2369)
   ========================================================================== */

.learning-philosophy-section {
    width: 100%;
    padding: 60px 0;
    background-color: #FFFFFF;
}

.learning-philosophy-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-card {
    width: 100%;
    background: linear-gradient(90deg, rgba(81, 151, 118, 0.31) 0%, rgba(64, 189, 130, 0.36) 100%);
    border: 1px solid #7FA893;
    border-radius: 21px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

.philosophy-header {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.philosophy-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #CCDDD1;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.philosophy-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
    color: #0B5D36;
    margin: 0;
    white-space: nowrap;
}

.philosophy-divider {
    width: 1px;
    height: 90px;
    background: #636161;
    opacity: 0.6;
    flex-shrink: 0;
}

.philosophy-quote-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.quote-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    margin-top: 2px;
}

.philosophy-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #45713D;
    margin: 0;
}

.highlight-bold-green {
    font-weight: 700;
    color: #0B5D36;
}

/* Responsive Media Queries for Our Learning Philosophy Section */
@media (max-width: 1200px) {
    .philosophy-card {
        padding: 30px 36px;
        gap: 32px;
    }

    .philosophy-title {
        font-size: 24px;
        line-height: 36px;
    }

    .philosophy-text {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 992px) {
    .philosophy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 28px;
    }

    .philosophy-divider {
        width: 100%;
        height: 1px;
    }

    .philosophy-title br {
        display: none;
    }
}

@media (max-width: 768px) {
    .learning-philosophy-container {
        padding: 0 20px;
    }

    .philosophy-header {
        gap: 16px;
    }

    .philosophy-icon-circle {
        width: 70px;
        height: 70px;
    }

    .philosophy-icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .philosophy-title {
        font-size: 20px;
        line-height: 30px;
        white-space: normal;
    }

    .philosophy-text {
        font-size: 13px;
        line-height: 22px;
    }

    .quote-icon {
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   APPLICATION FORM CONTAINER SECTION (Frame 2297)
   ========================================================================== */

.app-form-section {
    width: 100%;
    padding: 60px 0 100px 0;
    background-color: #FFFFFF;
}

.app-form-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.app-form-card {
    width: 100%;
    background: #F3F6EC;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23px;
    padding: 48px 56px 64px 56px;
    box-sizing: border-box;
}

.app-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.app-form-card-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #1E3E21;
    margin: 0 0 10px 0;
}

.app-form-header .app-form-title-line {
    width: 76px;
    height: 3px;
    background: #946E43;
    display: block;
}

.form-group-block {
    margin-bottom: 40px;
}

.form-group-bar {
    width: 100%;
    height: 60px;
    background: #62C093;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 35px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.form-group-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 35px;
    color: #FFFFFF;
    margin: 0;
}

.form-row {
    display: grid;
    gap: 24px;
    margin-bottom: 20px;
}

.form-row-1 {
    grid-template-columns: 1fr;
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-row-dob-age-gender {
    grid-template-columns: 2fr 1fr 1fr;
}

.input-wrap {
    position: relative;
    width: 100%;
}

.app-input,
.app-select {
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #D0D5DD;
    padding: 0 20px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: #45713D;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.app-input::placeholder {
    color: #45713D !important;
    opacity: 1 !important;
    font-weight: 400;
}

.app-input:focus,
.app-select:focus {
    border-color: #0B5D36;
    box-shadow: 0px 0px 8px rgba(11, 93, 54, 0.2);
}

.select-wrap {
    position: relative;
}

.app-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.app-select option,
select.app-select option {
    font-size: 13px !important;
    font-weight: 400 !important;
    padding: 12px 16px !important;
    color: #1D2939 !important;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #EAECF0 !important;
    line-height: 22px !important;
}

.app-select option:last-child,
select.app-select option:last-child {
    border-bottom: none !important;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-app-submit {
    height: 60px;
    padding: 0 48px;
    background: #0B5D36;
    border-radius: 10px;
    border: none;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-app-submit:hover {
    background: #084829;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(11, 93, 54, 0.3);
}

/* Responsive Media Queries for Application Form */
@media (max-width: 1200px) {
    .app-form-card {
        padding: 40px 36px 48px 36px;
    }

    .app-input,
    .app-select {
        height: 60px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {

    .form-row-2,
    .form-row-dob-age-gender {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group-bar {
        height: 52px;
        padding: 0 24px;
    }

    .form-group-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .app-form-container {
        padding: 0 20px;
    }

    .app-form-card {
        padding: 32px 20px 40px 20px;
        border-radius: 16px;
    }

    .app-form-card-title {
        font-size: 24px;
        line-height: 36px;
    }

    .btn-app-submit {
        width: 100%;
        font-size: 16px;
    }
}

/* ==========================================================================
   APPLICATION GREEN FORM CARD (Frame 2370)
   ========================================================================== */

.app-green-form-card {
    width: 100%;
    background: linear-gradient(180deg, #0B5D36 0%, #17C371 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 23px;
    padding: 56px 64px 64px 64px;
    margin-top: 48px;
    box-sizing: border-box;
}

.green-form-section {
    margin-bottom: 40px;
}

.green-section-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.green-subgroup-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 35px;
    color: #F5F5F5;
    margin: 0 0 16px 0;
}

.technical-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.technical-bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: #D2D1D1;
}

.star-bullet {
    font-size: 24px;
    line-height: 28px;
    color: #D2D1D1;
    flex-shrink: 0;
}

.learning-italic-hint {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 10px 0 0 0;
}

/* Custom Terms Checkbox */
.terms-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-box {
    width: 28px;
    height: 26px;
    background-color: #FFFFFF;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.terms-checkbox-wrap:hover .custom-checkbox-box {
    background-color: #F4F8F3;
}

.terms-checkbox-input:checked~.custom-checkbox-box {
    background-color: #FFFFFF;
}

.terms-checkbox-input:checked~.custom-checkbox-box::after {
    content: "";
    width: 8px;
    height: 14px;
    border: solid #0B5D36;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.terms-checkbox-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

/* Submit Button for Green Form Card */
.btn-green-card-submit {
    width: 100%;
    height: 60px;
    background: #0B5D36;
    border-radius: 8px;
    border: none;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-green-card-submit:hover {
    background: #074024;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Media Queries for Green Form Card */
@media (max-width: 1200px) {
    .app-green-form-card {
        padding: 44px 40px;
    }

    .green-section-title {
        font-size: 24px;
        line-height: 36px;
    }

    .technical-bullets-list li {
        font-size: 16px;
        line-height: 26px;
    }

    .terms-checkbox-text {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .app-green-form-card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .green-section-title {
        font-size: 20px;
        line-height: 30px;
    }

    .green-subgroup-title {
        font-size: 16px;
    }

    .technical-bullets-list li {
        font-size: 13px;
        line-height: 22px;
    }

    .learning-italic-hint {
        font-size: 12px;
        line-height: 20px;
    }

    .terms-checkbox-text {
        font-size: 13px;
        line-height: 22px;
    }
}

/* ==========================================================================
   APPLICATION FORM FOOTER BANNER
   ========================================================================== */

.app-footer-banner {
    width: 100%;
    min-height: 222px;
    background-color: #0B5D36;
    background-image: linear-gradient(0deg, rgba(11, 93, 54, 0.88), rgba(11, 93, 54, 0.88)), url('img/footer.png');
    background-repeat: repeat;
    background-size: 361px 361px;
    animation: continuousFooterScroll 50s linear infinite;
    display: flex;
    align-items: center;
    padding: 32px 0;
    box-sizing: border-box;
}

.app-footer-container {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.app-footer-logo-wrap {
    flex-shrink: 0;
}

.app-footer-logo {
    width: 360px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    display: block;
}

.app-footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1180px;
}

.app-footer-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
}

.app-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

.app-footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    white-space: nowrap;
}

.app-footer-links li a,
.app-footer-links li a:visited,
.app-footer-links li a:hover,
.app-footer-links li a:active,
.app-footer-links a,
.app-footer-links a:visited,
.app-footer-links a:hover,
.app-footer-links a:active {
    color: #FFFFFF !important;
    text-decoration: none !important;
    text-decoration-color: #FFFFFF !important;
    transition: opacity 0.2s ease;
}

.app-footer-links li a:hover,
.app-footer-links a:hover {
    opacity: 0.85;
}

.dot-bullet {
    font-size: 16px;
    color: #FFFFFF;
}

/* Responsive Media Queries for Application Footer Banner */
@media (max-width: 1440px) {
    .app-footer-container {
        padding: 0 30px;
        gap: 32px;
    }

    .app-footer-logo {
        width: 300px;
    }

    .app-footer-text {
        font-size: 14px;
        line-height: 24px;
    }

    .app-footer-links {
        gap: 20px;
    }

    .app-footer-links li {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .app-footer-banner {
        padding: 40px 0;
    }

    .app-footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .app-footer-content {
        align-items: center;
    }

    .app-footer-links {
        justify-content: center;
        gap: 16px 24px;
    }
}

@media (max-width: 576px) {
    .app-footer-logo {
        width: 240px;
    }

    .app-footer-text {
        font-size: 12px;
        line-height: 20px;
    }

    .app-footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   PAYMENT HERO BANNER SECTION (Your Journey to Excellence Begins Here)
   ========================================================================== */

.payment-hero-banner {
    position: relative;
    width: 100%;
    min-height: 659px;
    background-image: url('img/payment-banner.png');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    background-color: #0B5D36;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.payment-hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
}

.payment-hero-content {
    width: 100%;
    max-width: 634px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.payment-hero-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 46px;
    line-height: 58px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.payment-hero-title .highlight-green {
    color: #0B5D36;
}

.payment-title-line {
    width: 76px;
    height: 3px;
    background: #FFFFFF;
    margin-bottom: 24px;
    display: block;
}

.payment-hero-desc {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #DFE7F8;
    max-width: 615px;
    margin: 0;
}

/* Responsive Media Queries for Payment Hero Banner */
@media (max-width: 1440px) {
    .payment-hero-banner {
        min-height: 580px;
        padding: 70px 0;
    }

    .payment-hero-title {
        font-size: 40px;
        line-height: 52px;
    }
}

@media (max-width: 1200px) {
    .payment-hero-banner {
        min-height: 500px;
        padding: 60px 0;
    }

    .payment-hero-title {
        font-size: 34px;
        line-height: 46px;
    }

    .payment-hero-content {
        max-width: 540px;
    }
}

@media (max-width: 992px) {
    .payment-hero-banner {
        min-height: 440px;
        background-position: center;
        padding: 50px 0;
    }

    .payment-hero-container {
        justify-content: center;
    }

    .payment-hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .payment-hero-container {
        padding: 0 20px;
    }

    .payment-hero-title {
        font-size: 28px;
        line-height: 40px;
    }

    .payment-hero-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .payment-hero-title {
        font-size: 22px;
        line-height: 34px;
    }
}

/* ==========================================================================
   STUDENTS DETAILS SECTION (Frame 2297)
   ========================================================================== */

.student-details-section {
    width: 100%;
    padding: 60px 0;
    background-color: #FFFFFF;
}

.student-details-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.student-details-card {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 16.6px 4px rgba(11, 93, 54, 0.25);
    border-radius: 23px;
    padding: 48px 56px;
    box-sizing: border-box;
}

.student-details-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.student-details-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #CCDDD1;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.student-details-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.student-details-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    color: #0B5D36;
    margin: 0;
}

.student-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 48px;
}

.details-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.details-label {
    width: 210px;
    flex-shrink: 0;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 400;
    font-size: 19px;
    line-height: 26px;
    color: #585858;
}

.details-value {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: #0B5D36;
}

/* Responsive Media Queries for Students Details */
@media (max-width: 1200px) {
    .student-details-card {
        padding: 40px 36px;
    }

    .student-details-grid {
        gap: 16px 32px;
    }

    .details-label,
    .details-value {
        font-size: 16px;
        line-height: 24px;
    }

    .details-label {
        width: 170px;
    }
}

@media (max-width: 992px) {
    .student-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .details-label {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .student-details-container {
        padding: 0 20px;
    }

    .student-details-card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .student-details-title {
        font-size: 20px;
        line-height: 30px;
    }

    .details-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .details-label {
        width: 100%;
        font-size: 13px;
    }

    .details-value {
        font-size: 14px;
    }
}

/* ==========================================================================
   COURSE FEE STRUCTURE SECTION (Frame 2372)
   ========================================================================== */

.fee-structure-section {
    width: 100%;
    padding: 0 0 80px 0;
    background-color: #FFFFFF;
}

.fee-structure-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.fee-structure-card {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 16.6px 4px rgba(11, 93, 54, 0.25);
    border-radius: 23px;
    padding: 48px 56px;
    box-sizing: border-box;
}

.fee-structure-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.fee-structure-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #CCDDD1;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-structure-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.fee-structure-title {
    font-family: 'Plus Jakarta Sans', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    color: #0B5D36;
    margin: 0;
}

/* Table Styling */
.fee-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFAFA;
    border-radius: 8px;
    overflow: hidden;
}

.fee-table-header {
    background: #0B5D36;
}

.fee-table-header th {
    padding: 18px 32px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: #FFFFFF;
    text-align: left;
}

.fee-table-header th.col-amounts {
    text-align: right;
}

.fee-table tbody tr {
    border-bottom: 1px solid #979595;
}

.fee-table tbody td {
    padding: 16px 32px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: #0B5D36;
}

.fee-table td.col-amounts {
    text-align: right;
}

.fee-table-total {
    background: #379166;
}

.fee-table-total td {
    padding: 22px 32px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
}

.fee-disclaimer-text {
    font-family: 'Inter', var(--font-main, sans-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #585858;
    margin: 16px 0 36px 0;
}

/* Pay Now Action Button */
.pay-now-action-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-pay-now {
    width: 100%;
    max-width: 843px;
    height: 72px;
    background: #0B5D36;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: 'Inter', var(--font-main, sans-serif);
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-pay-now:hover {
    background: #084829;
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(11, 93, 54, 0.35);
}

/* Responsive Media Queries for Fee Structure */
@media (max-width: 1200px) {
    .fee-structure-card {
        padding: 40px 36px;
    }

    .fee-table-header th,
    .fee-table tbody td {
        font-size: 16px;
        padding: 14px 24px;
    }

    .fee-table-total td {
        font-size: 17px;
        padding: 18px 24px;
    }

    .btn-pay-now {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .fee-structure-container {
        padding: 0 20px;
    }

    .fee-structure-card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .fee-structure-title {
        font-size: 20px;
        line-height: 30px;
    }

    .fee-table-header th,
    .fee-table tbody td {
        font-size: 13px;
        padding: 12px 16px;
    }

    .fee-table-total td {
        font-size: 14px;
        padding: 14px 16px;
    }

    .fee-disclaimer-text {
        font-size: 12px;
    }

    .btn-pay-now {
        height: 56px;
        font-size: 16px;
    }
}

/* ==========================================================================
   COMPREHENSIVE GLOBAL MOBILE & TABLET RESPONSIVENESS SUITE
   ========================================================================== */

/* Fix image & video overflow globally */
img,
svg,
video,
iframe,
object,
embed {
    max-width: 100%;
    height: auto;
}

/* Ensure body does not have horizontal scroll */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

/* TABLET (max-width: 1200px) RESPONSIVE FIXES */
@media (max-width: 1200px) {

    .container,
    [class*="-container"],
    .header-container,
    .hero-container,
    .stats-container,
    .courses-container,
    .syllabi-container,
    .why-choose-container,
    .approach-container,
    .about-container,
    .helps-container,
    .success-container,
    .demo-container,
    .faq-container,
    .footer-container,
    .about-banner-container,
    .about-story-container,
    .about-why-choose-container,
    .about-team-container,
    .about-unique-container,
    .igcse-hero-container,
    .igcse-courses-container,
    .igcse-subjects-container,
    .igcse-approach-container,
    .igcse-why-choose-container,
    .igcse-board-success-container,
    .cbse-journey-container,
    .igcse-cta-banner-container,
    .contact-banner-container,
    .contact-info-container,
    .gallery-banner-container,
    .gallery-media-container,
    .app-form-hero-container,
    .learning-philosophy-container,
    .app-form-container,
    .app-footer-container,
    .payment-hero-container,
    .student-details-container,
    .fee-structure-container,
    .contact-container,
    .gallery-container,
    .mission-container,
    .story-container,
    .team-container,
    .language-courses-container,
    .testimonials-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .stats-bar {
        padding: 24px 32px !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px 20px !important;
    }
}

/* MEDIUM TABLET (max-width: 992px) RESPONSIVE FIXES */
@media (max-width: 992px) {

    .container,
    [class*="-container"],
    .header-container,
    .hero-container,
    .stats-container,
    .courses-container,
    .syllabi-container,
    .why-choose-container,
    .approach-container,
    .about-container,
    .helps-container,
    .success-container,
    .demo-container,
    .faq-container,
    .footer-container,
    .about-banner-container,
    .about-story-container,
    .about-why-choose-container,
    .about-team-container,
    .about-unique-container,
    .igcse-hero-container,
    .igcse-courses-container,
    .igcse-subjects-container,
    .igcse-approach-container,
    .igcse-why-choose-container,
    .igcse-board-success-container,
    .cbse-journey-container,
    .igcse-cta-banner-container,
    .contact-banner-container,
    .contact-info-container,
    .gallery-banner-container,
    .gallery-media-container,
    .app-form-hero-container,
    .learning-philosophy-container,
    .app-form-container,
    .app-footer-container,
    .payment-hero-container,
    .student-details-container,
    .fee-structure-container,
    .contact-container,
    .gallery-container,
    .mission-container,
    .story-container,
    .team-container,
    .language-courses-container,
    .testimonials-container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .header-nav {
        margin: 0;
    }

    /* Course Cards Grids */
    .courses-cards-grid,
    .syllabi-grid,
    .gallery-photos-grid,
    .gallery-videos-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    /* Philosophy card, student details, app form cards */
    .philosophy-card {
        flex-direction: column !important;
        text-align: center !important;
        gap: 24px !important;
        padding: 36px 24px !important;
    }

    .philosophy-divider {
        width: 100% !important;
        height: 2px !important;
        margin: 12px 0 !important;
    }

    .student-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Fee Table Overflow wrapper */
    .fee-table-wrap {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .fee-table {
        min-width: 600px;
    }
}

/* MOBILE DEVICES (max-width: 768px) RESPONSIVE FIXES */
@media (max-width: 768px) {

    .container,
    [class*="-container"],
    .header-container,
    .hero-container,
    .stats-container,
    .courses-container,
    .syllabi-container,
    .why-choose-container,
    .approach-container,
    .about-container,
    .helps-container,
    .success-container,
    .demo-container,
    .faq-container,
    .footer-container,
    .about-banner-container,
    .about-story-container,
    .about-why-choose-container,
    .about-team-container,
    .about-unique-container,
    .igcse-hero-container,
    .igcse-courses-container,
    .igcse-subjects-container,
    .igcse-approach-container,
    .igcse-why-choose-container,
    .igcse-board-success-container,
    .cbse-journey-container,
    .igcse-cta-banner-container,
    .contact-banner-container,
    .contact-info-container,
    .gallery-banner-container,
    .gallery-media-container,
    .app-form-hero-container,
    .learning-philosophy-container,
    .app-form-container,
    .app-footer-container,
    .payment-hero-container,
    .student-details-container,
    .fee-structure-container,
    .contact-container,
    .gallery-container,
    .mission-container,
    .story-container,
    .team-container,
    .language-courses-container,
    .testimonials-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Global Mobile Hero Banner Reordering (Image First, Content Second) */
    .hero-container,
    .igcse-hero-main-row,
    .contact-hero-main-row,
    .gallery-hero-main-row,
    .about-hero-main-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-visual,
    .igcse-hero-visual,
    .contact-hero-visual,
    .gallery-hero-visual,
    .about-hero-visual {
        order: 1 !important;
        margin-top: 0px !important;
        margin-bottom: 16px !important;
    }

    .hero-content,
    .igcse-hero-content,
    .contact-hero-content,
    .gallery-hero-content,
    .about-hero-content {
        order: 2 !important;
    }

    /* Stats Bar Mobile - 2 items per row centered */
    .stats-bar {
        padding: 20px 16px !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 12px !important;
        text-align: center !important;
    }

    .stat-item {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .stat-icon-circle {
        width: 42px !important;
        height: 42px !important;
        margin: 0 auto !important;
    }

    .stat-icon {
        width: 22px !important;
        height: 22px !important;
    }

    .stat-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .stat-number {
        font-size: 16px !important;
        line-height: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 4px !important;
    }

    .plus-sign {
        font-size: 16px !important;
        line-height: 22px !important;
        display: inline-block !important;
        width: auto !important;
        margin: 0 !important;
    }

    .stat-label {
        font-size: 10px !important;
        line-height: 15px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Grids to Single Column on Mobile */
    .courses-cards-grid,
    .syllabi-grid,
    .gallery-photos-grid,
    .gallery-videos-grid,
    .why-choose-grid,
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Pay Now Button (Full Width) */
    .btn-pay-now {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hero Action Buttons on Mobile & Tablet */
    .hero-actions,
    .contact-hero-actions,
    .gallery-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .igcse-hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .btn-primary-demo,
    .btn-outline-explore,
    .btn-contact-demo,
    .btn-contact-call,
    .btn-gallery-demo,
    .btn-gallery-call,
    .btn-igcse-demo {
        flex: 0 1 auto !important;
        width: auto !important;
        max-width: 100% !important;
        height: 42px !important;
        font-size: 11.5px !important;
        line-height: 1.2 !important;
        padding: 0 14px !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
        gap: 6px !important;
    }

    .btn-outline-explore svg,
    .btn-igcse-demo svg,
    .btn-contact-demo svg,
    .btn-gallery-demo svg {
        width: 14px !important;
        height: 10px !important;
        flex-shrink: 0 !important;
    }
}

/* SMALL MOBILE (max-width: 480px) RESPONSIVE FIXES */
@media (max-width: 480px) {

    .container,
    [class*="-container"],
    .header-container,
    .hero-container,
    .stats-container,
    .courses-container,
    .syllabi-container,
    .why-choose-container,
    .approach-container,
    .about-container,
    .helps-container,
    .success-container,
    .demo-container,
    .faq-container,
    .footer-container,
    .about-banner-container,
    .about-story-container,
    .about-why-choose-container,
    .about-team-container,
    .about-unique-container,
    .igcse-hero-container,
    .igcse-courses-container,
    .igcse-subjects-container,
    .igcse-approach-container,
    .igcse-why-choose-container,
    .igcse-board-success-container,
    .cbse-journey-container,
    .igcse-cta-banner-container,
    .contact-banner-container,
    .contact-info-container,
    .gallery-banner-container,
    .gallery-media-container,
    .app-form-hero-container,
    .learning-philosophy-container,
    .app-form-container,
    .app-footer-container,
    .payment-hero-container,
    .student-details-container,
    .fee-structure-container,
    .contact-container,
    .gallery-container,
    .mission-container,
    .story-container,
    .team-container,
    .language-courses-container,
    .testimonials-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .logo-img {
        max-width: 150px !important;
    }

    .student-details-card,
    .fee-structure-card,
    .app-form-card,
    .app-green-form-card {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }

    .details-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .details-label {
        width: 100% !important;
        font-size: 12px !important;
    }

    .details-value {
        font-size: 13px !important;
    }

    /* Small Mobile Button Font Size & Layout */
    .hero-actions,
    .contact-hero-actions,
    .gallery-hero-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .igcse-hero-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .btn-primary-demo,
    .btn-outline-explore,
    .btn-contact-demo,
    .btn-contact-call,
    .btn-gallery-demo,
    .btn-gallery-call,
    .btn-igcse-demo {
        font-size: 11px !important;
        padding: 0 10px !important;
        height: 40px !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   EXTRA SMALL MOBILE RESPONSIVE FIXES (325px & BELOW)
   ========================================================================== */
/* ==========================================================================
   EXTRA SMALL MOBILE RESPONSIVE FIXES (325px & BELOW)
   ========================================================================== */
@media (max-width: 420px) {

    .igcse-stats-card,
    .cbse-stats-card,
    .lang-stats-card {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 10px !important;
        padding: 16px 16px !important;
        margin: -20px auto 20px auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .igcse-stat-col,
    .cbse-stat-item,
    .lang-stat-col {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Left column items */
    .igcse-stat-col:nth-of-type(1),
    .igcse-stat-col:nth-of-type(3),
    .cbse-stat-item:nth-of-type(1),
    .cbse-stat-item:nth-of-type(3),
    .cbse-stats-card .cbse-stat-item:nth-child(1),
    .cbse-stats-card .cbse-stat-item:nth-child(5) {
        padding-left: 2px !important;
        padding-right: 0 !important;
    }

    /* Right column items - fill right side empty space */
    .igcse-stat-col:nth-of-type(2),
    .igcse-stat-col:nth-of-type(4),
    .cbse-stat-item:nth-of-type(2),
    .cbse-stat-item:nth-of-type(4),
    .cbse-stats-card .cbse-stat-item:nth-child(3),
    .cbse-stats-card .cbse-stat-item:nth-child(7) {
        padding-left: 16px !important;
        padding-right: 2px !important;
    }

    .cbse-stat-icon-img,
    .stat-icon-img,
    .stat-icon {
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0 !important;
    }

    .cbse-stat-icon-img.cbse-logo-badge {
        width: 32px !important;
        height: 32px !important;
    }

    .cbse-stat-title-green,
    .igcse-stat-title,
    .stat-number {
        font-size: 13.5px !important;
        line-height: 17px !important;
        white-space: nowrap !important;
    }

    .cbse-stat-desc-gray,
    .igcse-stat-desc,
    .stat-label {
        font-size: 10px !important;
        line-height: 13px !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .cbse-stat-text-wrap {
        min-width: 0 !important;
    }
}

@media (max-width: 350px) {

    .site-header .container,
    .header-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .logo-img {
        max-width: 130px !important;
    }

    .igcse-stats-card,
    .cbse-stats-card,
    .lang-stats-card {
        grid-template-columns: 1fr 1fr !important;
        padding: 14px 14px !important;
        gap: 12px 8px !important;
    }

    .igcse-stat-col,
    .cbse-stat-item,
    .lang-stat-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 3px !important;
        text-align: left !important;
    }

    /* Left column items */
    .igcse-stat-col:nth-of-type(1),
    .igcse-stat-col:nth-of-type(3),
    .cbse-stat-item:nth-of-type(1),
    .cbse-stat-item:nth-of-type(3),
    .cbse-stats-card .cbse-stat-item:nth-child(1),
    .cbse-stats-card .cbse-stat-item:nth-child(5) {
        padding-left: 2px !important;
        padding-right: 0 !important;
    }

    /* Right column items - fill right side empty space */
    .igcse-stat-col:nth-of-type(2),
    .igcse-stat-col:nth-of-type(4),
    .cbse-stat-item:nth-of-type(2),
    .cbse-stat-item:nth-of-type(4),
    .cbse-stats-card .cbse-stat-item:nth-child(3),
    .cbse-stats-card .cbse-stat-item:nth-child(7) {
        padding-left: 16px !important;
        padding-right: 2px !important;
    }

    .cbse-stat-icon-img,
    .stat-icon-img,
    .stat-icon {
        width: 24px !important;
        height: 24px !important;
    }

    .cbse-stat-icon-img.cbse-logo-badge {
        width: 26px !important;
        height: 26px !important;
    }

    .cbse-stat-text-wrap {
        align-items: flex-start !important;
        width: 100% !important;
    }

    .cbse-stat-title-green,
    .igcse-stat-title,
    .stat-number {
        font-size: 12px !important;
        line-height: 15px !important;
    }

    .cbse-stat-desc-gray,
    .igcse-stat-desc,
    .stat-label {
        font-size: 9px !important;
        line-height: 12px !important;
        white-space: normal !important;
    }
}