/* ==========================================================================
   BMW SKILL NEXT - Guru Kashi University   
   ========================================================================== */

:root {
    --bmw-cyan: #009ADA;
    --bmw-cyan-dark: #0082ba;
    --bmw-cyan-light: #e0f4fc;
    --text-dark: #111827;
    --text-body: #4b5563;
    --text-muted: #6b7280;
    --bg-light-gray: #f4f6f8;
    --border-gray: #e5e7eb;
}

.bmw-page-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
}

.bmw-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. HERO SECTION (Full Viewport Height with Cover Background)
   ========================================================================== */
.bmw-hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 180px);
    background-color: #009ADA;
    background-image: url('../images/bmw/hero-banner.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .bmw-hero-section {
        min-height: calc(100vh - 190px);
    }
}

.bmw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    color: #ffffff;
}

.bmw-hero-eyebrow {
    color: #FFF;
    font-family: Karla;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 1rem;
}

.bmw-hero-eyebrow .square-icon {
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    display: inline-block;
}

.bmw-hero-title {
    color: #FFF;
    font-family: Karla;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px;
    /* 130% */
    text-transform: uppercase;
    margin-top: 4rem;
}

.bmw-hero-description {
    color: #FFF;
    text-align: justify;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-top: 2rem;
    /* 137.5% */
}

.bmw-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #009ADA;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bmw-hero-btn:hover {
    background-color: #0082ba;
    color: #ffffff;
}

/* ==========================================================================
   2. QUICK FEATURE STRIP (Full Width with 80px Left & Right Gap)
   ========================================================================== */
.bmw-quick-strip {
    width: 100%;
    background: #E2E2E2;
    border-bottom: 1px solid #dee2e6;
    padding: 16px 80px;
    box-sizing: border-box;
}

.bmw-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bmw-strip-item {
    color: #000;
    font-family: Karla, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    display: flex;
    text-wrap: nowrap;
    gap: 16px;
    align-items: center;
}

.bmw-strip-item i {
    font-size: 13px;
    color: #4b5563;
}

.bmw-strip-divider {
    color: #9ca3af;
    font-weight: 300;
}

/* Responsive Strip */
@media (max-width: 900px) {
    .bmw-quick-strip {
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .bmw-quick-strip {
        padding: 12px 16px;
    }

    .bmw-strip-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 16px !important;
        align-items: center;
    }

    .bmw-strip-divider {
        display: none !important;
    }

    .bmw-strip-item {
        font-size: 12px !important;
        line-height: 16px !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-wrap: nowrap;
        width: 100%;
    }

    .bmw-strip-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 420px) {
    .bmw-quick-strip {
        padding: 10px 12px;
    }

    .bmw-strip-grid {
        gap: 10px 10px !important;
    }

    .bmw-strip-item {
        font-size: 10.5px !important;
        gap: 6px !important;
    }

    .bmw-strip-item svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   3. SECTION: AN INDUSTRY-SUPPORTED LEARNING INITIATIVE
   ========================================================================== */
.bmw-initiative-section {
    padding: 70px 0 0;
    background: #ffffff;
}

.bmw-initiative-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: flex-start;
}

.bmw-blue-tag {
    color: #3D87D4;
    font-family: Karla;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmw-blue-tag .square-icon {
    width: 6px;
    height: 6px;
    background-color: var(--bmw-cyan);
    display: inline-block;
}

.bmw-initiative-left h2 {
    color: #000;
    font-family: Karla;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.4px;
    margin-bottom: 3rem;
}

.bmw-initiative-lead {
    color: #4C4546;
    text-align: justify;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    margin-bottom: 12px;
    max-width: 420px;
}

.bmw-year-watermark {
    color: #E2E2E2;
    font-family: Karla;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 120px;
    /* 100% */
    letter-spacing: -4.8px;
    margin-top: 20px;
    user-select: none;
}

.bmw-initiative-right p {
    color: #4C4546;
    text-align: justify;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
}

/* Timeline Vertical Line with Dots */
.bmw-timeline-wrapper {
    position: relative;
    padding-left: 18px;
    margin-top: 28px;
}

.bmw-timeline-line {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 1.5px;
    background-color: #CFC4C5;
}

.bmw-timeline-line::before,
.bmw-timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #5D5F5F;
}

.bmw-timeline-line::before {
    top: -3px;
}

.bmw-timeline-line::after {
    bottom: -3px;
}

.bmw-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bmw-timeline-item {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #1f2937;
    line-height: 1.4;
}

.bmw-timeline-item .num {
    font-weight: 800;
    margin-right: 6px;
}

.bmw-section-bottom-line {
    width: 100%;
    height: 1px;
    background-color: #CFC4C5;
    margin-top: 60px;
}

/* ==========================================================================
   4. SECTION: EXPLORE THE BMW POWERTRAIN (Exact Match)
   ========================================================================== */
.bmw-specs-card-section {
    padding: 30px 0 60px;
}

.bmw-specs-card {
    border-radius: 20px;
    background: #009ADA;
    padding: 40px 80px 20px 80px;
    color: #ffffff;
}

.bmw-specs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bmw-specs-header-left .specs-eyebrow {
    color: #FFF;
    font-family: Karla;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmw-specs-header-left .specs-eyebrow .square-icon {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    display: inline-block;
}

.bmw-specs-header-left h2 {
    color: #FFF;
    font-family: Karla;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.4px;
    margin-top: 2rem;
}

.bmw-spec-edu-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #009ADA;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px;
}

.bmw-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    margin: 24px 0 28px 0;
}

.bmw-stat-col {
    border-right: 1px solid #FFF;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bmw-stat-col:first-child {
    padding-left: 0;
}

.bmw-stat-col.bmw-stat-col-last {
    border-right: none;
    padding-right: 0;
}

.bmw-stat-label-top {
    color: #FFF;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.bmw-stat-number {
    color: #FFF;
    font-family: Karla;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    /* 100% */
    letter-spacing: -3.2px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.bmw-stat-number .unit {
    color: #FFF;
    font-family: Karla;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.bmw-stat-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.bmw-specs-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.bmw-spec-info-col {
    font-size: 12px;
}

.bmw-spec-col-line {
    width: 28px;
    height: 1px;
    background-color: #FFF;
    margin-bottom: 12px;
}

.bmw-spec-info-title {
    color: #FFF;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin-bottom: 4px;
    display: block;
}

.bmw-spec-info-desc {
    color: #FFF;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

/* ==========================================================================
   5. SECTION: CLASSROOM CONCEPTS TO REAL-WORLD ENGINEERING (Exact 6 Grid)
   ========================================================================== */
.bmw-curriculum-section {
    padding: 50px 0 60px;
    background: #ffffff;
}

.bmw-curriculum-section .bmw-container {
    max-width: 1200px;
}

.bmw-curriculum-header {
    margin-bottom: 40px;
}

.bmw-curriculum-header h2 {
    color: #000;
    font-family: Karla;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.bmw-curriculum-header p {
    color: #4C4546;
    font-family: Karla;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.bmw-concepts-6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 36px;
}

.bmw-concept-item .concept-num {
    color: #E2E2E2;
    font-family: Karla;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}

.bmw-concept-item .concept-line {
    width: 100%;
    height: 1px;
    background-color: #CFC4C5;
    margin: 10px 0 16px 0;
}

.bmw-concept-item h3 {
    color: #000;
    font-family: Karla;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 8px;
}

.bmw-concept-item p {
    color: #4C4546;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* ==========================================================================
   6. SECTION: INSIDE THE BMW SKILL NEXT LEARNING CENTRE (Exact 1:1 Match)
   ========================================================================== */
.bmw-centre-section {
    padding: 30px 0 60px;
}

.bmw-centre-card {
    background-color: var(--bmw-cyan);
    border-radius: 16px;
    padding: 40px 44px;
    color: #ffffff;
}

.bmw-centre-header {
    margin-bottom: 24px;
}

.bmw-centre-header .centre-eyebrow {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bmw-centre-header .centre-eyebrow .square-icon {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    display: inline-block;
}

.bmw-centre-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -0.3px;
    margin: 0;
}

.bmw-centre-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.bmw-centre-left-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000000;
    height: 100%;
    min-height: 420px;
}

.bmw-centre-left-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bmw-centre-right-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.bmw-centre-right-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.bmw-centre-right-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bmw-centre-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.bmw-centre-img-overlay span {
    color: #FFF;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 125% */
    text-transform: uppercase;
}

/* ==========================================================================
   7. SECTION: SUPPORTING THE NEXT GENERATION OF ENGINEERS
   ========================================================================== */
.bmw-programs-section {
    padding: 60px 0 70px;
    background-color: var(--bg-light-gray);
}

.bmw-programs-section .bmw-container .bmw-programs-header,
.bmw-programs-frame {
    margin: 2rem 6rem;
}

.bmw-programs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* ==========================================================================
   7. SECTION: SUPPORTING THE NEXT GENERATION OF ENGINEERS (Exact 1:1 Match)
   ========================================================================== */
.bmw-programs-section {
    padding: 70px 0 80px;
    background-color: #E8E8E8;
}

.bmw-programs-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.bmw-programs-header-left .programs-eyebrow {
    color: #3D87D4;
    font-family: Karla;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmw-programs-header-left .programs-eyebrow .square-icon {
    width: 8px;
    height: 8px;
    background-color: var(--bmw-cyan);
    display: inline-block;

}

.bmw-programs-header-left h2 {
    color: #000;
    font-family: Karla;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.4px;
}

.bmw-program-btn {
    background: #000000;
    color: #FFF;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 1.2px;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bmw-program-btn:hover {
    background: #1f2937;
    color: #ffffff;
}

.bmw-programs-frame {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #5D5F5F;
    margin-top: 5rem;
}

.bmw-prog-col {
    position: relative;
    border-right: 1px solid #009ADA;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.bmw-prog-card-inner {
    padding: 40px 36px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bmw-prog-col-active {
    border-right: none;
    background-color: var(--bmw-cyan);
    padding-bottom: 50px;
}

.bmw-prog-col-active .bmw-prog-card-inner {
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    height: 100%;
}

.bmw-prog-tag {
    color: #5D5F5F;
    font-family: Karla;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.bmw-prog-card-inner h3 {
    color: #000;
    font-family: Karla;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 133.333% */
    margin-bottom: 16px;
}

.bmw-prog-card-inner p {
    color: #4C4546;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 36px;
}

.bmw-prog-icon {
    font-size: 16px;
    color: #6b7280;
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
    text-align: left;
}

.bmw-prog-col-active .bmw-prog-icon {
    color: #4b5563;
}

/* ==========================================================================
   8. SECTION: LEARNING BEYOND THE TEXTBOOK (Exact 1:1 Match)
   ========================================================================== */
.bmw-beyond-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.bmw-beyond-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 60px;
    align-items: flex-start;
}

.bmw-beyond-left .beyond-eyebrow {
    color: #3D87D4;
    font-family: Karla;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmw-beyond-left .beyond-eyebrow .square-icon {
    width: 8px;
    height: 8px;
    background-color: var(--bmw-cyan);
    display: inline-block;
}

.bmw-beyond-left h2 {
    color: #000;
    font-family: Karla;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 90px;
    /* 112.5% */
    letter-spacing: -4px;
}

.bmw-beyond-right-list {
    display: flex;
    flex-direction: column;
}

.bmw-beyond-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 85px;
    padding: 24px 0;
    border-top: 1px solid #CFC4C5;
    align-items: flex-start;
}

.bmw-beyond-num {
    color: #E2E2E2;
    font-family: Karla;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
}

.bmw-beyond-content h3 {
    color: #000;
    font-family: Karla;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    margin-bottom: 6px;
}

.bmw-beyond-content p {
    color: #4C4546;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* ==========================================================================
   9. BOTTOM CTA RIBBON
   ========================================================================== */
.bmw-bottom-cta-section {
    padding: 20px 0 60px;
}

.bmw-cta-ribbon {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.bmw-cta-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.bmw-cta-content {
    position: absolute;
    inset: 0;
    padding: 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    z-index: 2;
}

.bmw-cta-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
}

.bmw-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    white-space: nowrap;
}

.bmw-cta-row-2 {
    padding-left: 0px;
}

.bmw-cta-row span {
    color: #ffffff;
    font-family: Karla, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.5px;
    white-space: nowrap;
    display: block;
}

.cta-line-graphic {
    display: flex;
    align-items: center;
    width: 140px;
    flex-shrink: 0;
}

.cta-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.cta-line {
    flex: 1;
    height: 2px;
    background-color: #ffffff;
    display: inline-block;
}

.bmw-cta-btn-white {
    background: #ffffff;
    color: #009ADA;
    font-family: Karla;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.8px;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bmw-cta-btn-white:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   10. SECTION: BEYOND THE CLASSROOM
   ========================================================================== */
.bmw-beyond-classroom-section {
    background-color: #FFF8E7;
    padding: 60px 0;
}

.bmw-beyond-classroom-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.bmw-beyond-badge {
    display: inline-block;
    border-radius: 0 10px 10px 0;
    border: 1px solid #9F2B2C;
    color: #9F2B2C;
    font-family: Karla, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.bmw-beyond-classroom-content h2 {
    color: #000;
    font-family: Karla;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.bmw-beyond-classroom-content p {
    color: #000;
    text-align: justify;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.32px;
    margin-bottom: 24px;
    max-width: 560px;
}

.bmw-beyond-classroom-content p strong {
    color: #000;
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.32px;
}

.bmw-btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #9F2B2C;
    border-radius: 30px;
    color: #ffffff;
    padding: 6px 6px 6px 18px;
    text-decoration: none;
    font-family: Karla, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(163, 35, 40, 0.2);
    width: fit-content;
}

.bmw-btn-readmore span {
    color: #ffffff !important;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.bmw-btn-readmore:hover {
    background-color: #881337;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(163, 35, 40, 0.3);
}

.bmw-btn-readmore .btn-arrow-circle {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bmw-beyond-classroom-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bmw-beyond-classroom-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   RESPONSIVE (Laptop, Tablet, Mobile) - Desktop styles are 100% preserved
   ========================================================================== */

/* Laptop & Small Desktop (<= 1200px) */
@media (max-width: 1200px) {
    .bmw-container {
        padding: 0 24px;
    }

    .bmw-quick-strip {
        padding: 16px 40px;
    }

    .bmw-hero-title {
        font-size: 42px;
        line-height: 52px;
    }

    .bmw-initiative-grid {
        gap: 40px;
    }

    .bmw-concepts-6-grid {
        column-gap: 28px;
        row-gap: 28px;
    }

    .bmw-beyond-left h2 {
        font-size: 60px;
        line-height: 70px;
    }
}

/* Tablets & Landscape Mobiles (<= 992px) */
@media (max-width: 992px) {
    .bmw-hero-section {
        min-height: 480px;
        max-height: none;
        padding: 40px 0;
        background-position: 80% center;
    }

    .bmw-hero-title {
        font-size: 34px;
        line-height: 44px;
    }

    .bmw-hero-lead {
        font-size: 15px;
        line-height: 22px;
        max-width: 480px;
    }

    .bmw-quick-strip {
        padding: 14px 24px;
    }

    .bmw-strip-item {
        font-size: 12px;
        gap: 8px;
    }

    .bmw-initiative-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bmw-year-watermark {
        font-size: 72px;
        margin-top: 10px;
    }

    .bmw-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 20px 0;
    }

    .bmw-stat-col {
        padding: 18px 16px;
    }

    .bmw-stat-col:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }

    .bmw-stat-col:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.35);
        padding-left: 0;
    }

    .bmw-stat-col:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.35);
        border-right: none;
        padding-right: 0;
    }

    .bmw-specs-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bmw-concepts-6-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .bmw-centre-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bmw-centre-left-img-box {
        min-height: 320px;
        height: 320px;
    }

    .bmw-centre-right-box {
        min-height: 220px;
        height: 220px;
    }

    .bmw-programs-frame {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .bmw-prog-col {
        border-right: none;
        border-bottom: 1px solid #7DD3FC;
    }

    .bmw-prog-col-active {
        border-bottom: none;
        padding-bottom: 0;
    }

    .bmw-prog-col-active .bmw-prog-card-inner {
        border-radius: 0;
        border-bottom: 16px solid var(--bmw-cyan);
    }

    .bmw-beyond-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bmw-beyond-left h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .bmw-beyond-item {
        gap: 30px;
    }

    .bmw-cta-content {
        padding: 0 24px;
    }

    .bmw-cta-row span {
        font-size: 18px;
    }

    .cta-line-graphic {
        width: 100px;
    }

    .bmw-cta-btn-white {
        font-size: 16px;
        padding: 8px 20px;
    }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
    .bmw-hero-section {
        min-height: auto;
        padding: 40px 0 50px;
        background-position: 70% center;
    }

    .bmw-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .bmw-strip-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }

    .bmw-strip-divider {
        display: none;
    }

    /* Mobile Specs Card (Super clean & professional dashboard layout) */
    .bmw-specs-card-section {
        padding: 20px 0 40px;
    }

    .bmw-specs-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .bmw-specs-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .bmw-specs-header-left h2 {
        font-size: 22px;
        line-height: 28px;
        font-weight: 700;
    }

    .bmw-spec-edu-pill {
        font-size: 9.5px;
        padding: 6px 14px;
        letter-spacing: 0.6px;
    }

    .bmw-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.35);
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        margin: 18px 0 22px;
    }

    .bmw-stat-col {
        padding: 16px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.35);
        border-top: none;
    }

    .bmw-stat-col:nth-child(1),
    .bmw-stat-col:nth-child(3) {
        padding-left: 0;
    }

    .bmw-stat-col:nth-child(2),
    .bmw-stat-col:nth-child(4) {
        border-right: none;
        padding-right: 0;
    }

    .bmw-stat-col:nth-child(1),
    .bmw-stat-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }

    .bmw-stat-col:nth-child(3),
    .bmw-stat-col:nth-child(4) {
        border-bottom: none;
    }

    .bmw-stat-label-top {
        font-size: 9.5px;
        letter-spacing: 0.8px;
        margin-bottom: 4px;
    }

    .bmw-stat-number {
        font-size: 32px;
        gap: 3px;
        margin-bottom: 2px;
    }

    .bmw-stat-number .unit {
        font-size: 15px;
    }

    .bmw-stat-sub {
        font-size: 9.5px;
    }

    .bmw-specs-bottom-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 14px;
    }

    .bmw-spec-col-line {
        width: 22px;
        margin-bottom: 8px;
    }

    .bmw-spec-info-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .bmw-spec-info-desc {
        font-size: 11px;
        line-height: 1.4;
    }

    .bmw-curriculum-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .bmw-curriculum-header p {
        font-size: 15px;
        line-height: 22px;
    }

    .bmw-concepts-6-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bmw-concept-item .concept-num {
        font-size: 56px;
    }

    .bmw-centre-card {
        padding: 24px 20px;
    }

    .bmw-centre-header h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .bmw-programs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bmw-programs-header-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .bmw-beyond-left h2 {
        font-size: 38px;
        line-height: 46px;
        letter-spacing: -1.5px;

        br {
            display: none;
        }
    }

    .bmw-beyond-item {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        padding: 18px 0;
    }

    .bmw-beyond-num {
        font-size: 32px;
        line-height: 32px;
    }

    .bmw-beyond-content h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .bmw-beyond-content p {
        font-size: 14px;
        line-height: 22px;
    }

    /* Mobile CTA Ribbon */
    .bmw-cta-bg-img {
        display: none;
    }

    .bmw-cta-ribbon {
        background-color: var(--bmw-cyan);
        min-height: auto;
    }

    .bmw-cta-content {
        position: relative;
        inset: auto;
        padding: 28px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bmw-cta-row {
        gap: 8px;
    }

    .bmw-cta-row-2 {
        padding-left: 0;
    }

    .bmw-cta-row span {
        font-size: 18px;
        white-space: normal;
    }

    .cta-line-graphic {
        width: 80px;
    }

    .bmw-cta-btn-white {
        width: 100%;
        text-align: center;
        display: block;
        padding: 12px 24px;
        font-size: 16px;
    }

    .bmw-programs-section .bmw-container .bmw-programs-header,
    .bmw-programs-frame {
        margin: 0rem 0rem;
    }

    .bmw-programs-section .bmw-container .bmw-programs-frame {
        margin-top: 5rem;

    }

    .bmw-initiative-left h2 {
        br {
            display: none;
        }
    }

    .bmw-programs-header-left h2 {
        br {
            display: none;
        }
    }

    .bmw-beyond-classroom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bmw-btn-readmore {
        padding: 5px 5px 5px 16px;
        font-size: 11.5px;
        gap: 10px;
    }

    .bmw-btn-readmore .btn-arrow-circle {
        width: 24px;
        height: 24px;
    }

    .bmw-btn-readmore .btn-arrow-circle svg {
        width: 10px;
        height: 10px;
    }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
    .bmw-initiative-section {
        padding: 52px 0 0;
    }

    .bmw-hero-description {
        font-size: 12px;
        line-height: 18px;
    }

    .bmw-hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .bmw-btn-explore {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .bmw-strip-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .bmw-specs-card {
        padding: 20px 16px;
    }

    .bmw-stat-number {
        font-size: 28px;
    }

    .bmw-stat-number .unit {
        font-size: 13px;
    }

    .bmw-specs-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 14px;
    }

    .bmw-centre-left-img-box {
        min-height: 220px;
        height: 220px;
    }

    .bmw-centre-right-box {
        min-height: 170px;
        height: 170px;
    }

    .bmw-prog-card-inner {
        padding: 28px 20px;
    }

    .bmw-program-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-line-graphic {
        width: 65px;
    }

    .bmw-beyond-classroom-section {
        padding: 35px 0;
    }

    .bmw-btn-readmore {
        padding: 4px 4px 4px 14px;
        font-size: 11px;
        gap: 8px;
    }

    .bmw-btn-readmore .btn-arrow-circle {
        width: 22px;
        height: 22px;
    }

    .bmw-btn-readmore .btn-arrow-circle svg {
        width: 9px;
        height: 9px;
    }
}