/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-cyan: #00C2FF;
    --primary-cyan-light: #00E5FF;
    --primary-cyan-dark: #06B6D4;
    --primary-purple: #7B2CBF;
    --primary-purple-light: #A855F7;
    --primary-purple-lighter: #C084FC;
    --gradient-cyan: #06B6D4;
    --gradient-blue: #3B82F6;
    --gradient-purple: #8B5CF6;
    --gradient-magenta: #D946EF;
    --teal: #14B8A6;
    --teal-light: #2DD4BF;
    --cream: #FAF9F0;
    --cream-dark: #F5F5DC;
    --white: #FFFFFF;
    --light-bg: #F8F7F0;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-light: #8A8AA8;
    --text-white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(0, 194, 255, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --gradient-primary: linear-gradient(135deg, #06B6D4, #3B82F6, #8B5CF6, #D946EF);
    --gradient-cyan-purple: linear-gradient(135deg, #00C2FF, #7B2CBF);
    --gradient-cyan-teal: linear-gradient(135deg, #00E5FF, #2DD4BF);
    --gradient-purple-magenta: linear-gradient(135deg, #7B2CBF, #D946EF);
    --gradient-warm: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
}
/* ============================================
   GLOBAL OVERFLOW LOCK — prevents horizontal scroll
   from off-screen mobile nav menu
   ============================================ */
html {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    position: relative;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1600px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.25);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.4);
}
.btn-primary i { transition: transform var(--transition-fast); }
.btn-primary:hover i { transform: translateX(4px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.3);
}

.btn-large { padding: 16px 36px; font-size: 18px; }
.btn-enroll { padding: 10px 24px; font-size: 14px; }
.btn-small { padding: 10px 24px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   TOP BAR - COMPLETE
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    display: block;
    position: relative;
    z-index: 1001;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    max-width: 1600px;
    margin: 0 auto;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 10px;                        /* gap between icon and text */
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-link:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

.top-bar-link i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    width: 16px;                      /* fixed width so icons align */
    text-align: center;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-social:hover {
    background: #FFFFFF;
    color: #7B2CBF;
    transform: scale(1.1) rotate(5deg);
    border-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ============================================
   TOP BAR - TABLET (≤ 991px)
   ============================================ */
@media (max-width: 991px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-wrapper {
        padding: 0 8px;
    }

    .top-bar-left {
        gap: 14px;
    }

    .top-bar-link {
        font-size: 12px;
        gap: 8px;
    }

    .top-bar-link i {
        font-size: 12px;
        width: 14px;
    }

    .top-bar-social {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .top-bar-right {
        gap: 6px;
    }
}

/* ============================================
   TOP BAR - MOBILE (≤ 767px)
   ============================================ */
@media (max-width: 767px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar-wrapper {
        padding: 0 6px;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .top-bar-left {
        gap: 10px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .top-bar-link {
        font-size: 11px;
        gap: 6px;
    }

    .top-bar-link i {
        font-size: 11px;
        width: 12px;
    }

    .top-bar-divider {
        font-size: 11px;
    }

    .top-bar-social {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .top-bar-right {
        gap: 4px;
    }
}

/* ============================================
   TOP BAR - SMALL MOBILE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
    .top-bar {
        padding: 4px 0;
    }

    .top-bar-wrapper {
        padding: 0 4px;
        gap: 4px;
    }

    .top-bar-left {
        gap: 8px;
    }

    .top-bar-link {
        font-size: 10px;
        gap: 4px;
    }

    .top-bar-link i {
        font-size: 11px;
        width: 12px;
    }

    .top-bar-social {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .top-bar-right {
        gap: 3px;
    }
}

/* ============================================
   TOP BAR - EXTRA SMALL (≤ 380px)
   ============================================ */
@media (max-width: 380px) {
    .top-bar-wrapper {
        padding: 0 2px;
    }

    .top-bar-link span {
        display: none;    /* hide text, keep icons only */
    }

    .top-bar-link {
        gap: 0;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-left {
        gap: 10px;
    }

    .top-bar-social {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
}


/* ============================================
   MARQUEE BAR - COMPLETE
   ============================================ */
.marquee-bar {
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
}

.marquee-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, #00C2FF, transparent);
}

.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, #7B2CBF, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.35);
    font-size: 8px;
}

@media (max-width: 768px) {
    .marquee-wrapper { padding: 0 8px; gap: 10px; }
    .marquee-content { font-size: 12px; animation-duration: 20s; gap: 12px; }
    .marquee-track::before,
    .marquee-track::after { width: 25px; }
}

@media (max-width: 480px) {
    .marquee-wrapper { padding: 0 6px; gap: 8px; }
    .marquee-content { font-size: 11px; animation-duration: 18s; gap: 10px; }
    .marquee-track::before,
    .marquee-track::after { width: 15px; }
}


/* ============================================
   MAIN HEADER - COMPLETE (FULLY RESPONSIVE)
   Logo sizes UNCHANGED at every breakpoint
   ============================================ */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 90px;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    height: 80px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 16px;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.main-header .logo-img {
    content: url('/images/Add_a_heading_3.png');
    height: 195px;
    min-width: 60px;
    margin-top: 30px;
    transition: height 0.3s ease, margin-top 0.3s ease;
    object-fit: contain;
}

.main-header.scrolled .logo-img {
    content: url('/images/Add_a_heading_3.png');
    height: 195px;
    margin-top: 30px;
}

/* Navigation */
.main-header .nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-header .nav-link {
    font-size: 19px;
    font-weight: 600;
    color: #1A1A2E;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    position: relative;
    white-space: nowrap;
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #00C2FF;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    width: 100%;
}

/* Enroll Button */
.main-header .btn-enroll {
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Hamburger */
.main-header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    z-index: 1001;
    position: relative;
}

.main-header .hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #1A1A2E;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.main-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.main-header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.main-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MAIN HEADER - LAPTOP (≤ 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .main-header .navbar {
        gap: 12px;
        padding: 14px 18px;
    }

    .main-header .nav-menu {
        gap: 20px;
    }

    .main-header .nav-link {
        font-size: 17px;
    }

    .main-header .btn-enroll {
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* ============================================
   MAIN HEADER - TABLET (≤ 991px)
   ============================================ */
@media (max-width: 991px) {
    .main-header .navbar {
        gap: 10px;
        padding: 12px 16px;
        height: 75px;
    }

    .main-header .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 110px;
        min-width: 85px;
        margin-top: 30px;
    }

    .main-header.scrolled .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 110px;
        margin-top: 30px;
    }

    .main-header .nav-menu {
        gap: 16px;
    }

    .main-header .nav-link {
        font-size: 15px;
    }

    .main-header .btn-enroll {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================================
   MAIN HEADER - MOBILE (≤ 767px) — FIXED
   ============================================ */
@media (max-width: 767px) {
    .main-header {
        height: 100px;
        overflow: visible;         /* allow logo to extend */
    }

    .main-header .navbar {
        height: 100px;
        padding: 0 16px;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
    }

    .main-header .logo {
        height: 100%;
        align-items: center;
    }

    .main-header .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 90px;
        min-width: 80px;
        margin-top: 0;
        object-fit: contain;
        display: block;
    }

    .main-header.scrolled .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 90px;
        margin-top: 0;
    }

    .main-header .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
        padding: 8px;
        touch-action: manipulation;      /* prevents tap-through from scroll */
        -webkit-tap-highlight-color: transparent;
    }

    .main-header .btn-enroll {
        display: none !important;
    }

    .main-header .nav-menu {
        position: fixed;
        top: 0;
        right: 0;                          /* keep it anchored at right: 0 */
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        padding: 120px 24px 30px;
        gap: 6px;
        transform: translateX(100%);       /* hides it to the right, off-layout */
        transition: transform 0.35s ease;
        overflow-y: auto;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
        pointer-events: none;
        visibility: hidden;
    }

    .main-header .nav-menu.active {
        transform: translateX(0);          /* slides in */
        pointer-events: auto;
        visibility: visible;
    }
    .main-header .nav-link {
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        white-space: normal;
        text-align: left;
    }

    .main-header .nav-link::after {
        display: none;
    }

    .main-header .nav-link:hover,
    .main-header .nav-link.active {
        color: #00C2FF;
    }
}

/* ============================================
   SMALL MOBILE (≤ 480px) — FIXED
   ============================================ */
@media (max-width: 480px) {
    .main-header {
        height: 90px;
        overflow: visible;
    }

    .main-header .navbar {
        height: 90px;
        padding: 0 14px;
        align-items: center;
    }

    .main-header .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 78px;
        min-width: 70px;
        max-height: 78px;
        margin-top: 0;
    }

    .main-header.scrolled .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 78px;
        margin-top: 0;
    }

    .main-header .hamburger {
        padding: 8px;
        touch-action: manipulation;
    }

    .main-header .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .main-header .nav-menu {
        max-width: 280px;
        padding: 110px 20px 20px;
    }

    .main-header .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
}

/* ============================================
   EXTRA SMALL (≤ 380px) — FIXED
   ============================================ */
@media (max-width: 380px) {
    .main-header {
        height: 80px;
        overflow: visible;
    }

    .main-header .navbar {
        height: 80px;
        padding: 0 12px;
    }

    .main-header .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 68px;
        min-width: 60px;
        max-height: 68px;
        margin-top: 0;
    }

    .main-header.scrolled .logo-img {
        content: url('/images/Add_a_heading_3.png');
        height: 68px;
        margin-top: 0;
    }

    .main-header .hamburger span {
        width: 22px;
        height: 2px;
    }

    .main-header .nav-menu {
        max-width: 260px;
        padding: 100px 16px 16px;
    }

    .main-header .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }
}


/* ============================================
   MOBILE OVERLAY (when menu is open)
   ============================================ */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   PREVENT BODY SCROLL WHEN MENU OPEN
   ============================================ */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   MARQUEE BAR - FIXED Z-INDEX
   ============================================ */
.marquee-bar {
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

/* Ensure marquee stays behind the mobile menu */
@media (max-width: 767px) {
    .marquee-bar {
        z-index: 997;
    }
}
/* ============================================
   PREVENT BODY SCROLL WHEN MENU OPEN
   ============================================ */
body.menu-open {
    overflow: hidden;
}
/* ============================================
   HERO SECTION - UPDATED
   ============================================ */
.hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--cream);
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(0, 194, 255, 0.08) 0%,
        rgba(123, 44, 191, 0.05) 40%,
        transparent 70%
    );
    z-index: 2;
}

/* Floating Shapes - Glowing */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -100px;
    right: -50px;
    animation: floatShape1 25s ease-in-out infinite;
    opacity: 0.12;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-purple-light);
    bottom: -80px;
    left: -80px;
    animation: floatShape2 30s ease-in-out infinite;
    opacity: 0.1;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-cyan);
    top: 40%;
    right: 10%;
    animation: floatShape3 18s ease-in-out infinite;
    opacity: 0.08;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--teal);
    bottom: 30%;
    left: 5%;
    animation: floatShape4 22s ease-in-out infinite;
    opacity: 0.07;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    top: 10%;
    left: 30%;
    animation: floatShape1 28s ease-in-out infinite reverse;
    opacity: 0.05;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(1.15); }
    66% { transform: translate(30px, -30px) scale(0.85); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -40px) rotate(180deg); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.2); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.particle {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.12);
    animation: particleFloat 15s ease-in-out infinite;
}

.particle i {
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.2));
}

.particle-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 18px; }
.particle-2 { top: 25%; right: 15%; animation-delay: 2s; font-size: 22px; }
.particle-3 { top: 60%; left: 5%; animation-delay: 4s; font-size: 16px; }
.particle-4 { top: 70%; right: 8%; animation-delay: 1s; font-size: 20px; }
.particle-5 { top: 40%; left: 25%; animation-delay: 3s; font-size: 24px; }
.particle-6 { top: 80%; left: 20%; animation-delay: 5s; font-size: 18px; }
.particle-7 { top: 10%; left: 50%; animation-delay: 1.5s; font-size: 14px; }
.particle-8 { top: 50%; left: 45%; animation-delay: 3.5s; font-size: 16px; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-40px) rotate(10deg) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(20px) rotate(-5deg) scale(0.9);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-20px) rotate(8deg) scale(1.05);
        opacity: 0.15;
    }
}

/* Hero Content - Centered */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 800px;
    padding: 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 194, 255, 0.12);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    color: var(--primary-cyan);
    font-weight: 500;
    width: fit-content;
    border: 1px solid rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(0, 194, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.2);
}

.badge-icon {
    background: var(--gradient-primary);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Title */
.hero-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-cyan);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 194, 255, 0.2);
    border-radius: 4px;
    z-index: -1;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { width: 100%; opacity: 0.6; }
    50% { width: 80%; opacity: 1; }
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.8;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* Rating Wrapper */
.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rating-wrapper .stars {
    color: #FFC107;
    font-size: 16px;
}

.rating-wrapper .stars i {
    margin-right: 2px;
}

.rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .rating-wrapper {
        width: 100%;
        justify-content: center;
        padding: 6px 12px;
    }

    .rating-wrapper .stars {
        font-size: 14px;
    }

    .rating-text {
        font-size: 12px;
    }

    .hero-badge {
        display: none;
    }

    .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .particle {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .shape-1 { width: 200px; height: 200px; }
    .shape-2 { width: 150px; height: 150px; }
    .shape-3 { width: 120px; height: 120px; }
    .shape-4 { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .shape {
        filter: blur(40px);
    }

    .shape-1 { width: 150px; height: 150px; }
    .shape-2 { width: 120px; height: 120px; }
    .shape-3 { width: 100px; height: 100px; }
    .shape-4 { width: 80px; height: 80px; }
}

/* Add this to your existing animations section */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
/* ============================================
   ABOUT SECTION - WITH FLOATING STATS
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* About Image */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating Stats Badges at Bottom */
.about-stats-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
    flex: 1;
    animation: statBadgeFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-badge:nth-child(1) { animation-delay: 0s; }
.stat-badge:nth-child(2) { animation-delay: 0.5s; }
.stat-badge:nth-child(3) { animation-delay: 1s; }

.stat-badge:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.2);
    border-color: var(--primary-cyan);
}

.stat-badge .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-badge .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes statBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Floating Icons */
.about-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
    animation: floatIcon 4s ease-in-out infinite;
    border: 1px solid rgba(0, 194, 255, 0.15);
    z-index: 5;
}

.float-icon-1 {
    top: 10%;
    right: -15px;
    animation-delay: 0s;
}

.float-icon-2 {
    bottom: 35%;
    right: -15px;
    animation-delay: 1.5s;
}

.float-icon-3 {
    top: 50%;
    left: -15px;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content .section-tag {
    align-self: flex-start;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 8px;
}

.about-description p strong {
    color: var(--primary-cyan);
}

/* Qualifications */
.about-qualifications {
    background: var(--cream);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-cyan);
}

.about-qualifications h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-qualifications h4 i {
    color: var(--primary-cyan);
}

.qualification-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qualification-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.qualification-list li i {
    color: var(--teal);
    font-size: 16px;
}

/* Achievements */
.about-achievements {
    background: rgba(123, 44, 191, 0.05);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-purple);
}

.about-achievements h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-achievements h4 i {
    color: var(--primary-purple);
}

.achievement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.achievement-list li i {
    color: #FFC107;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-image-wrapper {
        max-width: 400px;
    }
    
    .stat-badge {
        padding: 10px 16px;
        min-width: 80px;
    }
    
    .stat-badge .stat-number {
        font-size: 20px;
    }
    
    .stat-badge .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-wrapper {
        max-width: 100%;
    }
    
    .about-stats-badges {
        bottom: -15px;
        gap: 8px;
        width: 95%;
    }
    
    .stat-badge {
        padding: 10px 14px;
        min-width: 70px;
    }
    
    .stat-badge .stat-number {
        font-size: 18px;
    }
    
    .stat-badge .stat-label {
        font-size: 9px;
    }
    
    .about-floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .float-icon-1 {
        right: 10px;
        top: 10%;
    }
    
    .float-icon-2 {
        right: 10px;
        bottom: 30%;
    }
    
    .float-icon-3 {
        left: 10px;
        top: 45%;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-qualifications,
    .about-achievements {
        padding: 16px 18px;
    }
    
    .qualification-list li,
    .achievement-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-wrapper {
        gap: 40px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .about-stats-badges {
        bottom: -10px;
        gap: 6px;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .stat-badge {
        padding: 8px 10px;
        min-width: 60px;
        flex: 1;
    }
    
    .stat-badge .stat-number {
        font-size: 16px;
    }
    
    .stat-badge .stat-label {
        font-size: 8px;
        letter-spacing: 0.3px;
    }
    
    .about-floating-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .float-icon-1 {
        right: 5px;
        top: 8%;
    }
    
    .float-icon-2 {
        right: 5px;
        bottom: 28%;
    }
    
    .float-icon-3 {
        left: 5px;
        top: 42%;
    }
    
    .about-qualifications,
    .about-achievements {
        padding: 14px 14px;
    }
    
    .about-qualifications h4,
    .about-achievements h4 {
        font-size: 14px;
    }
    
    .qualification-list li,
    .achievement-list li {
        font-size: 12px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: #000000;
    padding: 8px 22px;
    border-radius: var(--radius-xl);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 194, 255, 0.15);
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FEATURES HIGHLIGHT
   ============================================ */
.features-highlight {
    padding: 60px 0;
    background: var(--white);
}
.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-highlight-card {
    background: var(--cream);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.08);
}
.feature-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
    background: var(--white);
}
.feature-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-cyan);
    transition: all var(--transition-fast);
}
.feature-highlight-card:hover .feature-highlight-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}
.feature-highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.feature-highlight-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--cream);
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.trust-content .section-tag { margin-bottom: 12px; }
.trust-content .section-title { margin-bottom: 20px; }
.trust-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}
.trust-list {
    list-style: none;
    margin-bottom: 30px;
}
.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-primary);
    font-weight: 500;
}
.trust-list li i {
    color: var(--teal);
    font-size: 20px;
}
.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.trust-feature-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-cyan);
    transition: all var(--transition-medium);
}
.trust-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.trust-feature-item i {
    color: var(--primary-cyan);
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}
.trust-feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.trust-feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CURRICULA SECTION - FLIP CARDS (FIXED)
   ============================================ */
.curricula-section {
    padding: 80px 0;
    background: var(--white);
}

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

/* Card Container - Fix for perspective */
.curricula-card {
    height: 380px;
    cursor: pointer;
    perspective: 1000px;
    position: relative;
}

.curricula-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
}

/* Front and Back faces - Fixed positioning */
.curricula-front,
.curricula-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Front Face - Image */
.curricula-front {
    background: var(--cream);
    border: 1px solid rgba(0, 194, 255, 0.08);
    transform: rotateY(0deg);
    z-index: 2;
}

.curricula-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.curricula-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.curricula-card:hover .curricula-image img {
    transform: scale(1.08);
}

.curricula-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    text-align: center;
}

.curricula-name {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Back Face - Content */
.curricula-back {
    background: var(--cream-dark);
    transform: rotateY(180deg);
    border: 2px solid rgba(0, 194, 255, 0.15);
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.curricula-back-content {
    width: 100%;
}

.curricula-back h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.curricula-divider {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 8px auto 16px;
    border-radius: 2px;
}

.curricula-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
}

.curricula-back ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.04);
}

.curricula-back ul li:last-child {
    border-bottom: none;
}

.curricula-back ul li i {
    color: var(--teal);
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
}

.curricula-flag {
    font-size: 36px;
    margin-top: 8px;
}

/* ============================================
   FLIP ON HOVER - DESKTOP
   ============================================ */
@media (hover: hover) {
    .curricula-card:hover .curricula-card-inner {
        transform: rotateY(180deg);
    }
}

/* ============================================
   FLIP ON SCROLL/CLICK - MOBILE
   ============================================ */
.curricula-card.flipped .curricula-card-inner {
    transform: rotateY(180deg);
}

/* ============================================
   RESPONSIVE - CURRICULA SECTION
   ============================================ */

@media (max-width: 1024px) {
    .curricula-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .curricula-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .curricula-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .curricula-card {
        height: 280px;
    }
    
    .curricula-name {
        font-size: 18px;
    }
    
    .curricula-back {
        padding: 20px 16px;
    }
    
    .curricula-back h3 {
        font-size: 17px;
    }
    
    .curricula-back ul li {
        font-size: 13px;
        padding: 4px 0;
    }
    
    .curricula-flag {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .curricula-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .curricula-card {
        height: 240px;
    }
    
    .curricula-overlay {
        padding: 20px 12px 14px;
    }
    
    .curricula-name {
        font-size: 15px;
    }
    
    .curricula-back {
        padding: 16px 12px;
    }
    
    .curricula-back h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .curricula-divider {
        width: 30px;
        margin: 4px auto 10px;
    }
    
    .curricula-back ul li {
        font-size: 11px;
        padding: 3px 0;
        gap: 6px;
    }
    
    .curricula-back ul li i {
        font-size: 11px;
        width: 14px;
    }
    
    .curricula-flag {
        font-size: 22px;
        margin-top: 4px;
    }
}

@media (max-width: 400px) {
    .curricula-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .curricula-card {
        height: 200px;
    }
    
    .curricula-name {
        font-size: 13px;
    }
    
    .curricula-overlay {
        padding: 14px 10px 10px;
    }
    
    .curricula-back {
        padding: 12px 10px;
    }
    
    .curricula-back h3 {
        font-size: 13px;
    }
    
    .curricula-back ul li {
        font-size: 10px;
        padding: 2px 0;
    }
    
    .curricula-back ul li i {
        font-size: 10px;
        width: 12px;
    }
    
    .curricula-flag {
        font-size: 18px;
        margin-top: 2px;
    }
    
    .curricula-divider {
        width: 20px;
        margin: 2px auto 6px;
        height: 2px;
    }
}

/* ============================================
   COURSES SECTION - HOMEPAGE
   ============================================ */

.courses-section {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Course Grid */
.courses-section .courses-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* Course Card */
.courses-section .course-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 194, 255, 0.08);
    position: relative;
    /* IMPORTANT: Remove opacity:0 here - let JS handle it */
}

.courses-section .course-card-full .course-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.courses-section .course-card-full:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.15);
    border-color: var(--primary-cyan);
}

/* Course Image */
.courses-section .course-image-full {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
}

.courses-section .course-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.courses-section .course-card-full:hover .course-image-full img {
    transform: scale(1.08);
}

.courses-section .course-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

/* Course Content */
.courses-section .course-content-full {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.courses-section .course-content-full .course-grade {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.courses-section .course-content-full h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.courses-section .course-card-full:hover .course-content-full h3 {
    color: var(--primary-cyan);
}

.courses-section .course-content-full p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.courses-section .course-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.courses-section .course-features span {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.courses-section .course-features span i {
    color: var(--teal);
    font-size: 14px;
}

/* Course Button */
.courses-section .course-btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.courses-section .course-btn span {
    position: relative;
    z-index: 2;
}

.courses-section .course-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.courses-section .course-btn:hover i {
    transform: translateX(6px);
}

/* ============================================
   COURSE CARD ANIMATIONS - HOMEPAGE
   ============================================ */

/* Base state - hidden */
.courses-section .course-card-full {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

/* Visible state */
.courses-section .course-card-full.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.courses-section .course-card-full:nth-child(1) { transition-delay: 0.05s; }
.courses-section .course-card-full:nth-child(2) { transition-delay: 0.1s; }
.courses-section .course-card-full:nth-child(3) { transition-delay: 0.15s; }
.courses-section .course-card-full:nth-child(4) { transition-delay: 0.2s; }
.courses-section .course-card-full:nth-child(5) { transition-delay: 0.25s; }
.courses-section .course-card-full:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE - HOMEPAGE COURSES
   ============================================ */

@media (max-width: 1024px) {
    .courses-section .courses-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .courses-section .courses-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .courses-section .course-image-full {
        height: 200px;
    }
    
    .courses-section .course-content-full {
        padding: 20px;
    }
    
    .courses-section .course-content-full h3 {
        font-size: 19px;
    }
    
    .courses-section .course-features {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .courses-section .course-image-full {
        height: 180px;
    }
    
    .courses-section .course-content-full {
        padding: 16px;
    }
    
    .courses-section .course-content-full h3 {
        font-size: 17px;
    }
    
    .courses-section .course-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   COURSES PAGE 
   ============================================ */

.courses-hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: rgba(207, 202, 131, 0.116);
    max-height: 75%;
}

.courses-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 180px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.courses-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.courses-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
}

.courses-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}

.courses-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   CIRCULAR ANIMATED ICONS
   ============================================ */

.courses-hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    position: relative;
    width: 400px;
    height: 400px;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 194, 255, 0.15);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-170px) rotate(calc(var(--i) * -60deg));
    animation: pulseIcon 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.icon-item:hover {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-170px) rotate(calc(var(--i) * -60deg)) scale(1.15);
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.3);
}

.icon-item i {
    font-size: 22px;
    color: var(--primary-cyan);
    margin-bottom: 2px;
}

.icon-item span {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-item:hover i {
    color: var(--gradient-primary);
}

@keyframes pulseIcon {
    0%, 100% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-170px) rotate(calc(var(--i) * -60deg)) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-170px) rotate(calc(var(--i) * -60deg)) scale(1.05); }
}

.icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 194, 255, 0.3);
    color: var(--text-white);
    animation: pulseCenter 2s ease-in-out infinite;
}

.icon-center i {
    font-size: 32px;
    margin-bottom: 4px;
}

.icon-center span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   ALL COURSES SECTION
   ============================================ */

.all-courses {
    padding: 80px 0;
    background: var(--cream);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 194, 255, 0.15);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Course Category Section */
.course-category-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.course-category-section:last-child {
    margin-bottom: 0;
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-cyan);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.category-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   COURSE GRID
   ============================================ */

.course-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* ============================================
   COURSE ITEM - WITH HOVER EFFECTS
   ============================================ */

.course-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 194, 255, 0.08);
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.course-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Hover Effect */
.course-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 194, 255, 0.15);
    border-color: var(--primary-cyan);
}

/* Course Item Image - Hover Zoom */
.course-item-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
}

.course-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-item:hover .course-item-image img {
    transform: scale(1.08);
}

.course-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Course Icon - Hover Effect */
.course-item-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-cyan);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.course-item:hover .course-item-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(10deg);
}

/* Course Title - Hover Color Change */
.course-item-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.course-item:hover .course-item-content h3 {
    color: var(--primary-cyan);
}

/* Course Item Content */
.course-item-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.course-item-grade {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.course-item-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

/* Course Features */
.course-item-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.course-item-features span {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-item-features span i {
    color: var(--teal);
    font-size: 14px;
}

/* Course Button - Hover Arrow Animation */
.course-item-btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.course-item-btn span {
    position: relative;
    z-index: 2;
}

.course-item-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.course-item-btn:hover i {
    transform: translateX(6px);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, #F0F7FF, #E8F4FD);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.04;
    transform: rotate(15deg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 194, 255, 0.15);
}

.cta-wrapper h2 {
    color: var(--text-primary);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-wrapper p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE - COMPLETE
   ============================================ */

@media (max-width: 1024px) {
    .courses-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .courses-hero-content {
        align-items: center;
    }
    
    .courses-hero-description {
        max-width: 100%;
    }
    
    .courses-hero-buttons {
        justify-content: center;
    }
    
    .icon-circle {
        width: 300px;
        height: 300px;
    }
    
    .icon-item {
        width: 60px;
        height: 60px;
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg));
    }
    
    .icon-item:hover {
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg)) scale(1.15);
    }
    
    @keyframes pulseIcon {
        0%, 100% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg)) scale(1); }
        50% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-130px) rotate(calc(var(--i) * -60deg)) scale(1.05); }
    }
    
    .icon-item i {
        font-size: 18px;
    }
    
    .icon-item span {
        font-size: 8px;
    }
    
    .icon-center {
        width: 80px;
        height: 80px;
    }
    
    .icon-center i {
        font-size: 26px;
    }
    
    .icon-center span {
        font-size: 10px;
    }
    
    .course-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .courses-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .courses-hero-title {
        font-size: 36px;
    }
    
    .courses-hero-description {
        font-size: 16px;
    }
    
    .courses-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .courses-hero-buttons .btn-primary,
    .courses-hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .icon-circle {
        width: 220px;
        height: 220px;
    }
    
    .icon-item {
        width: 50px;
        height: 50px;
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-100px) rotate(calc(var(--i) * -60deg));
    }
    
    .icon-item:hover {
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-100px) rotate(calc(var(--i) * -60deg)) scale(1.15);
    }
    
    @keyframes pulseIcon {
        0%, 100% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-100px) rotate(calc(var(--i) * -60deg)) scale(1); }
        50% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-100px) rotate(calc(var(--i) * -60deg)) scale(1.05); }
    }
    
    .icon-item i {
        font-size: 16px;
    }
    
    .icon-item span {
        font-size: 7px;
    }
    
    .icon-center {
        width: 60px;
        height: 60px;
    }
    
    .icon-center i {
        font-size: 20px;
    }
    
    .icon-center span {
        font-size: 8px;
    }
    
    .course-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .course-item-image {
        height: 200px;
    }
    
    .course-item-content {
        padding: 20px;
    }
    
    .course-item-content h3 {
        font-size: 19px;
    }
    
    .course-item-features {
        flex-direction: column;
        gap: 6px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .all-courses {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .courses-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .courses-hero-title {
        font-size: 28px;
    }
    
    .courses-hero-description {
        font-size: 14px;
    }
    
    .icon-circle {
        width: 180px;
        height: 180px;
    }
    
    .icon-item {
        width: 40px;
        height: 40px;
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg));
    }
    
    .icon-item:hover {
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg)) scale(1.15);
    }
    
    @keyframes pulseIcon {
        0%, 100% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg)) scale(1); }
        50% { transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-80px) rotate(calc(var(--i) * -60deg)) scale(1.05); }
    }
    
    .icon-item i {
        font-size: 14px;
    }
    
    .icon-item span {
        font-size: 6px;
    }
    
    .icon-center {
        width: 50px;
        height: 50px;
    }
    
    .icon-center i {
        font-size: 16px;
    }
    
    .icon-center span {
        font-size: 7px;
    }
    
    .course-item-image {
        height: 180px;
    }
    
    .course-item-content {
        padding: 16px;
    }
    
    .course-item-content h3 {
        font-size: 17px;
    }
    
    .course-item-btn {
        width: 100%;
        justify-content: center;
    }
    
    .course-item-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: 12px;
        left: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-wrapper h2 {
        font-size: 24px;
    }
    
    .cta-wrapper p {
        font-size: 16px;
    }
}

/* ============================================
   FIX: Force Course Items to Show
   ============================================ */

/* Force all course items to be visible */
.course-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
}

/* Ensure grid is always visible */
.course-grid-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 10px !important;
}

@media (max-width: 768px) {
    .course-grid-wrapper {
        grid-template-columns: 1fr !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .course-grid-wrapper {
        max-width: 100% !important;
        gap: 16px !important;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================
   CONTACT REASONS SECTION
   ============================================ */
.contact-reasons {
    padding: 80px 0;
    background: var(--cream);
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.08);
}
.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}
.reason-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-cyan);
    transition: all var(--transition-fast);
}
.reason-card:hover .reason-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}
.reason-card h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.reason-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 194, 255, 0.06);
    transition: all var(--transition-medium);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}
.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
    transition: all var(--transition-fast);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}
.faq-question:hover h3 { color: var(--primary-cyan); }
.faq-icon {
    font-size: 16px;
    color: var(--primary-cyan);
    transition: transform var(--transition-fast);
    min-width: 24px;
    text-align: center;
}
.faq-item.active .faq-question h3 { color: var(--primary-cyan); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}
.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
}
.cta-wrapper {
    background: linear-gradient(135deg, #F0F7FF, #E8F4FD);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 194, 255, 0.1);
}
.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.04;
    transform: rotate(15deg);
}
.cta-content { position: relative; z-index: 1; }
.cta-tag {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 194, 255, 0.15);
}
.cta-wrapper h2 {
    color: var(--text-primary);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-wrapper p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}
.cta-form .form-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.cta-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(0, 194, 255, 0.15);
    border-radius: var(--radius-xl);
    background: var(--white);
    color: var(--text-primary);
    font-size: 16px;
    transition: all var(--transition-fast);
}
.cta-form input::placeholder { color: var(--text-light); }
.cta-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
}
.cta-form .btn-primary {
    background: var(--gradient-primary);
    white-space: nowrap;
}
.cta-form .btn-primary:hover { box-shadow: 0 8px 30px rgba(0, 194, 255, 0.4); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
    border-top: 1px solid rgba(0, 194, 255, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    
}
.footer-logo img { height: 70p; min-width: 50px; border-radius: 10px; }
.footer-col p {
    line-height: 1.8;
    margin-bottom: 16px;
    border-radius: 8px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}
.footer-socials a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}
.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-fast);
}
.footer-col ul li a:hover {
    color: var(--primary-cyan-light);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
}
.footer-contact li i {
    color: var(--primary-cyan-light);
    width: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
}
.footer-bottom i {
    color: var(--primary-cyan-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.6s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.8s; }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SCROLL ANIMATIONS FOR COURSES
   ============================================ */
.course-card-full {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.course-card-full.visible {
    opacity: 1;
    transform: translateY(0);
}
.course-card-full:nth-child(1) { transition-delay: 0.1s; }
.course-card-full:nth-child(2) { transition-delay: 0.2s; }
.course-card-full:nth-child(3) { transition-delay: 0.3s; }
.course-card-full:nth-child(4) { transition-delay: 0.4s; }
.course-card-full:nth-child(5) { transition-delay: 0.5s; }
.course-card-full:nth-child(6) { transition-delay: 0.6s; }

.category-header {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.category-header.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--cream);
    max-height: 75%;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
}
.about-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}
.about-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.about-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-values {
    padding: 80px 0;
    background: var(--white);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.about-value-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.06);
}
.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}
.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary-cyan);
    transition: all var(--transition-fast);
}
.about-value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}
.about-value-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-value-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.about-vision {
    padding: 80px 0;
    background: var(--cream);
}
.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-vision-content .section-tag { margin-bottom: 12px; }
.about-vision-content .section-title { margin-bottom: 20px; }
.about-vision-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.vision-quote {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-cyan);
    margin-top: 24px;
}
.vision-quote i {
    color: var(--primary-cyan);
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}
.vision-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.vision-quote .quote-author {
    font-weight: 600;
    color: var(--primary-cyan);
}
.about-vision-image {
    position: relative;
}
.about-vision-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 194, 255, 0.06);
}
.vision-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyan);
    display: block;
}
.vision-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.why-card {
    background: var(--cream);
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.06);
    position: relative;
    overflow: hidden;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}
.why-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 194, 255, 0.06);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}
.why-card h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */
.pricing-hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--cream);
    max-height: 75%;
}
.pricing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.pricing-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pricing-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
}
.pricing-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}
.pricing-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grade-nav {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 194, 255, 0.08);
    position: sticky;
    top: 80px;
    z-index: 99;
    backdrop-filter: blur(10px);
}
.grade-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.grade-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 1px solid rgba(0, 194, 255, 0.08);
    cursor: pointer;
}
.grade-nav-item:hover {
    background: rgba(0, 194, 255, 0.06);
    color: var(--primary-cyan);
    transform: translateY(-2px);
}
.grade-nav-item i {
    font-size: 18px;
    color: var(--primary-cyan);
}
.grade-nav-item.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
}
.grade-nav-item.active i { color: var(--text-white); }

.pricing-section {
    padding: 80px 0;
    scroll-margin-top: 160px;
    background: var(--cream);
}

/* ============================================
   PRICING GRID — 3-card sections (Adult + Group)
   Must come AFTER .pricing-grid to override it
   ============================================ */
.pricing-grid.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid.pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .pricing-grid.pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
.pricing-section:nth-child(even) { background: var(--white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}
.pricing-card-popular {
    border: 2px solid var(--primary-cyan);
    transform: scale(1.02);
}
.pricing-card-popular:hover {
    transform: scale(1.02) translateY(-8px);
}
.pricing-popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}
.pricing-card-header {
    padding: 24px 18px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 194, 255, 0.06);
}
.pricing-badge {
    display: inline-block;
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.pricing-card-header h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pricing-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
}
.pricing-price .amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-cyan);
}
.pricing-price .per-class {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}
.pricing-price .original-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}
.pricing-price .save-badge {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
}
.pricing-duration {
    font-size: 14px;
    color: var(--text-secondary);
}
.pricing-card-body {
    padding: 18px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 194, 255, 0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i {
    color: var(--teal);
    font-size: 16px;
    flex-shrink: 0;
}

.adult-pricing .pricing-card,
.group-pricing .pricing-card {
    max-width: 350px;
    margin: 0 auto;
}
.adult-pricing,
.group-pricing {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   CONTACT PAGE - COMPLETE FIX
   ============================================ */

/* Contact Hero */
.contact-hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--cream);
    max-height: 75%;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
}

.contact-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}

.contact-hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info-hero .phone {
    font-weight: 700;
    color: var(--primary-cyan);
    font-size: 18px;
}

.contact-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-info-side h2 {
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-cyan);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.contact-info-item .info-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.contact-info-item .info-value {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
}

.contact-info-item .info-value.phone,
.contact-info-item .info-value.email {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-info-social {
    margin-top: 8px;
}

.contact-info-social .info-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 194, 255, 0.06);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.contact-form-card h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group .required {
    color: var(--primary-cyan);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 194, 255, 0.12);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--cream);
    color: var(--text-primary);
    width: 100%;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.08);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-cyan);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.form-checkbox label a {
    color: var(--primary-cyan);
    font-weight: 500;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 18px;
    margin-top: 8px;
}

.btn-submit.loading {
    opacity: 0.7;
}

/* Form Messages */
.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.form-message.success {
    background: rgba(20, 184, 166, 0.08);
    color: var(--teal);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.form-message.info {
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 194, 255, 0.15);
}

/* ============================================
   CONTACT PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-hero-content {
        align-items: center;
    }
    
    .contact-hero-description {
        max-width: 100%;
    }
    
    .contact-hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-hero-buttons .btn-primary,
    .contact-hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-hero-image {
        order: -1;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info-items {
        gap: 16px;
    }
    
    .contact-info-side h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .contact-info-description {
        text-align: center;
    }
    
    .contact-info-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info-social .info-label {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-info-hero {
        align-items: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 16px;
    }
    
    .contact-form-card h3 {
        font-size: 20px;
    }
    
    .contact-info-side h2 {
        font-size: 24px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-item .info-value {
        font-size: 13px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 14px;
    }
}

/* ============================================
   CONTACT REASONS SECTION
   ============================================ */
.contact-reasons {
    padding: 80px 0;
    background: var(--cream);
}

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

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.08);
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-cyan);
    transition: all var(--transition-fast);
}

.reason-card:hover .reason-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.reason-card h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reason-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-reasons {
        padding: 50px 0;
    }
    .reason-card {
        padding: 20px;
    }
    .reason-card h6 {
        font-size: 16px;
    }
}

/* ============================================
   CONTACT PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .contact-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-hero-content {
        align-items: center;
    }
    
    .contact-hero-description {
        max-width: 100%;
    }
    
    .contact-hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-hero-buttons .btn-primary,
    .contact-hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-hero-image {
        order: -1;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-info-items {
        gap: 16px;
    }
    
    .contact-info-side h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .contact-info-description {
        text-align: center;
    }
    
    .contact-info-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info-social .info-label {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-info-hero {
        align-items: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 16px;
    }
    
    .contact-form-card h3 {
        font-size: 20px;
    }
    
    .contact-info-side h2 {
        font-size: 24px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-item .info-value {
        font-size: 13px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 14px;
    }
}

/* ============================================
   CONTACT REASONS SECTION (Already exists, keeping for reference)
   ============================================ */
.contact-reasons {
    padding: 80px 0;
    background: var(--cream);
}

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

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 194, 255, 0.08);
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-cyan);
    transition: all var(--transition-fast);
}

.reason-card:hover .reason-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.reason-card h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.reason-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-reasons {
        padding: 50px 0;
    }
    .reason-card {
        padding: 20px;
    }
    .reason-card h6 {
        font-size: 16px;
    }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 42px; }
    .features-highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .curricula-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid-full { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 800px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-side { order: 2; }
    .contact-form-wrapper { order: 1; }
    .about-hero-title,
    .pricing-hero-title,
    .contact-hero-title,
    .courses-hero-title { font-size: 40px; }
}



@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .btn-large { padding: 12px 24px; font-size: 16px; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .about-hero-title,
    .pricing-hero-title,
    .contact-hero-title,
    .courses-hero-title { font-size: 28px; }
    .about-hero-description,
    .pricing-hero-description,
    .contact-hero-description,
    .courses-hero-description { font-size: 16px; }
    .about-hero-buttons,
    .pricing-hero-buttons,
    .contact-hero-buttons,
    .courses-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .about-hero-buttons .btn-primary,
    .about-hero-buttons .btn-secondary,
    .pricing-hero-buttons .btn-primary,
    .pricing-hero-buttons .btn-secondary,
    .contact-hero-buttons .btn-primary,
    .contact-hero-buttons .btn-secondary,
    .courses-hero-buttons .btn-primary,
    .courses-hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .contact-info-hero { align-items: center; text-align: center; }
    .contact-form-wrapper { padding: 16px; }
    .contact-form-card h3 { font-size: 20px; }
    .social-icons { justify-content: center; }
    .vision-stats { grid-template-columns: 1fr; gap: 16px; }
    .pricing-price .amount { font-size: 32px; }
    .pricing-card-header h3 { font-size: 18px; }
    .category-nav-item { padding: 6px 14px; font-size: 11px; gap: 6px; }
    .category-nav-item i { font-size: 12px; }
    .course-image-full { height: 180px; }
    .course-content-full { padding: 16px; }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444 !important;
}

.form-group input:focus.error,
.form-group select:focus.error,
.form-group textarea:focus.error {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-group .error-message {
    color: #EF4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group .error-message.show {
    display: block;
}
/* Form message styles */
.form-message.info {
    background: rgba(0, 194, 255, 0.08);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 194, 255, 0.15);
}

/* ============================================
   MARQUEE - PAUSE ON HOVER
   ============================================ */
.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

/* Gradient fade edges on marquee */
.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, #00C2FF, transparent);
}

.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, #7B2CBF, transparent);
}

/* ============================================
   FOUNDER STORY / WHY I CREATED SECTION
   ============================================ */
.founder-story {
    padding: 80px 0;
    background: var(--white);
}

.founder-story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.founder-story-content .section-tag {
    margin-bottom: 12px;
}

.founder-story-content .section-title {
    margin-bottom: 30px;
}

.founder-intro {
    margin-bottom: 30px;
}

.founder-intro .founder-greeting {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.founder-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.founder-journey {
    margin-bottom: 30px;
    padding: 24px 30px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-cyan);
}

.founder-journey h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.founder-journey p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.founder-journey p:last-child {
    margin-bottom: 0;
}

.founder-vision {
    margin-bottom: 30px;
}

.founder-vision h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.founder-vision p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.founder-vision-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.founder-vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.founder-vision-list li i {
    color: var(--teal);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.founder-vision-list li strong {
    color: var(--text-primary);
}

.founder-quote {
    background: linear-gradient(135deg, #F0F7FF, #E8F4FD);
    padding: 30px 35px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    position: relative;
}

.founder-quote i {
    color: var(--primary-cyan);
    font-size: 28px;
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

.founder-quote blockquote p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.founder-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-cyan);
    font-style: normal;
}

.founder-approach {
    margin-bottom: 30px;
}

.founder-approach h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.founder-approach > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.approach-item {
    background: var(--cream);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 255, 0.06);
}

.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 194, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.approach-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.approach-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.founder-beliefs {
    margin-bottom: 30px;
}

.founder-beliefs h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.belief-card {
    background: var(--cream);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 255, 0.06);
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.belief-card i {
    font-size: 28px;
    color: var(--primary-cyan);
    margin-bottom: 12px;
    display: block;
}

.belief-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.founder-success {
    margin-bottom: 30px;
}

.founder-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 255, 0.06);
}

.success-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-cyan);
}

.success-item i {
    font-size: 22px;
    color: var(--teal);
    flex-shrink: 0;
}

.success-item span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.founder-qualifications {
    margin-bottom: 30px;
    padding: 30px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 194, 255, 0.06);
}

.founder-qualifications h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.qual-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
}

.qual-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.qual-col ul {
    list-style: none;
    padding: 0;
}

.qual-col ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 194, 255, 0.06);
}

.qual-col ul li:last-child {
    border-bottom: none;
}

.founder-closing {
    margin-top: 10px;
}

.closing-box {
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: #fff;
}

.closing-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.closing-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.closing-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.closing-values span {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.closing-quote {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.closing-quote p {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.closing-signature {
    font-size: 18px !important;
    font-weight: 600;
    margin-top: 8px !important;
}

.closing-signature span {
    font-weight: 400;
    font-size: 15px;
    opacity: 0.8;
}

/* ============================================
   FOUNDER STORY - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .belief-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .success-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-story {
        padding: 50px 0;
    }
    .founder-journey {
        padding: 20px;
    }
    .founder-quote {
        padding: 20px;
    }
    .founder-quote blockquote p {
        font-size: 17px;
    }
    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .belief-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .closing-box {
        padding: 24px 20px;
    }
    .closing-box h3 {
        font-size: 20px;
    }
    .closing-values {
        flex-direction: column;
        align-items: center;
    }
    .closing-values span {
        width: 100%;
        text-align: center;
    }
    .founder-story-content .section-title {
        font-size: 28px;
    }
    .founder-vision-list li {
        font-size: 14px;
    }
    .success-item {
        padding: 12px 16px;
    }
    .success-item span {
        font-size: 13px;
    }
    .founder-qualifications {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .founder-intro .founder-greeting {
        font-size: 17px;
    }
    .approach-item {
        padding: 18px 14px;
    }
    .approach-item h4 {
        font-size: 14px;
    }
    .approach-item p {
        font-size: 13px;
    }
    .belief-card {
        padding: 18px 14px;
    }
    .belief-card p {
        font-size: 13px;
    }
    .closing-box p {
        font-size: 14px;
    }
    .closing-signature {
        font-size: 16px !important;
    }
    .founder-quote blockquote p {
        font-size: 15px;
    }
}

/* ============================================
   PRIVACY POLICY PAGE - SIMPLE
   ============================================ */

/* Privacy Hero */
.privacy-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--cream);
}

.privacy-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.privacy-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.privacy-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
}

.privacy-hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}

.privacy-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-secondary);
}

.privacy-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-hero-meta i {
    color: var(--primary-cyan);
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.08);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.privacy-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(135deg, #00C2FF, #7B2CBF);
    display: inline-block;
    margin-right: 12px;
    border-radius: 2px;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px 0;
}

.privacy-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.privacy-section ul li i {
    color: var(--teal);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.privacy-notice {
    background: rgba(0, 194, 255, 0.06);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.privacy-notice i {
    color: var(--primary-cyan);
    font-size: 20px;
    flex-shrink: 0;
}

.privacy-notice p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
}

/* Privacy Contact */
.privacy-contact {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 194, 255, 0.08);
}

.privacy-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.privacy-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 194, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.privacy-contact-link:hover {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.privacy-contact-link i {
    color: var(--primary-cyan);
    font-size: 18px;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 194, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.privacy-footer i {
    color: var(--primary-cyan);
}

/* ============================================
   PRIVACY POLICY - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .privacy-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .privacy-hero-content {
        align-items: center;
    }
    .privacy-hero-description {
        max-width: 100%;
    }
    .privacy-hero-meta {
        justify-content: center;
    }
    .privacy-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .privacy-hero-title {
        font-size: 32px;
    }
    .privacy-content {
        padding: 50px 0;
    }
    .privacy-section h2 {
        font-size: 24px;
    }
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .privacy-contact {
        padding: 20px;
    }
    .privacy-contact-info {
        flex-direction: column;
    }
    .privacy-contact-link {
        justify-content: center;
    }
    .privacy-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero-title {
        font-size: 28px;
    }
    .privacy-hero-description {
        font-size: 16px;
    }
    .privacy-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }
    .privacy-content {
        padding: 30px 0;
    }
    .privacy-section h2 {
        font-size: 20px;
    }
    .privacy-section ul li {
        font-size: 14px;
    }
    .privacy-contact {
        padding: 16px;
    }
    .privacy-footer {
        font-size: 12px;
    }
}


/* ============================================
   VIDEO TESTIMONIALS SECTION
   ============================================ */
.video-testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* Video Card */
.video-testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 194, 255, 0.08);
    min-height: 550px;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #1A1A2E;
    overflow: hidden;
    cursor: pointer;
    min-height: 500px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper video::-webkit-media-controls {
    opacity: 0.8;
}

/* Play Icon Overlay */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 194, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.video-wrapper:hover .video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Info */
.video-testimonial-info {
    padding: 20px 24px 24px;
}

.video-testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.video-testimonial-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
    font-style: italic;
}

.video-testimonial-info .student-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-cyan);
}

/* CTA Button */
.video-testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   VIDEO TESTIMONIALS - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 50px 0;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-testimonial-info {
        padding: 16px 18px 18px;
    }
    
    .video-testimonial-info h4 {
        font-size: 16px;
    }
    
    .video-testimonial-info p {
        font-size: 13px;
    }
    
    .video-testimonials-cta {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .video-testimonials-grid {
        max-width: 100%;
    }
    
    .video-play-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .video-testimonial-info {
        padding: 14px 14px 16px;
    }
    
    .video-testimonial-info h4 {
        font-size: 15px;
    }
    
    .video-testimonial-info p {
        font-size: 12px;
    }
    
    .video-testimonials-cta .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ENROLLMENT MODAL
   ============================================ */
.enroll-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.enroll-modal-overlay.active {
    display: flex;
}

.enroll-modal {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.enroll-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(0, 194, 255, 0.1);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enroll-modal-close:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(90deg);
}

.enroll-modal-header {
    margin-bottom: 20px;
    padding-right: 40px;
}

.enroll-modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.enroll-modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Plan Summary */
.enroll-plan-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #F0F7FF, #E8F4FD);
    border: 1px solid rgba(0, 194, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.plan-summary-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plan-summary-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.plan-summary-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-summary-grade {
    font-size: 12px;
    color: var(--primary-cyan);
    font-weight: 600;
}

.plan-summary-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.plan-summary-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-cyan);
}

.plan-summary-price #summaryCurrency {
    font-size: 14px;
    font-weight: 600;
    margin-right: 4px;
}

/* Enroll form reuses existing .form-group styles */
.enroll-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.enroll-form .form-group {
    margin-bottom: 16px;
}

.btn-pay {
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
}

.enroll-secure-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.enroll-secure-note i {
    color: var(--teal);
}

/* Responsive */
@media (max-width: 600px) {
    .enroll-modal {
        padding: 26px 20px;
        max-height: 95vh;
    }
    .enroll-form .form-row {
        grid-template-columns: 1fr;
    }
    .enroll-modal-header h2 {
        font-size: 20px;
    }
    .plan-summary-name {
        font-size: 15px;
    }
    .plan-summary-price {
        font-size: 20px;
    }
}

/* ============================================
   SECTION TAG OVERRIDE (must be last)
   ============================================ */
.section-tag {
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 8px 22px !important;
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
    z-index: 2147483647 !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.whatsapp-float:hover {
    background: #1EBE5D !important;
    color: #ffffff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3) !important;
}

.whatsapp-float i,
.whatsapp-float i::before {
    color: #ffffff !important;
    font-size: 32px !important;
    line-height: 1 !important;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 54px !important;
        height: 54px !important;
        font-size: 28px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .whatsapp-float i,
    .whatsapp-float i::before {
        font-size: 28px !important;
    }
}


/* ============================================
   FREE DEMO MODAL
   ============================================ */
.demo-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.demo-modal-overlay.active {
    display: flex;
}

.demo-modal {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: demoModalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes demoModalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(0, 194, 255, 0.1);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-close:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotate(90deg);
}

.demo-modal-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 0 30px;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 194, 255, 0.1);
    color: var(--primary-cyan);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.demo-modal-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.demo-modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demo form layout */
.demo-form {
    display: flex;
    flex-direction: column;
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.demo-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.demo-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-form .form-group .required {
    color: var(--primary-cyan);
}

.demo-form .form-group input,
.demo-form .form-group select,
.demo-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 194, 255, 0.12);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--cream);
    color: var(--text-primary);
    width: 100%;
}

.demo-form .form-group input:focus,
.demo-form .form-group select:focus,
.demo-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.08);
    background: #fff;
}

.demo-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.demo-form .form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.demo-form .form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-cyan);
    cursor: pointer;
    flex-shrink: 0;
}

.demo-form .form-checkbox label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.demo-form .form-checkbox label a {
    color: var(--primary-cyan);
    font-weight: 500;
}

.demo-secure-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-secure-note i {
    color: var(--teal);
}

@media (max-width: 600px) {
    .demo-modal {
        padding: 26px 20px;
        max-height: 95vh;
    }
    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
    .demo-modal-header {
        padding: 0 20px;
    }
    .demo-modal-header h2 {
        font-size: 20px;
    }
    .demo-modal-header p {
        font-size: 13px;
    }
}



/* ============================================
   MOBILE NAV — HARD CONTAINMENT (safe for sticky)
   ============================================ */
@media (max-width: 767px) {
    /* DO NOT put overflow:hidden on .main-header — it kills position:sticky */

    .main-header .nav-menu {
        contain: layout paint style;
        will-change: transform;
        max-width: 100vw;
    }

    section,
    .container,
    .navbar,
    .marquee-bar,
    .top-bar {
        max-width: 100%;
    }
}