 :root {
            --bg-dark: #050811;
            --bg-card: rgba(255, 255, 255, 0.02);
            --border-glass: rgba(255, 255, 255, 0.07);
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            
            /* Logo Extracted Colors */
            --primary: #008cd3;         
            --primary-glow: rgba(0, 140, 211, 0.15);
            --secondary: #512493;        
            --secondary-glow: rgba(81, 36, 147, 0.15);
            --brand-orange: #f8931d;     
            --brand-green: #008145;    
            
            --font-roboto: 'Roboto', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-roboto);
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: var(--primary);
            color: #fff;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #ffffff;
        }

        p {
            color: var(--text-muted);
            line-height: 1.7;
            font-weight: 300;
        }

        section {
            padding: 60px 0;
            position: relative;
            z-index: 2;
        }

        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--brand-orange), var(--brand-green));
            z-index: 9999;
            transition: width 0.1s linear;
        }

        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(10px);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            transform: translateY(10px);
        }
        
        #back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #back-to-top:hover {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 0 20px var(--primary-glow);
            transform: translateY(-5px);
        }

        .gradient-blob {
            position: absolute;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(140px);
            z-index: 1;
            opacity: 0.35;
            mix-blend-mode: screen;
            animation: floatBlob 20s infinite alternate ease-in-out;
        }

        .blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; left: -100px; }
        .blob-2 { width: 600px; height: 600px; background: var(--secondary); top: 40%; right: -200px; animation-delay: -5s; }
        .blob-3 { width: 400px; height: 400px; background: var(--brand-orange); bottom: 10%; left: -100px; animation-delay: -10s; }

        @keyframes floatBlob {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(60px, 40px) scale(1.15); }
            100% { transform: translate(-40px, 80px) scale(0.9); }
        }

        .wave-divider {
            position: absolute;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 1;
        }
        .wave-bottom { bottom: 0; }
        .wave-top { top: 0; }
        .wave-divider svg {
            display: block;
            width: 100%;
            height: 60px;
        }

        /* --- PREMIUM CARD ARCHITECTURE --- */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px) saturate(120%);
            -webkit-backdrop-filter: blur(16px) saturate(120%);
            border: 1px solid var(--border-glass);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            
            /* Core Entrance Variables */
            opacity: 0;
            transform: translateY(40px) scale(0.96);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        border-color 0.3s ease, 
                        box-shadow 0.3s ease;
        }

        .glass-card.card-revealed {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                450px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
                rgba(255, 255, 255, 0.04),
                transparent 40%
            );
            z-index: 1;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-6px) scale(1.01) !important;
            border-color: rgba(0, 140, 211, 0.35);
            box-shadow: 0 20px 40px rgba(5, 8, 17, 0.7), 0 0 30px rgba(0, 140, 211, 0.05);
        }

        /* --- BRANDED RE-COLOR BUTTONS --- */
        .btn-premium {
            font-weight: 500;
            padding: 14px 32px;
            border-radius: 100px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            z-index: 1;
        }

        .btn-premium-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #006eb4 100%);
            color: #fff;
            box-shadow: 0 4px 20px rgba(0, 140, 211, 0.3);
        }

        .btn-premium-primary::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            opacity: 0;
            z-index: -1;
            transition: var(--transition-smooth);
        }

        .btn-premium-primary:hover::after { opacity: 1; }
        .btn-premium-primary:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(81, 36, 147, 0.4);
        }

        .btn-premium-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(10px);
        }

        .btn-premium-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* --- NAVIGATION --- */
        .navbar-premium {
            background: transparent;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            border-bottom: 1px solid transparent;
            padding: 24px 0;
            transition: var(--transition-smooth);
            z-index: 999;
        }

        .navbar-premium.scrolled {
            background: rgba(5, 8, 17, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            padding: 14px 0;
        }

        .navbar-brand-premium img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .navbar-premium .nav-link {
            color: var(--text-muted);
            font-size: 0.99rem;
            font-weight: 900;
            padding: 6px 16px !important;
            transition: var(--transition-fast);
            position: relative;
        }

        .navbar-premium .nav-link:hover,
        .navbar-premium .nav-link.active { color: #fff; }
        .navbar-premium .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%; width: 0; height: 2px;
            background: var(--primary);
            transition: var(--transition-fast);
            transform: translateX(-50%);
        }

        .navbar-premium .nav-link:hover::after,
        .navbar-premium .nav-link.active::after { width: 60%; }

        /* --- HERO BANNER --- */
        .hero-section {
            padding: 100px 0 10px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg-grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
            background-size: 50px 50px;
            background-position: center center;
            mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
            z-index: 0;
        }

        .hero-badge {
            background: rgba(0, 140, 211, 0.08);
            border: 1px solid rgba(0, 140, 211, 0.2);
            padding: 8px 18px;
            border-radius: 100px;
            color: #7dd3fc;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            backdrop-filter: blur(5px);
        }

        .hero-badge i { color: var(--brand-orange); animation: pulse 2s infinite; }
        @keyframes pulse { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } }

        .hero-title { font-size: 4rem; line-height: 1.15; font-weight: 800; margin-bottom: 24px; }
        @media (max-width: 991px) { .hero-title { font-size: 2.8rem; } }

        .text-gradient-premium {
            background: linear-gradient(135deg, #fff 40%, var(--text-muted) 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-gradient-color {
            background: linear-gradient(90deg, var(--primary), var(--secondary) 40%, var(--brand-orange) 80%, var(--brand-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .parallax-wrapper { position: relative; z-index: 2; perspective: 1000px; }
        .hero-visual-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid var(--border-glass);
            border-radius: 32px;
            padding: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
            transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
            transform-style: preserve-3d;
        }

        .hero-visual-card img { border-radius: 20px; width: 100%; height: auto; display: block; }

        /* --- BRANDED TICKER DISPLAY --- */
        .trusted-section {
            padding: 40px 0;
            border-top: 1px solid var(--border-glass);
            border-bottom: 1px solid var(--border-glass);
            background: rgba(255, 255, 255, 0.01);
        }

        .ticker-wrap { overflow: hidden; width: 100%; }
        .ticker { display: flex; width: 200%; animation: tickerAnimation 25s linear infinite; }
        .ticker-item {
            flex: 1; display: flex; justify-content: center; align-items: center;
            font-size: 1.25rem; font-weight: 600; color: rgba(255, 255, 255, 0.2);
            transition: var(--transition-fast); gap: 10px;
        }
        @keyframes tickerAnimation {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- SECTION HEADERS --- */
        .section-tag {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--primary);
            margin-bottom: 16px;
            display: inline-block;
        }

        .section-title { font-size: 2.5rem; margin-bottom: 20px; }
        .section-subtitle { font-size: 1.1rem; max-width: 600px; margin: 0 auto 60px auto; }

        /* --- MODULES & HOVERS --- */
        .feature-icon-box {
            width: 60px; height: 60px; border-radius: 16px;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid var(--border-glass);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: var(--primary); margin-bottom: 24px;
            transition: var(--transition-smooth); position: relative; z-index: 2;
        }

        .glass-card:hover .feature-icon-box {
            color: #fff; background: var(--primary);
            box-shadow: 0 0 20px var(--primary-glow); transform: scale(1.05) rotate(5deg);
        }

        .glass-card h3, .glass-card p { position: relative; z-index: 2; }

        .course-card { padding: 0; }
        .course-img-wrapper { position: relative; overflow: hidden; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 220px; }
        .course-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .course-card:hover .course-img-wrapper img { transform: scale(1.08); }
        .course-badge {
            position: absolute; top: 20px; right: 20px;
            background: rgba(5, 8, 17, 0.8); backdrop-filter: blur(10px);
            border: 1px solid var(--border-glass); padding: 6px 14px;
            border-radius: 100px; font-size: 0.75rem; font-weight: 500; z-index: 2;
        }

        .course-body { padding: 30px; position: relative; z-index: 2; }
        .course-meta { font-size:12px; display: flex; gap: 12px; color: var(--text-muted); margin-bottom: 14px; }
        .course-meta span i { color: var(--brand-orange); margin-right: 4px; }
        .course-footer { border-top: 1px solid var(--border-glass); padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 3; }
        .course-price { font-size: 1.25rem; font-weight: 700; color: #fff; }

        .highlight-item { display: flex; gap: 20px; margin-bottom: 30px; }
        .highlight-number {
            font-size: 1.2rem; font-weight: 700; color: var(--brand-orange);
            background: rgba(248, 147, 29, 0.1); border: 1px solid rgba(248, 147, 29, 0.2);
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }

        .stats-section { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0, 140, 211, 0.02) 50%, rgba(255,255,255,0) 100%); }
        .stat-number {
            font-size: 3.5rem; font-weight: 800; margin-bottom: 8px;
            background: linear-gradient(135deg, #fff, var(--text-muted));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        /* --- CAROUSEL --- */
        .carousel-premium { padding: 0 40px; }
        .testimonial-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 24px; padding: 40px; margin: 10px; }
        .user-profile { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
        .user-profile img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
        .user-info h5 { margin: 0; font-size: 1rem; }
        .user-info span { font-size: 0.85rem; color: var(--text-muted); }
        .carousel-indicators-premium { bottom: -60px !important; }
        .carousel-indicators-premium [data-bs-target] { width: 10px; height: 10px; border-radius: 50%; background-color: var(--text-muted); border: none; opacity: 0.3; transition: var(--transition-fast); }
        .carousel-indicators-premium .active { width: 28px; border-radius: 10px; background-color: var(--primary); opacity: 1; }

        /* --- FAQ ACCORDION --- */
        .accordion-premium .accordion-item {
            background: var(--bg-card); border: 1px solid var(--border-glass) !important;
            border-radius: 16px !important; margin-bottom: 16px; overflow: hidden; transition: var(--transition-fast);
        }
        .accordion-premium .accordion-item:hover { border-color: rgba(255,255,255,0.12) !important; }
        .accordion-premium .accordion-button { background: transparent; color: #fff; font-weight: 600; padding: 24px; box-shadow: none !important; font-size: 1.05rem; }
        .accordion-premium .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(255,255,255,0.01); }
        .accordion-premium .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); transition: var(--transition-smooth); }
        .accordion-premium .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008cd3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
        .accordion-premium .accordion-body { padding: 0 24px 24px 24px; color: var(--text-muted); font-weight: 300; font-size: 0.95rem; }

        /* --- CTA BANNER --- */
        .cta-section { padding: 60px 0 120px 0; }
        .cta-box {
            background: radial-gradient(circle at top right, rgba(81, 36, 147, 0.12), transparent 60%), radial-gradient(circle at bottom left, rgba(0, 140, 211, 0.12), transparent 60%), var(--bg-card);
            border: 1px solid var(--border-glass); border-radius: 32px; padding: 80px 40px; position: relative; overflow: hidden;
        }

        /* --- FOOTER --- */
        .footer-premium { background: #03050a; border-top: 1px solid var(--border-glass); padding: 80px 0 30px 0; position: relative; z-index: 2; }
        .footer-link { color: var(--text-muted); text-decoration: none; transition: var(--transition-fast); font-weight: 300; font-size: 0.9rem; display: inline-block; margin-bottom: 12px; }
        .footer-link:hover { color: #fff; transform: translateX(4px); }
        .social-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-glass); display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition-fast); margin-right: 10px; }
        .social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
        .footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.03); font-size: 0.85rem; color: var(--text-muted); }

        /* ==========================================================================
           Structural Animation Core (Scroll Triggered)
           ========================================================================== */
        
        /* All Layout Sections: Right to Left */
        .reveal-right-to-left {
            opacity: 0;
            transform: translate3d(80px, 0, 0);
            will-change: transform, opacity;
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-right-to-left.active {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .reveal-top-to-bottom {
            opacity: 0;
            transform: translate3d(0, -60px, 0);
            will-change: transform, opacity;
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-top-to-bottom.active {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .reveal-top-to-bottom .accordion-item {
            opacity: 0;
            transform: translate3d(0, -30px, 0);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-top-to-bottom.active .accordion-item {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .reveal-top-to-bottom.active .accordion-item:nth-child(1) { transition-delay: 0.15s; }
        .reveal-top-to-bottom.active .accordion-item:nth-child(2) { transition-delay: 0.30s; }
        .reveal-top-to-bottom.active .accordion-item:nth-child(3) { transition-delay: 0.45s; }

@media only screen and (max-width: 600px) {

    .navbar-premium .nav-link::after {
           left: 30%;
		background: #fff;
    }
	div#mainNavbar {
    background: var(--primary);
}

}
   