/* Global styles moved to common.css */

/* Hero Section Layout */
.hero-interactive {
    width: 100%;
    background: #fff;
    overflow: visible;
    position: relative;
    padding: 130px 0 0 0;
    /* Original space for header */
}

/* Hero Container Adjustment for Perfect Fit */
/* Hero Container Adjustment for Perfect Fit */
.hero-container-full {
    display: grid;
    grid-template-columns: 1380fr 370px;
    /* Fixed width for sidebar column */
    width: 100%;
    max-width: 1850px;
    margin: 0 auto;
    gap: 15px;
    align-items: stretch;
    padding: 10px 30px 20px;
    box-sizing: border-box;
    height: auto;
    /* Allow growth */
    min-height: calc(100vh - 135px);
}

.carousel-main {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.arrow:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.carousel-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-slide {
    flex: 0 0 33.33333%;
    width: 33.33333%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* Carousel Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.carousel-dots .dot.active {
    background: #FF7242;
    /* Primary branding color */
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 114, 66, 0.4);
}

/* Sidebar Cards (3 items) */
.hero-sidebar.desktop-only {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    min-height: 0;
    /* Allow container to shrink */
}

.sidebar-card {
    position: relative;
    border-radius: 28px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* Critical for flex shrinking */
}

/* Unify Heights (1:1:1 Ratio) */
.sidebar-card.school,
.sidebar-card.academy,
.sidebar-card.homelearn {
    flex: 1;
}

.sidebar-card.school {
    background: #FF7242;
    color: white;
}

.sidebar-card.academy {
    background: #E2DEDE;
    color: #333;
}

.sidebar-card.homelearn {
    background: #FF7242;
    color: white;
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* --- Card Content Base --- */
.card-content-vertical,
.card-content-horizontal {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    padding: 0 !important;
    display: block !important;
}

/* Standardized Text Position (Top-Left) for all cards */
.card-text {
    position: absolute !important;
    top: 25px !important;
    /* Moved up to give more room for icon below */
    left: 25px !important;
    z-index: 10 !important;
    text-align: left !important;
    max-width: calc(100% - 70px) !important;
}

.card-text h3 {
    margin: 0 0 8px 0 !important;
    text-align: left !important;
}

.card-text p {
    margin: 0 !important;
    text-align: left !important;
}

/* Standardized Visual Elements (Bottom-Left) for all cards */
.card-visual-center,
.card-visual-right {
    position: absolute !important;
    bottom: 15px !important;
    left: 25px !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    z-index: 2 !important;
}

.card-icon {
    width: auto !important;
    height: auto !important;
    max-width: 145px !important;
    max-height: 145px !important;
    object-fit: contain !important;
    transition: transform 0.4s ease !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2)) !important;
}

.sidebar-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.sidebar-card.academy .card-icon {
    max-width: 160px !important;
    max-height: 160px !important;
    transform: translate(-15px, 15px);
}

.sidebar-card.academy:hover .card-icon {
    transform: translate(-15px, 15px) scale(1.1) rotate(5deg);
}

.card-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.25;
    word-break: keep-all;
}

.card-text p {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    opacity: 0.95;
    word-break: keep-all;
}

.sidebar-card.academy .card-text p {
    display: block;
    /* Show p for academy */
}

.card-arrow-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF7242;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.sidebar-card.academy .card-arrow-bottom {
    background: #FF7242;
    color: white;
}

.sidebar-card:hover .card-arrow-bottom {
    transform: translateX(5px);
}

/* Ultra-Modern Fluid Program Sections */
.fluid-program {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

.program-flex {
    display: flex;
    align-items: center;
    gap: 120px;
}

.program-flex.reverse {
    flex-direction: row-reverse;
}

/* Background Decorative Text */
.background-text {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -5px;
    white-space: nowrap;
}

/* Aura (Gradient Glows) */
.fluid-program::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 2;
    opacity: 0.4;
    pointer-events: none;
}

.academy-aura {
    background: #FAFBFC;
    /* Subtle light gray alternating background */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.academy-aura::before {
    background: radial-gradient(circle, #3dace2 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.school-aura::before {
    background: radial-gradient(circle, #f15c5c 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.homelearn-aura::before {
    background: radial-gradient(circle, #92cc5a 0%, transparent 70%);
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
}

.homelearn-aura .background-text {
    right: auto;
    left: 5%;
}

/* Visual Section */
.program-visual-modern {
    flex: 1.2;
    position: relative;
}

.visual-layers {
    position: relative;
    width: 100%;
}

.img-monitor {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.08));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-card-floating {
    position: absolute;
    width: 75%;
    right: -15%;
    bottom: -20%;
    z-index: 5;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.25));
}

.program-flex.reverse .img-card-floating {
    left: -15%;
    right: auto;
}

@keyframes floatingFluid {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* Info Section */
.program-info-modern {
    flex: 1;
}

.program-tag {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.academy-aura .program-tag {
    color: #3dace2;
}

.school-aura .program-tag {
    color: #f15c5c;
}

.homelearn-aura .program-tag {
    color: #92cc5a;
}

.modern-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.modern-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Minimalist Features */
.modern-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 1rem;
    color: #777;
    line-height: 1.4;
}

/* Hover Interactivity - Removed for stable single image */


/* Legacy Program Flow - Removed as redundant */

/* Responsive Index */
/* @media (max-width: 1200px) {
    .hero-container-full {
        display: flex;
        flex-direction: column;
    }

    .carousel-main {
        aspect-ratio: 16 / 9;
    }

    .hero-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .sidebar-card {
        flex: 1 1 calc(50% - 10px) !important;
        min-height: 200px;
    }

    .sidebar-card.school {
        flex: 1 1 100% !important;
    }

    .carousel-main,
    .hero-sidebar {
        width: 100%;
    }
} */

/* @media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .program-container {
        flex-direction: column;
    }

    .program-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
} */

/* ReadingBee is Different Section - Layout */
/* ReadingBee is Different Section - Layout */
#different {
    overflow: visible;
    padding: 100px 0;
    background-color: transparent;
    /* Reverted to transparent */
}

/* Remove the full section overlay */
#different::before {
    display: none;
}

#different .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Restore Header Colors */
#different .subtitle {
    color: var(--primary);
}

#different .section-header h2 {
    color: #222;
    text-shadow: none;
}

#different .title-line {
    background: var(--primary);
}

#different .section-desc {
    color: #666;
    font-weight: 400;
}

#different .section-desc b {
    font-weight: 700;
}

/* Video Link Button */
.btn-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 28px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 114, 66, 0.15);
}

.btn-video-link i {
    font-size: 1.2rem;
}

.btn-video-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 114, 66, 0.3);
}

/* --- Horizontal Timeline Layout (Option A) --- */
.process-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

/* 1. Top Navigation: Timeline */
.timeline-nav {
    position: relative;
    margin-bottom: 60px;
    padding-top: 20px;
}

/* The connecting line */
.timeline-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #ffe3d8;
    /* Light orange / track */
    border-radius: 4px;
    z-index: 1;
}

/* Nodes Container */
.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Individual Node (Step) */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
    width: 20%;
    text-align: center;
    transition: all 0.4s ease;
}

/* The Circle */
.node-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid #ffe3d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ccc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Hover State */
.process-step:hover .node-circle {
    border-color: #ffaa88;
    color: #ffaa88;
    transform: scale(1.1);
}

.process-step:hover .node-title {
    color: #555;
}

/* Active State */
.process-step.active .node-circle {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c66 100%);
    border-color: #fff;
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 10px 25px rgba(255, 114, 66, 0.4);
}

.node-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #aaa;
    transition: all 0.4s ease;
}

.process-step.active .node-title {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
}

/* 2. Bottom Display: Spotlight Box */
.timeline-display {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    min-height: 480px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Content Container for Each Step */
.process-image {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* Smooth slide up */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Left: Text Content */
.spotlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: keep-all;
}

.spotlight-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
    word-break: keep-all;
}

/* Right: Visual/Image */
.spotlight-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-visual img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Removed continuous float animation for active image */
/* 
@keyframes timelineFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.process-image.active .spotlight-visual {
    animation: timelineFloat 5s ease-in-out infinite;
} 
*/

/* Tablet/Mobile Responsive */
/* @media (max-width: 992px) {
    .timeline-line { display: none; }
    .timeline-nav { margin-bottom: 30px; }
    .timeline-nodes { overflow-x: auto; padding-bottom: 20px; gap: 20px; justify-content: flex-start; }
    .process-step { width: auto; flex: 0 0 auto; min-width: 120px; }
    .process-image { top: 40px; left: 30px; right: 30px; bottom: 40px; flex-direction: column; text-align: center; gap: 30px; }
    .settings-display { min-height: 600px; padding: 40px 30px; }
    .spotlight-title { font-size: 1.8rem; }
    .spotlight-desc { font-size: 1rem; }
    .mascot-timeline { width: 150px; top: -100px; right: 20px; }
} */

/* @media (max-width: 768px) {
    #different .section-header h2 {
        font-size: 2.5rem;
    }
} */

/* Review Section */
#reviews {
    background-color: #f9f9f9;
    padding: 100px 0;
    /* Match spacing */
}

#reviews .section-header {
    margin-bottom: 60px;
}

#reviews .text-gray {
    color: #666;
    font-size: 1.15rem;
    /* Match Premium Header */
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    word-break: keep-all;
}


/* Marquee Review Section */
.review-marquee-container {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;
    /* Space for shadows */
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
    /* Slow continuous scroll */
    padding-left: 20px;
}

.review-marquee-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid transparent;
    /* Fixed width for marquee */
    flex: 0 0 400px;
    width: 400px;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-card.highlight {
    border-color: var(--primary-light);
    background: #fff;
    position: relative;
}

.review-card.highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 32px;
    background: var(--gradient-text);
    z-index: -1;
    opacity: 0.3;
}

/* Scroll Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move by width of 6 cards + 6 gaps = (400+30)*6 = 2580px */
        transform: translateX(-2580px);
    }
}

/* Tablet & Mobile Adjustments */
/* @media (max-width: 992px) { ... } */
/* @media (max-width: 768px) { ... } */

.review-quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.review-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.review-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #999;
    margin-top: 2px;
}

.review-rating {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Partners Section - Wall of Trust */
#partners {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Container (Soft Blur Applied) */
.partners-bg-container {
    opacity: 0.6;
    filter: blur(1px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    user-select: none;
    pointer-events: none;
    margin-top: 50px;
}

.partner-marquee-row {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.partner-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.row-left .partner-track {
    animation: marquee-scroll 60s linear infinite;
}

.row-right .partner-track {
    animation: marquee-scroll-reverse 60s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(calc(-50% - 20px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Logo Placeholders */
.partner-item {
    background: #fff;
    width: 240px;
    height: 120px;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Central Stats Overlay */
.stats-overlay {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: auto;
}

.stats-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px 60px;
    border-radius: 100px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 8px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 40px;
    animation: float-pill 3s ease-in-out infinite;
}

@keyframes float-pill {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    color: #222;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stat-number small {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 4px;
}

.stat-number .unit {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: #eee;
}

/* @media (max-width: 768px) {
    .stats-box {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
        width: 90%;
        border-radius: 40px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
} */

/* --- Mobile Optimization --- */
/* --- Mobile Optimization Disabled --- */
/* @media (max-width: 992px) { ... } */
/* @media (max-width: 768px) { ... } */

/* ====== MOBILE OPTIMIZATION ====== */
/* ====== MOBILE OPTIMIZATION ====== */
@media screen and (max-width: 1024px) {

    /* --- HEADER --- */
    .header-top-bar {
        display: none;
        /* Hide top bar on mobile */
    }

    .header-main-bar {
        height: 70px;
        /* Slimmer header on mobile */
    }

    .header-main-bar .header-content-inner {
        padding: 0 20px;
    }

    .header-logo {
        height: 35px;
        /* Smaller logo */
    }

    .header-nav,
    .desktop-only {
        display: none !important;
        /* Hide desktop nav and auth elements */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show hamburger instead */
    }

    /* --- HERO SECTION --- */
    .hero-interactive {
        padding-top: 70px;
        /* Match new header height */
    }

    .hero-container-full {
        grid-template-columns: 1fr;
        /* Switch to single column */
        padding: 0 15px 20px;
        min-height: auto;
    }

    .carousel-main {
        aspect-ratio: 4 / 3;
        /* Better ratio for mobile view instead of full height */
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .carousel-arrows {
        display: none;
        /* Hide arrows on mobile, let them swipe/rely on auto */
    }

    .carousel-dots {
        bottom: 15px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dots .dot.active {
        width: 20px;
    }

    /* --- HERO SIDEBAR (CARDS) --- */
    .hero-sidebar {
        flex-direction: column;
        /* Stack cards vertically */
        gap: 15px;
    }

    .sidebar-card {
        min-height: 140px;
        /* Fixed smaller height for mobile cards */
        border-radius: 16px;
    }

    .card-text {
        top: 20px !important;
        left: 20px !important;
        max-width: 60% !important;
        /* Prevent text from overlapping icon on right */
    }

    .card-text h3 {
        font-size: 1.25rem;
        margin-bottom: 5px !important;
    }

    .card-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .sidebar-card.academy .card-text p {
        display: none;
        /* Hide academy desc if too cramped, or keep it depending on fit. Let's hide it for cleaner look on small height */
    }

    /* Icon resizing and repositioning to the right for mobile card layout */
    .card-visual-center,
    .card-visual-right {
        bottom: 10px !important;
        left: auto !important;
        right: 15px !important;
    }

    .card-icon {
        max-width: 90px !important;
        max-height: 90px !important;
        transform: translate(0, 0) !important;
        /* Reset any academy specific transforms */
    }

    .sidebar-card.academy .card-icon {
        transform: none !important;
    }

    .card-arrow-bottom {
        display: none;
        /* Remove circle arrow for cleaner mobile card */
    }
}

@media screen and (max-width: 480px) {
    .card-text {
        max-width: 55% !important;
    }

    .sidebar-card {
        min-height: 120px;
    }

    .card-text h3 {
        font-size: 1.15rem;
    }

    .card-text p {
        font-size: 0.8rem;
    }

    .card-icon {
        max-width: 80px !important;
        max-height: 80px !important;
    }
}

@media screen and (max-width: 1024px) {

    /* --- PROGRAM SECTIONS --- */
    .fluid-program {
        padding: 80px 0;
        /* Reduce vertical padding */
    }

    .background-text {
        font-size: 8rem;
        /* Smaller background text */
        top: 20%;
        /* Move up slightly to not interfere with main text */
        opacity: 0.05;
    }

    .homelearn-aura .background-text {
        left: -10%;
        /* Adjust position to not cut off weirdly */
    }

    .program-flex,
    .program-flex.reverse {
        flex-direction: column;
        /* Stack vertically for mobile */
        gap: 40px;
        /* Reduce gap between image and text */
        text-align: center;
        /* Center everything */
    }

    .program-visual-modern {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .program-info-modern {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center child elements */
    }

    .modern-title {
        font-size: 2.8rem;
        /* Smaller title */
        margin-bottom: 20px;
        text-align: center;
    }

    .program-info-modern>div[style*="font-size: 1.15rem;"] {
        font-size: 1rem !important;
        /* Adjust inline styles using CSS if possible, or target directly */
        text-align: center;
        margin-bottom: 20px !important;
        padding: 0 10px;
        word-break: keep-all;
    }

    .program-tag {
        margin-bottom: 15px;
    }

    /* Make features single column */
    .modern-feature-list {
        display: flex !important;
        /* Override grid inline style if any */
        flex-direction: column;
        gap: 25px !important;
        width: 100%;
        text-align: left;
        /* Keep feature text left-aligned for readability */
        padding: 0 10px;
    }

    .feature-item {
        flex-direction: row;
        /* Icon and text side-by-side */
        align-items: flex-start;
        gap: 20px;
    }

    .feature-icon {
        flex-shrink: 0;
        /* Prevent icon from shrinking */
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-text p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .modern-container {
        padding: 0 25px;
        /* Smaller container padding */
    }

    .background-text {
        font-size: 5rem;
    }

    .modern-title {
        font-size: 2.2rem;
    }

    .fluid-program {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1024px) {

    /* --- READING BEE IS DIFFERENT (5 STEPS) --- */
    #different {
        padding: 60px 0;
    }

    .process-timeline-container {
        padding: 0 15px;
    }

    /* Hide the horizontal line */
    .timeline-line {
        display: none;
    }

    /* Change navigation to horizontal scrollable strip on mobile */
    .timeline-nav {
        margin-bottom: 30px;
        overflow-x: auto;
        padding-bottom: 20px;
        padding-top: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .timeline-nav::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .timeline-nodes {
        display: flex;
        justify-content: flex-start;
        width: 800px;
        /* Force width so it scrolls */
        gap: 15px;
    }

    .process-step {
        width: auto;
        flex: 1;
        min-width: 140px;
    }

    .node-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        border-width: 3px;
    }

    .node-title {
        font-size: 1rem;
    }

    .process-step.active .node-title {
        font-size: 1.05rem;
    }

    /* Adjust the spotlight display box for mobile */
    .timeline-display {
        padding: 30px 20px;
        min-height: auto;
        /* Remove hardcoded height */
        border-radius: 20px;
    }

    .process-image {
        position: relative;
        /* Stack items normally on mobile instead of absolute positioning inside the box */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column-reverse;
        /* Image on top, text below for mobile */
        gap: 30px;
        display: none;
        /* Hide non-active by default */
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .process-image.active {
        display: flex;
        /* Only show active one */
        opacity: 1;
        transform: translateY(0);
    }

    .spotlight-content {
        align-items: center;
        /* Center text */
    }

    .spotlight-title {
        font-size: 1.6rem !important;
        /* Override inline styles if any */
        margin-bottom: 15px;
    }

    .spotlight-desc {
        font-size: 1rem !important;
        /* Override inline styles if any */
        line-height: 1.6 !important;
        text-align: left;
        /* Keep left alignment for bullet points */
        display: inline-block;
        max-width: 100%;
    }

    .spotlight-visual {
        max-width: 100%;
    }

    .spotlight-visual img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .spotlight-title {
        font-size: 1.4rem !important;
    }

    .timeline-display {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 1024px) {

    /* --- REVIEWS SECTION --- */
    .review-marquee-container {
        pointer-events: auto;
        /* Allow touch */
        padding: 0 15px;
    }

    .review-marquee-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        width: max-content;
        animation: marquee-scroll 30s linear infinite;
        /* Re-enable and speed up slightly */
        padding-bottom: 20px;
    }

    .review-marquee-track::-webkit-scrollbar {
        height: 6px;
    }

    .review-marquee-track::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .review-marquee-track::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .review-card {
        min-width: 160px;
        /* Much smaller to fit 2-3 at once */
        width: calc(50vw - 25px);
        /* Exactly 2 cards visible with gap */
        max-width: 200px;
        padding: 20px;
        /* Less padding for smaller cards */
        border-radius: 20px;
        margin: 0;
        box-sizing: border-box;
    }

    .review-body h3 {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }

    .review-body p {
        font-size: 0.75rem !important;
        line-height: 1.4;
    }

    .author-name {
        font-size: 0.7rem !important;
    }

    .author-role {
        font-size: 0.6rem !important;
    }

    .review-rating {
        font-size: 0.65rem !important;
    }

    .review-quote-icon {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }

    /* --- PARTNERS SECTION --- */
    /* --- PARTNERS SECTION REFACTOR (Restore PC Style) --- */
    #partners {
        display: block !important;
        /* Restore normal flow */
        position: relative !important;
        padding: 60px 0 !important;
        height: 550px !important;
        /* Fixed height for absolute stacking */
        overflow: hidden !important;
    }

    /* 1. Background logos (Same settings as PC) */
    .partners-bg-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.4 !important;
        /* Slightly lighter for mobile */
        filter: blur(2px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        /* Center rows vertically behind the card */
        gap: 15px !important;
        margin-top: 0 !important;
        padding: 0 !important;
        user-select: none !important;
        pointer-events: none !important;
    }

    .partner-item {
        width: 140px !important;
        /* Smaller logos for mobile */
        height: 70px !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .partner-track {
        gap: 20px !important;
        animation-duration: 40s !important;
    }

    /* 2. Stats Overlay (Absolute centered like PC) */
    .stats-overlay {
        position: absolute !important;
        top: 55% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 80% !important;
        /* Narrower card to show more logos on the sides */
        max-width: 320px !important;
        z-index: 100 !important;
    }

    .stats-box {
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 30px !important;
        border-radius: 40px !important;
        flex-direction: column !important;
        gap: 15px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .stat-number {
        font-size: 2.2rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    .stat-divider {
        width: 40% !important;
        height: 1px !important;
        margin: 5px auto !important;
    }

    /* --- FOOTER --- */
    .footer-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .footer-info {
        margin-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contact-details p {
        justify-content: center;
        /* Center phone numbers and addresses */
        flex-direction: column;
        /* Label on top of value */
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .contact-details .label {
        color: #FF7242;
        /* Highlight labels slightly on mobile */
    }

    .contact-details .label::after {
        content: "";
        /* Remove colon since it's stacked */
    }

    .footer-divider {
        width: 100%;
        max-width: 300px;
        margin: 30px auto;
    }

    .footer-combined-col {
        align-items: center;
        gap: 40px !important;
    }

    .footer-legal-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .footer-legal-links a {
        font-size: 1rem !important;
        color: #ccc !important;
    }

    .social-icons-row {
        justify-content: center;
    }
}

@media screen and (max-width: 1024px) {
    /* --- FIXING SCREENSHOT ISSUES --- */

    /* 1. Ensure the background aura images don't cause horizontal scroll or overlap content weirdly */
    .fluid-program {
        overflow: hidden;
        /* Prevent aura from spilling over */
    }

    /* 2. Fix the flex alignment and width for the feature lists */
    .modern-feature-list {
        display: flex !important;
        flex-direction: column;
        gap: 30px !important;
        /* Increase gap slightly for touch targets */
        width: 100%;
        text-align: left;
        padding: 0 15px;
        box-sizing: border-box;
        /* Ensure padding doesn't push it out of bounds */
    }

    /* 3. Ensure the text inside features doesn't overlap or go off screen */
    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        /* Adjust gap */
        width: 100%;
        /* Force width */
        overflow: hidden;
        /* Prevent text overflow */
    }

    .feature-text {
        flex: 1;
        /* Take up remaining space */
        min-width: 0;
        /* Critical for flex child truncation if needed */
        word-break: keep-all;
        /* Better Korean line breaking */
    }

    .feature-text h4 {
        font-size: 1.15rem;
        margin-bottom: 5px;
        line-height: 1.3;
        white-space: normal;
        /* Allow wrapping */
    }

    .feature-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        white-space: normal;
        /* Allow wrapping */
        color: #666;
        /* Ensure contrast */
    }

    /* 4. Ensure visual container (images) size correctly */
    .program-visual-modern {
        width: 100%;
        max-width: 90vw;
        /* Limit max width to viewport */
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .img-monitor {
        width: 100%;
        height: auto;
    }

    /* Center the title more effectively */
    .modern-title {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1024px) {
    /* --- MORE FIXES FOR OVERLAPPING TEXT --- */

    /* Center the info tag ("FOR Ȩ��...") */
    .program-tag {
        text-align: center;
        width: 100%;
        display: block;
    }

    /* Target the exact description text that might be breaking bounds */
    .program-info-modern {
        padding: 0 15px;
        /* Add base padding so content doesn't hit screen edges */
        box-sizing: border-box;
    }

    /* Redefine grid for feature list explicitly just in case inline styles are stubborn */
    .modern-feature-list {
        grid-template-columns: 1fr !important;
        display: grid !important;
        /* Switch back to grid but force 1 column */
        gap: 25px !important;
    }

    .feature-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    /* Force text wrapping on paragraphs */
    .feature-text p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media screen and (max-width: 1024px) {
    /* --- FIXING THE HORIZONTAL OVERFLOW IN HERO --- */

    /* The root width of body must be constrained */
    body {
        min-width: 0 !important;
        /* Override the desktop min-width: 1400px from common.css */
        overflow-x: hidden;
    }

    /* The carousel main container needs to not break the grid */
    .carousel-main {
        width: 100% !important;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Force the hero container to respect max width */
    .hero-container-full {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    /* The image itself was breaking bounds */
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        /* Cover rather than fill to avoid stretching/breaking bounds */
    }
}

@media screen and (max-width: 1024px) {
    /* --- HERO REDESIGN: OPTION A (HORIZONTAL SWIPE) --- */

    /* Ensure the main grid can take a horizontal child */
    .hero-sidebar {
        flex-direction: row !important;
        /* Stack them horizontally */
        flex-wrap: nowrap !important;
        /* Don't wrap */
        overflow-x: auto;
        /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory;
        /* Snap beautifully */
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        /* Spacing between cards */

        /* Give container breathing room from edges */
        padding: 5px 15px 20px 15px;
        margin: 0 -15px;
        /* Negate parent padding so scrolls to edge */
        width: 100vw;
    }

    /* Hide the scrollbar for cleaner look */
    .hero-sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar-card {
        /* Fixed, squarish sizing for the cards */
        flex: 0 0 280px !important;
        /* Fixed width */
        min-height: 200px !important;
        /* Fixed height to make it chunky */
        scroll-snap-align: center;
        margin: 0;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        /* Push text to bottom */
        overflow: hidden;
    }

    /* Center text at the bottom */
    .card-text {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 20px !important;
        box-sizing: border-box;
        background: rgba(0, 0, 0, 0.02);
        /* Slight contrast at bottom */
    }

    .card-text h3 {
        text-align: center !important;
        font-size: 1.35rem !important;
        margin-bottom: 5px !important;
    }

    .card-text p {
        text-align: center !important;
        font-size: 0.85rem !important;
        display: block !important;
        /* Ensure academy shows it too */
    }

    /* Center icon prominently at the top */
    .card-visual-center,
    .card-visual-right {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 110px !important;
        padding-top: 15px !important;
    }

    .card-icon {
        max-width: 90px !important;
        max-height: 90px !important;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {

    /* Slightly smaller cards for smaller phones */
    .sidebar-card {
        flex: 0 0 240px !important;
        min-height: 180px !important;
    }

    .card-visual-center,
    .card-visual-right {
        height: 90px !important;
    }

    .card-icon {
        max-width: 75px !important;
        max-height: 75px !important;
    }
}

@media screen and (max-width: 1024px) {
    /* --- CONTINUED REFINEMENT FOR OPTION A --- */

    /* The images were absolutely positioned in desktop, we must undo that */
    .card-content-vertical,
    .card-content-horizontal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 15px !important;
    }

    /* Force block display so flex takes over */
    .card-visual-center,
    .card-visual-right {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
    }

    /* Undo the desktop offsets for academy icon */
    .sidebar-card.academy .card-icon {
        transform: translate(0, 0) !important;
    }

    .sidebar-card.academy:hover .card-icon {
        transform: scale(1.1) translate(0, 0) !important;
    }
}

@media screen and (max-width: 1024px) {
    /* --- FIXING CAROUSEL IMAGE CROPPING --- */

    .carousel-main {
        /* Remove the forced 4/3 aspect ratio so it scales naturally to the image's proportion */
        aspect-ratio: auto !important;
        height: auto !important;
    }

    .carousel-wrapper,
    .carousel-container,
    .carousel-slide {
        /* Ensure the containers don't restrict the height */
        height: auto !important;
    }

    .carousel-slide img {
        /* Use 'contain' or simply make it responsive so the whole image shows */
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        /* Forces the entire image to be visible */
        display: block;
    }
}

@media screen and (max-width: 1024px) {

    /* --- ADDITIONAL FIX: ENSURING PROPER HEIGHT CALCULATION --- */
    .carousel-main {
        padding-bottom: 25px !important;
        /* Make room for the dots at the bottom */
    }
}

@media screen and (max-width: 1024px) {
    /* --- FIXING HERO CAROUSEL SPACING & WHITE GAP --- */

    /* Reduce the space between the header and the carousel */
    .hero-interactive {
        padding-top: 15px !important;
        /* Was 70px previously, pulling it much closer to the top */
    }

    /* Remove the white space at the bottom of the image */
    .carousel-main {
        padding-bottom: 0 !important;
        /* Remove the padding that was leaving a white gap */
    }

    /* Relocate the dots so they overlay the image instead of sitting below it */
    .carousel-dots {
        bottom: 15px !important;
        z-index: 20 !important;
    }

    /* Add a subtle drop shadow to dots so they are visible over the image */
    .carousel-dots .dot {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
}

@media screen and (max-width: 1024px) {

    /* --- OVERRIDE HEADER HEIGHT PUSH --- */
    /* The original header was pushing the content down, let's fix the margin at the top */
    .hero-interactive {
        padding-top: 70px !important;
        /* Must match mobile header height exactly so it doesn't float below it */
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 1024px) {

    /* --- RE-ADDING SPACE BELOW HEADER --- */
    .hero-interactive {
        /* Add some space above the carousel but keep it looking clean */
        padding-top: 85px !important;
        /* 70px (header height) + 15px (extra breathing room) */
    }
}

@media screen and (max-width: 1024px) {
    /* --- HERO REDESIGN: MODERN POLISH (GLASSY/CLEAN LOOK) --- */

    .hero-sidebar {
        padding: 5px 20px 30px 20px !important;
        gap: 20px !important;
        background-color: #f9fbfd;
        /* Soft premium background behind cards */
    }

    /* Redefine the card backgrounds to be modern white with soft shadows */
    .sidebar-card,
    .sidebar-card.school,
    .sidebar-card.academy,
    .sidebar-card.homelearn {
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
        border-radius: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 25px 20px !important;
        min-height: 240px !important;
        flex: 0 0 260px !important;
        position: relative;
        text-decoration: none !important;
    }

    .card-content-vertical,
    .card-content-horizontal {
        padding-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* Make the 3D Icons Pop */
    .card-visual-center,
    .card-visual-right {
        height: 100px !important;
        padding-top: 0 !important;
        margin-bottom: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .card-icon {
        max-width: 95px !important;
        max-height: 95px !important;
        object-fit: contain;
        filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.1));
        /* Add depth to icons */
    }

    /* Clean, Modern Typography */
    .card-text {
        background: transparent !important;
        /* Remove grey block */
        padding: 0 !important;
        text-align: center !important;
    }

    .card-text h3 {
        color: #222 !important;
        /* Dark bold text */
        font-weight: 800 !important;
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
        letter-spacing: -0.5px;
    }

    .card-text h3 span {
        color: #888 !important;
        /* Muted subtitle */
        display: block;
        margin-top: 3px;
        font-weight: 500 !important;
        font-size: 0.8rem !important;
    }

    .card-text p {
        color: #666 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        word-break: keep-all;
    }

    /* Sophisticated Arrow indicator */
    .card-arrow-bottom {
        position: absolute !important;
        bottom: 15px !important;
        right: 20px !important;
        background: #f1f3f5 !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #888 !important;
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
}

/* ============================================================== */
/* === OPTION 1: APP QUICK MENU (Completely replaces .hero-sidebar) === */
/* ============================================================== */

/* Base styling applies both desktop and mobile to stay consistent, but looks native on mobile */
.app-quick-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 20px auto 40px auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: transform 0.2s ease;
}

.quick-btn:active {
    transform: scale(0.95);
}

.quick-icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    /* Squircle shape like iOS icons */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    background: transparent;
    border: none;
}

/* Specific colors for the icon backgrounds to give it a premium SaaS feel */
.bg-school {
    background: transparent;
    border: none;
    box-shadow: none;
}

.bg-academy {
    background: transparent;
    border: none;
    box-shadow: none;
}

.bg-homerun {
    background: transparent;
    border: none;
    box-shadow: none;
}

.bg-lounge {
    background: transparent;
    border: none;
    box-shadow: none;
}

.quick-icon-img {
    width: 45px;
    /* Big enough to see detail, small enough to fit nicely */
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.1));
}

.quick-fa-icon {
    font-size: 26px;
    color: #6c757d;
}

.quick-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
}

/* Override previous mobile overrides that targeted .hero-sidebar */
@media screen and (max-width: 1024px) {
    .app-quick-menu {
        margin: 15px auto 30px auto;
        padding: 0 5px;
    }

    .quick-icon-bg {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    .quick-title {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 380px) {

    /* Prevent squishing on extremely small phones */
    .quick-icon-bg {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .quick-icon-img {
        width: 38px;
        height: 38px;
    }

    .quick-title {
        font-size: 0.75rem;
    }
}

/* Hide mobile app-quick-menu on desktop */
@media screen and (min-width: 1025px) {
    .app-quick-menu.mobile-only {
        display: none !important;
    }
}

/* Hide desktop hero-sidebar on mobile */
@media screen and (max-width: 1024px) {
    .hero-sidebar.desktop-only {
        display: none !important;
    }
}

/* ============================================================== */
/* === OPTION C: COMPACT SAAS LIST PROGRAM INFO (MOBILE ONLY) === */
/* ============================================================== */

@media screen and (max-width: 1024px) {

    /* Reduce the massive padding around the sections */
    .fluid-program {
        padding: 40px 15px !important;
        background: #fdfdfd !important;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Change the flex layout to be a compact card */
    .program-flex {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 25px 20px !important;
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    /* Make reverse layout the same on mobile so it's consistent */
    .program-flex.reverse {
        flex-direction: column !important;
    }

    /* Shrink the massive monitor overlay */
    .program-visual-modern {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
        display: flex;
        justify-content: center;
    }

    .visual-layers {
        position: relative !important;
        width: 80% !important;
        /* Smaller image */
        max-width: 250px !important;
    }

    .img-monitor {
        position: relative !important;
        width: 100% !important;
        transform: none !important;
        /* Remove any desktop transforms */
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
    }

    /* Compress the text info */
    .program-info-modern {
        width: 100% !important;
        text-align: left !important;
        /* Align left for readability */
        padding: 0 !important;
    }

    /* Tag & Title compaction */
    .program-tag {
        display: inline-block !important;
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
        margin-bottom: 10px !important;
    }

    /* The subtitle (e.g., ������ ����...) */
    .program-info-modern>div[style*="font-size: 1.15rem"] {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    .modern-title {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }

    /* Compress the feature list into a tight check-list style */
    .modern-feature-list {
        gap: 15px !important;
    }

    .feature-item {
        align-items: flex-start !important;
        padding-bottom: 15px !important;
        border-bottom: 1px dashed #eee;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .feature-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1.1rem !important;
        border-radius: 12px !important;
    }

    .feature-text h4 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .feature-text p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        color: #666 !important;
    }

    /* Hide the giant background text on mobile to keep it clean */
    .fluid-program .background-text {
        display: none !important;
    }
}

/* ============================================================== */
/* === MOBILE PROGRAM SWIPE CARDS (Option A) === */
/* ============================================================== */

/* Hide the new swipe section on desktop */
@media screen and (min-width: 1025px) {
    .mobile-programs-swipe.mobile-only {
        display: none !important;
    }
}

/* Hide the old massive sections on mobile */
@media screen and (max-width: 1024px) {
    .fluid-program.desktop-only-programs {
        display: none !important;
    }
}

/* Mobile Styling for the new Swipe Container */
@media screen and (max-width: 1024px) {
    .mobile-programs-swipe {
        padding: 40px 0 50px 0;
        background: linear-gradient(to bottom, #f8fbff, #ffffff);
        overflow: hidden;
        /* Hide horizontal scrollbar on the parent wrapper */
        position: relative;
    }

    .swipe-header {
        text-align: center;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .swipe-subtitle {
        font-family: 'Outfit', sans-serif;
        color: #007bff;
        font-weight: 800;
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .swipe-header h2 {
        font-size: 1.8rem;
        font-weight: 800;
        color: #222;
        margin-top: 5px;
        letter-spacing: -1px;
    }

    /* Horizontal scrollable container */
    .swipe-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 20px 30px 20px;
        /* Padding for scroll and shadow */
        -webkit-overflow-scrolling: touch;
        /* smooth scrolling on iOS */
        scrollbar-width: none;
        /* Hide scrollbar for Firefox */
    }

    /* Hide scrollbar for Chrome/Safari/Opera */
    .swipe-container::-webkit-scrollbar {
        display: none;
    }

    .swipe-card {
        flex: 0 0 calc(100% - 40px);
        /* Card almost full width but leaves edge of next card visible */
        max-width: 320px;
        scroll-snap-align: center;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .swipe-card:active {
        transform: scale(0.98);
    }

    /* Card Image Wrapper */
    .card-img-wrapper {
        width: 100%;
        height: 180px;
        background: #f1f6fb;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        position: relative;
    }

    .academy-card .card-img-wrapper {
        background: #fdf4f4;
    }

    .homerun-card .card-img-wrapper {
        background: #f2fcf6;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
    }

    /* Card Content */
    .card-content {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .card-badge {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        color: #666;
        background: #f0f0f0;
        padding: 5px 10px;
        border-radius: 8px;
        margin-bottom: 12px;
        align-self: flex-start;
    }

    .card-content h3 {
        color: #222;
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 6px;
        letter-spacing: -0.5px;
    }

    .highlight-blue {
        color: #007bff;
    }

    .highlight-red {
        color: #ff4757;
    }

    .highlight-green {
        color: #2ed573;
    }

    .card-summary {
        color: #555;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* Clean Checklist */
    .card-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .card-feature-list li {
        display: flex;
        align-items: flex-start;
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        font-weight: 500;
        gap: 10px;
    }

    .card-feature-list li i {
        color: #007bff;
        font-size: 0.9rem;
        margin-top: 2px;
    }

    .academy-card .card-feature-list li i {
        color: #ff4757;
    }

    .homerun-card .card-feature-list li i {
        color: #2ed573;
    }

    .swipe-instruction {
        text-align: center;
        color: #888;
        font-size: 0.8rem;
        font-weight: 500;
        margin-top: -10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        animation: pulseInstruction 2s infinite;
    }

    @keyframes pulseInstruction {
        0% {
            opacity: 0.5;
            transform: translateX(0);
        }

        50% {
            opacity: 1;
            transform: translateX(5px);
        }

        100% {
            opacity: 0.5;
            transform: translateX(0);
        }
    }
}

/* ============================================================== */
/* === PREMIUM REDESIGN FOR SWIPE CARDS === */
/* ============================================================== */
@media screen and (max-width: 1024px) {

    /* Modify existing .swipe-card constraints */
    .swipe-card {
        border-radius: 32px !important;
        /* ultra-smooth Apple-like corners */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
        border: 1px solid rgba(0, 0, 0, 0.02) !important;
        background: #ffffff !important;
    }

    .card-img-premium {
        width: 100%;
        height: 190px;
        background: radial-gradient(circle at 50% 120%, #f5f7fa 0%, #eef1f5 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        position: relative;
    }

    .academy-card .card-img-premium {
        background: radial-gradient(circle at 50% 120%, #fff5f5 0%, #fdecec 100%);
    }

    .homerun-card .card-img-premium {
        background: radial-gradient(circle at 50% 120%, #f4fdf7 0%, #e6f9ed 100%);
    }

    .card-img-premium img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: scale(1.1);
        /* Make it pop out slightly */
        filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.08));
    }

    .card-content-premium {
        padding: 25px 24px 30px 24px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        background: #ffffff;
    }

    .premium-tag {
        font-family: 'Outfit', sans-serif;
        font-size: 0.7rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.5px;
        color: #007bff;
        margin-bottom: 8px !important;
        text-transform: uppercase;
    }

    .premium-tag.tag-red {
        color: #ff4757;
    }

    .premium-tag.tag-green {
        color: #2ed573;
    }

    .premium-title {
        font-size: 1.6rem !important;
        font-weight: 900 !important;
        color: #111 !important;
        letter-spacing: -1px;
        margin-bottom: 15px !important;
    }

    .premium-desc {
        font-size: 0.95rem !important;
        color: #666 !important;
        line-height: 1.5 !important;
        font-weight: 400 !important;
        margin-bottom: 25px !important;
        word-break: keep-all;
    }

    /* Minimalist Action Arrow */
    .premium-action {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* Align right */
        gap: 8px;
        font-size: 0.95rem;
        font-weight: 700;
        color: #007bff;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }
}

@media screen and (max-width: 1024px) {

    /* Modify existing .swipe-subtitle color to match brand orange */
    .swipe-subtitle {
        color: #ff6a00 !important;
        /* Brand Orange */
    }
}

/* ============================================================== */
/* === FIX: ISOLATING MOBILE STYLES FROM DESKTOP === */
/* ============================================================== */

/* Restore the specific colors for the Desktop Program blocks that got overridden */
@media screen and (min-width: 1025px) {

    /* School (Blue) */
    #school .program-tag {
        color: #007bff !important;
    }

    #school .highlight-blue {
        color: #007bff !important;
    }

    /* Academy (Red) */
    #academy .program-tag {
        color: #ff4757 !important;
    }

    #academy .highlight-red {
        color: #ff4757 !important;
    }

    #academy .feature-icon i {
        color: #ff4757 !important;
    }

    /* Homerun (Green) */
    #homelearn .program-tag {
        color: #2ed573 !important;
    }

    #homelearn .highlight-green {
        color: #2ed573 !important;
    }

    #homelearn .feature-icon i {
        color: #2ed573 !important;
    }
}

@media screen and (min-width: 1025px) {

    /* Ensure feature icons pick up the right color */
    #school .feature-icon {
        color: #007bff !important;
    }

    #academy .feature-icon {
        color: #ff4757 !important;
    }

    #homelearn .feature-icon {
        color: #2ed573 !important;
    }

    /* Ensure specific icon inner colors */
    #school .feature-icon i {
        color: #007bff !important;
    }

    #academy .feature-icon i {
        color: #ff4757 !important;
    }

    #homelearn .feature-icon i {
        color: #2ed573 !important;
    }
}

/* ============================================================== */
/* === COLOR CORRECTION: SCHOOL(RED), ACADEMY(BLUE) === */
/* ============================================================== */

@media screen and (min-width: 1025px) {

    /* Correct Desktop School (Red) */
    #school .program-tag {
        color: #ff4757 !important;
    }

    #school .highlight-red {
        color: #ff4757 !important;
    }

    #school .feature-icon {
        color: #ff4757 !important;
    }

    #school .feature-icon i {
        color: #ff4757 !important;
    }

    /* Correct Desktop Academy (Blue) */
    #academy .program-tag {
        color: #007bff !important;
    }

    #academy .highlight-blue {
        color: #007bff !important;
    }

    #academy .feature-icon {
        color: #007bff !important;
    }

    #academy .feature-icon i {
        color: #007bff !important;
    }
}

@media screen and (max-width: 1024px) {

    /* Swap mobile card backgrounds to match the correct colors */
    .school-card .card-img-premium {
        background: radial-gradient(circle at 50% 120%, #fff5f5 0%, #fdecec 100%) !important;
    }

    .academy-card .card-img-premium {
        background: radial-gradient(circle at 50% 120%, #f5f7fa 0%, #eef1f5 100%) !important;
    }
}

/* Adjust the premium card image scale since 3D icons are smaller/different proportions than monitors */
@media screen and (max-width: 1024px) {
    .card-img-premium img {
        width: auto !important;
        height: 120px !important;
        /* Make the 3D icons appropriately sized */
        transform: scale(1) !important;
        /* Remove the aggressive monitor pop-out scale */
        filter: drop-shadow(0px 15px 15px rgba(0, 0, 0, 0.1)) !important;
        /* Softer shadow for 3D icons */
    }
}

/* ============================================================== */
/* === REMOVING QUICK MENU BACKGROUNDS & ENLARGING ICONS ====== */
/* ============================================================== */

/* completely remove the squircle backgrounds */
.quick-icon-bg {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: 70px !important;
    /* allows the bigger icon to fit */
}

/* Enlarge the 3D images by ~30% */
.quick-icon-img {
    width: 60px !important;
    /* from 45px -> 60px */
    height: 60px !important;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.12)) !important;
    /* ground the free-floating 3D icon */
    transform: scale(1.1);
}

/* Enlarge the headset icon by ~30% as well */
.quick-fa-icon {
    font-size: 34px !important;
    /* from 26px -> 34px */
}

@media screen and (max-width: 1024px) {
    .quick-icon-bg {
        height: 65px !important;
    }
}

@media screen and (max-width: 380px) {
    .quick-icon-img {
        width: 50px !important;
        /* from 38px -> 50px */
        height: 50px !important;
    }

    .quick-fa-icon {
        font-size: 28px !important;
    }

    .quick-icon-bg {
        height: 55px !important;
    }
}

@media screen and (max-width: 1024px) {

    /* Enlarge 3D icons in premium swipe cards by 30% */
    .card-img-premium img {
        height: 156px !important;
        /* 120px * 1.3 */
    }
}


/* Global mobile sizing to match the smaller, refined 'PROGRAMS' header style */
@media screen and (max-width: 1024px) {
    .section-header h2 {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
        font-weight: 800 !important;
        line-height: normal !important;
        margin-bottom: 20px !important;
    }

    .section-header .subtitle {
        font-size: 0.9rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 5px !important;
    }
}

/* ============================================================== */
/* === Option 1: Mobile Vertical Story Timeline (Premium) ======= */
/* ============================================================== */

/* Switch display based on screen size */
.mobile-vertical-timeline {
    display: none;
}

@media screen and (max-width: 1024px) {

    /* Hide Desktop Timeline Components */
    .process-timeline-container {
        display: none !important;
    }

    /* Show Mobile Vertical Timeline */
    .mobile-vertical-timeline {
        display: block;
        padding: 0 15px;
        margin-top: 30px;
        text-align: left;
    }

    .m-timeline-item {
        display: flex;
        position: relative;
        margin-bottom: 40px;
    }

    .m-timeline-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 20px;
        width: 40px;
        flex-shrink: 0;
    }

    .m-node-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-weight: 800;
        font-family: 'Outfit', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(255, 114, 66, 0.2);
    }

    .m-node-line {
        flex-grow: 1;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary) 0%, rgba(255, 114, 66, 0.1) 100%);
        margin-top: 10px;
        margin-bottom: -30px;
        /* Overlap with next item */
    }

    .m-timeline-content {
        background: #fff;
        border-radius: 20px;
        padding: 25px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        flex-grow: 1;
        width: 100%;
        overflow: hidden;
    }

    .m-step-title {
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 800;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
    }

    .m-spotlight-title {
        font-size: 1.3rem;
        font-weight: 800;
        color: #222;
        margin-bottom: 12px;
        line-height: 1.4;
        letter-spacing: -0.5px;
        word-break: keep-all;
    }

    .m-spotlight-desc {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .m-spotlight-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

    .m-spotlight-list li {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 8px;
        line-height: 1.5;
        position: relative;
        padding-left: 20px;
        text-indent: -20px;
    }

    .m-spotlight-list b {
        color: #222;
        font-weight: 700;
    }

    .m-step-img {
        width: 100%;
        border-radius: 12px;
        display: block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
}

@media screen and (max-width: 1024px) {

    /* User request: Remove light blue background and shrink buttons/cards by 20% */
    .mobile-programs-swipe {
        background: #ffffff !important;
    }

    .swipe-card {
        max-width: 256px !important;
        flex: 0 0 calc(85% - 20px) !important;
    }

    .card-img-premium {
        height: 152px !important;
        padding: 24px !important;
    }

    .card-content-premium {
        padding: 20px 19px 24px 19px !important;
    }

    .premium-title {
        font-size: 1.28rem !important;
        margin-bottom: 12px !important;
    }

    .premium-desc {
        font-size: 0.76rem !important;
        margin-bottom: 20px !important;
    }

    .premium-tag {
        font-size: 0.56rem !important;
    }
}

@media screen and (max-width: 1024px) {

    /* User request: Reduce spacing between rolling banner and swipe cards */
    .hero-interactive {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .carousel-main {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .mobile-programs-swipe {
        padding-top: 0px !important;
        margin-top: -15px !important;
    }
}

/* ============================================================== */
/* === OPTION 1: AURORA GLASS REVIEWS REDESIGN === */
/* ============================================================== */
.aurora-reviews {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
}

/* Beautiful Animated Mesh Gradient Background */
.aurora-bg-mesh {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 140%;
    height: 140%;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 106, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(46, 213, 115, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 71, 87, 0.05) 0%, transparent 30%);
    filter: blur(80px);
    animation: auroraRotate 30s linear infinite;
}

@keyframes auroraRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.relative-z {
    position: relative;
    z-index: 2;
}

.modern-header-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

/* Glass Slider Layout */
.review-glass-slider {
    margin-top: 60px;
    position: relative;
}

.glass-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.glass-track::-webkit-scrollbar {
    display: none;
}

.glass-card {
    flex: 0 0 450px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.glass-card.active {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 35px 70px -15px rgba(255, 106, 0, 0.15);
}

.glass-quote {
    font-size: 4rem;
    color: rgba(255, 106, 0, 0.1);
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 0;
}

.glass-body {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.glass-body h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: keep-all;
}

.glass-body p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    word-break: keep-all;
}

.glass-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-3d {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.author-avatar-3d.school-bg {
    background: #fee2e2;
}

.author-avatar-3d.academy-bg {
    background: #e0f2fe;
}

.author-avatar-3d.homelearn-bg {
    background: #dcfce7;
}

.author-avatar-3d img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
}

.author-meta .name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #111;
}

.author-meta .role {
    display: block;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

.glass-rating {
    color: #ffb800;
    font-size: 0.9rem;
}

/* Mobile Optimizations */
@media screen and (max-width: 1024px) {
    .aurora-reviews {
        padding: 80px 0;
    }

    .modern-header-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .glass-card {
        flex: 0 0 85vw;
        padding: 35px 30px;
        border-radius: 32px;
    }

    .glass-body h3 {
        font-size: 1.3rem;
    }

    .glass-body p {
        font-size: 0.95rem;
    }

    .glass-quote {
        font-size: 2.5rem;
        top: 20px;
        left: 20px;
    }
}

/* ============================================================== */
/* === OPTION 2: FLOATING SOCIAL WALL (REVIEWS) === */
/* ============================================================== */
.reviews-social-wall {
    display: flex;
    gap: 30px;
    padding: 60px 0;
    justify-content: center;
    align-items: flex-start;
}

.social-bubble-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 350px;
}

.social-bubble-column.mt-large {
    margin-top: 60px;
}

.social-bubble {
    background: #ffffff;
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-bubble:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bubble-author {
    font-weight: 800;
    color: #111;
    font-size: 1.05rem;
}

.bubble-stars {
    color: #ffb800;
    font-weight: 700;
    font-size: 0.9rem;
}

.bubble-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    word-break: keep-all;
    margin-bottom: 15px;
}

.bubble-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff6a00;
    background: #fff5ee;
    padding: 4px 12px;
    border-radius: 100px;
}

/* Main Highlight Bubble */
.bubble-main {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e1eefe;
    padding: 50px 40px;
}

.bubble-quote-icon {
    font-size: 2.5rem;
    color: #e1eefe;
    margin-bottom: 20px;
}

.bubble-headline {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.bubble-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f4f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bubble-rating {
    color: #ffb800;
    letter-spacing: 2px;
}

/* Variations */
.social-bubble.small {
    padding: 25px;
}

.social-bubble.small .bubble-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.social-bubble.tiny {
    background: #fdfdfd;
    padding: 15px 25px;
    text-align: center;
}

.social-bubble.tiny .bubble-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
}

/* Mobile Responsive adjustment */
@media screen and (max-width: 1024px) {
    .reviews-social-wall {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
    }

    .social-bubble-column {
        max-width: 100%;
        width: 100%;
    }

    .social-bubble-column.mt-large {
        margin-top: 0;
    }

    .bubble-main {
        padding: 40px 30px;
    }

    .bubble-headline {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {

    /* User request: Remove specific descriptive text blocks only on mobile */
    #different .section-desc,
    #reviews .section-desc,
    #partners .section-desc {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {

    /* User request: Reduce large vertical gaps around section headers on mobile */
    .section,
    #different,
    #reviews,
    #partners,
    .aurora-reviews {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-header {
        margin-bottom: 30px !important;
    }

    .section-header h2 {
        margin-bottom: 10px !important;
    }

    .title-line {
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 1024px) {

    /* User request: Shrink the video link button on mobile */
    .btn-video-link {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        margin-top: 10px !important;
    }

    .btn-video-link i {
        font-size: 1rem !important;
        margin-right: 5px !important;
    }
}