
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000 radial-gradient(ellipse at 50% 0%, rgba(185, 122, 30, 0.12) 0%, transparent 60%) fixed;
    color: #fff;
    overflow-x: hidden;
}

        /* Header */
       header {
    position: absolute;
    top: 0;

    left: 0;
    right: 0;
    transition: all 0.3s ease;
     z-index: 10000 !important;
    position: fixed !important
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 9999;
}
@media (max-width: 480px) {
    .mobile-menu {
        top: 64px !important;
    }
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo a {
    display: block;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links > li > a,
.dropdown-toggle {
    position: relative; /* 🔥 REQUIRED */
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links > li > a:hover,
.dropdown-toggle:hover {
    color: #D4AF37;
}

.nav-links > li > a::after,
.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}



/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex !important;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #010101;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Grid Layout */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    min-width: 500px;
}

.dropdown-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.dropdown-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Simple Dropdown (About) */
.dropdown-menu-simple {
    min-width: 220px;
    padding: 0.5rem;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.dropdown-link svg {
    flex-shrink: 0;
}

/* Right Side Buttons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.cta-button {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 5% 0rem;
            /* padding: 8rem 5% 4rem; */
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
            
            
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

        .hero-content {
            max-width: 1000px;
            padding-top: 1rem;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            
            padding-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #fff, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h2 {
            font-size: 1.5rem;
            color: #ccc;
            font-weight: normal;
        }

        .hero-cta {
            background: #D4AF37;
            color: #000000;
            border: none;
            padding: 18px 60px;
            font-size: 0.9rem;
            font-weight: 700;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 2rem;
            display: inline-block;
            text-decoration: none;
        }

        .hero-cta:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .student-count {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #888;
        }

        /* Video Wrapper */
        .video-wrapper {
            width: min(90vw, 1000px);
            margin: 2.5rem auto;
            aspect-ratio: 16 / 9;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        }
        .video-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            z-index: 10;
        }
        .avatar-circles {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2rem;
        }

        .avatar-circles img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #d4af37;
            object-fit: cover;
            margin-left: -12px;
            background: #000;
        }

        .avatar-circles img:first-child {
            margin-left: 0;
        }

        .avatar-more {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #d4af37;
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            margin-left: -12px;
            cursor: pointer;
            transition: 0.2s ease;
        }

        .avatar-more:hover {
            background: #444;
        }

        .video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Common Section Styling with Radial Gradient */
        section {
            padding: 6rem 5%;
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #888;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.hero-badge::before {
    right: 100%;
    margin-right: 15px;
    transform: translateY(-50%);
}

.hero-badge::after {
    left: 100%;
    margin-left: 15px;
    transform: translateY(-50%) rotate(180deg);
}

.hero-badge:hover {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
        

/* ---------------------------0 */

 .features-section {
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .features-section {
                padding: 8rem 1.5rem;
            }
        }
        .container {
            margin: 0 auto;
            max-width: 48rem;
        }

        @media (min-width: 1024px) {
            .container {
                max-width: 80rem;
            }
        }

        .grid {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0.75rem;
        }

        .card {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            border: 1px solid #d4af372f;
            background-color: transparent;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            z-index: 10;
        }

        .card-content {
            padding: 1.5rem;
            padding-top: 1.5rem;
        }

        /* Card 1 - 100% Customizable */
        .card-1 {
            grid-column: span 6;
            display: flex;
        }

        @media (min-width: 1024px) {
            .card-1 {
                grid-column: span 2;
            }
        }

        .card-1 .card-content {
            position: relative;
            margin: auto;
            width: fit-content;
        }

        .card-1 .icon-container {
            position: relative;
            display: flex;
            height: 6rem;
            width: 14rem;
            align-items: center;
        }

        .card-1 .icon-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            color: #d4af37;
        }

        .card-1 .percentage {
            margin: 0 auto;
            display: block;
            width: fit-content;
            font-size: 3rem;
            font-weight: 600;
        }

        .card-1 h2 {
            margin-top: 1.5rem;
            text-align: center;
            font-size: 1.875rem;
            font-weight: 600;
        }

        /* Card 2 - Secure by default */
        .card-2 {
            grid-column: span 6;
        }

        @media (min-width: 640px) {
            .card-2 {
                grid-column: span 3;
            }
        }

        @media (min-width: 1024px) {
            .card-2 {
                grid-column: span 2;
            }
        }

        .circle-container {
            position: relative;
            margin: 0 auto;
            display: flex;
            aspect-ratio: 1;
            width: 8rem;
            height: 8rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (prefers-color-scheme: light) {
            .circle-container {
                border-color: #e5e7eb;
            }
        }

        .circle-container::before {
            content: '';
            position: absolute;
            inset: -0.5rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (prefers-color-scheme: light) {
            .circle-container::before {
                border-color: #f3f4f6;
            }
        }

        .circle-svg {
            margin: auto;
            width: 6rem;
            height: fit-content;
        }

        .text-content {
            position: relative;
            z-index: 10;
            margin-top: 1.5rem;
            text-align: center;
        }

        .text-content h2 {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .text-content p {
            color: #b1b1b1;
            font-size: 0.875rem;
        }

        /* Card 3 - Faster than light */
        .card-3 {
            grid-column: span 6;
        }

        @media (min-width: 640px) {
            .card-3 {
                grid-column: span 3;
            }
        }

        @media (min-width: 1024px) {
            .card-3 {
                grid-column: span 2;
            }
        }

        .chart-container {
            padding-top: 1.5rem;
        }

        @media (min-width: 1024px) {
            .chart-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        .chart-svg {
            width: 100%;
        }

        .chart-text {
            position: relative;
            z-index: 10;
            margin-top: 3.5rem;
            text-align: center;
            
        }
        .chart-text h2{
            font-size: 1.125rem;
            font-weight: 500;
        }
         .chart-text p {
            color: #b1b1b1;
            font-size: 0.875rem;
        }
        /* Card 4 & 5 - Large cards with split layout */
        .card-large {
            grid-column: span 6;
        }

        @media (min-width: 1024px) {
            .card-large {
                grid-column: span 3;
            }
        }

        .card-large .card-content {
            display: grid;
        }

        @media (min-width: 640px) {
            .card-large .card-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .left-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .icon-badge {
            position: relative;
            display: flex;
            aspect-ratio: 1;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (prefers-color-scheme: light) {
            .icon-badge {
                border-color: #e5e7eb;
            }
        }

        .icon-badge::before {
            content: '';
            position: absolute;
            inset: -0.5rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (prefers-color-scheme: light) {
            .icon-badge::before {
                border-color: #f3f4f6;
            }
        }

        .icon-badge svg {
            margin: auto;
            width: 1.25rem;
            height: 1.25rem;
            stroke-width: 1;
        }

        .content-text {
            margin-top: 3rem;
        }

        @media (min-width: 1024px) {
            .content-text {
                margin-top: 1.5rem;
            }
        }

        .content-text h2 {
            font-size: 1.125rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 0.1rem;
        }

        .content-text p {
            color: #b1b1b1;
            font-size: 0.875rem;
        }

        /* Right side content with graphs */
        .right-content {
            position: relative;
            margin-top: 1.5rem;
            margin-bottom: -1.5rem;
            margin-right: -1.5rem;
            height: fit-content;
            border-left: 1px solid #d4af372f;
            border-top: 1px solid #d4af372f;
            padding: 1.5rem;
            border-top-left-radius: 0.5rem;
        }

        @media (min-width: 640px) {
            .right-content {
                margin-left: 1.5rem;
            }
        }

        .window-dots {
            position: absolute;
            left: 0.75rem;
            top: 0.5rem;
            display: flex;
            gap: 0.25rem;
        }

        .dot {
            display: block;
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            border: 1px solid rgba(255, 0, 0, 0.1);
            background-color: rgba(255, 255, 255, 0.1);
        }

        @media (prefers-color-scheme: light) {
            .dot {
                border-color: #e5e7eb;
                background-color: #f3f4f6;
            }
        }

        .graph-svg {
            width: 100%;
        }

        @media (min-width: 640px) {
            .graph-svg {
                width: 150%;
            }
        }

        /* Card 5 - Users card */
        .user-timeline {
            position: relative;
            margin-top: 1.5rem;
        }

        @media (min-width: 640px) {
            .user-timeline {
                margin-top: -1.5rem;
                margin-bottom: -1.5rem;
                margin-right: -1.5rem;
            }
        }

        .user-timeline::before {
            content: '';
            position: absolute;
            inset: 0;
            margin: 0 auto;
            width: 1px;
            background-color: #d4af372f;
        }

        .timeline-content1 {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding: 1.5rem 0;
        }

        .timeline-item1 {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .timeline-item1:last-child {
            margin-bottom: 0;
        }

        .timeline-item1.right {
            width: calc(50% + 0.875rem);
            justify-content: flex-end;
        }

        .timeline-item1.left {
            margin-left: calc(50% - 1rem);
        }

        .user-tag {
            display: block;
            width: fit-content;
            border-radius: 0.25rem;
            border: 1px solid #d4af372f;
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
            background-color: transparent;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }

        .user-avatar {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            border: 4px solid #d4af372f;
        }

        .user-avatar.large {
            width: 2rem;
            height: 2rem;
        }

        .user-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* SVG color classes */
        .text-primary {
            color: #f0d168de;
        }

/* ---------------------------0 */
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.65);
            padding: 1rem .8rem;
            border-radius: 5px;
            border: 1px solid rgba(212, 175, 55, 0.233);
            backdrop-filter: blur(14px);
            text-align: center;
            transition: all 0.35s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
       /* Image container */
        .feature-image {
            height: 180px;
            padding: 1px;
            overflow: hidden;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.15);
        }

        /* Image */
        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }


        .feature-card h3 {
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            margin-top: 0.8rem;
            color: #fff;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .feature-card p {
            color: #b1b1b1;
            line-height: 1.6;
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
            text-align: center;
        }

        .feature-list {
            list-style: none;
            margin-top: 1.2rem;
            padding: 0;
            text-align: left;
        }

        .feature-list li {
            padding: 0.2rem 0;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            text-align: left;
        }

        .feature-list li::before {
            content: '✓';
            color: #d4af37;
            font-weight: bold;
            text-align: left;
        }

        /* Courses Section */
        .features-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
       .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px dashed #1a1a1a;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }

        /* Feature Card */
        .feature-card1 {
            position: relative;
            padding: 40px 30px;
            border-right: 1px dashed #f0d06874;
            border-bottom: 1px dashed #f0d06874;
            background: transparent;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card1:nth-child(3n) {
            border-right: none;
        }

        .feature-card1:nth-last-child(-n+3) {
            border-bottom: none;
        }

        .feature-card1:hover {
            background: rgba(212, 175, 55, 0.02);
        }

        .feature-card1:hover .card-icon {
            color: #D4AF37;
            transform: scale(1.1);
            
        }

        /* Grid Pattern Overlay */
        .pattern-overlay {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.3;
            overflow: hidden;
        }

        .pattern-gradient {
            position: absolute;
            inset: 0;
            background: radial-gradient(farthest-side at top, rgba(212, 175, 55, 0.1), transparent);
            mask-image: linear-gradient(white, transparent);
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0.5;
        }

        .grid-pattern svg {
            width: 100%;
            height: 100%;
        }

        .grid-pattern path {
            stroke: rgba(212, 175, 55, 0.25);
            fill: rgba(212, 175, 55, 0.05);
        }

        .grid-pattern rect {
            fill: rgba(212, 175, 55, 0.15);
        }

        /* Icon */
        .card-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    stroke-width: 1.5;
    display: block;      /* needed for margin auto to work */
    margin: 0 auto;      /* centers horizontally */
}

        /* Card Content */
        .card-title {
            margin-top: 40px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.3px;
        }

        .card-description {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #b1b1b1;
            line-height: 1.6;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .features-header h2 {
                font-size: 2.5rem;
            }

            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-card:nth-child(3n) {
                border-right: 1px dashed #1a1a1a;
            }

            .feature-card:nth-child(2n) {
                border-right: none;
            }

            .feature-card:nth-last-child(-n+3) {
                border-bottom: 1px dashed #1a1a1a;
            }

            .feature-card:nth-last-child(-n+2) {
                border-bottom: none;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
                filter: blur(4px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        /* SVG Icons */
        .icon-svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Timeline/Steps Section */
        .Steps {
            padding: 2rem 5%;
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
        }

        .Steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }
        
        .timeline-container {
            position: relative;
            padding: 100px 0;
            z-index: 2;
            margin-bottom: 3rem;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #1a1a1a;
            transform: translateX(-50%);
        }


        .timeline-line-progress {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 0%;
            background: linear-gradient(180deg, #D4AF37 0%, #F4E5B8 100%);
            transform: translateX(-50%);
            transition: height 0.3s ease;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .timeline-item {
            position: relative;
            margin: 120px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .timeline-item.active {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd).active .timeline-content {
            animation: slideInRight 0.8s ease forwards;
        }

        .timeline-item:nth-child(even).active .timeline-content {
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .timeline-content {
            width: 40%;
            padding: 0;
            background: transparent;
            align-items: center;
            border-radius: 0;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .timeline-content:hover {
            border-color: #D4AF37;
            transform: translateY(-10px);
        }

        .timeline-content:hover::before {
            opacity: 1;
        }


        .timeline-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

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

        .timeline-content:hover .timeline-image img {
            transform: scale(1.1);
        }


        .timeline-content h2 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            padding: 10px 40px;
            padding-bottom: 5px;
            display: block;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-align: center;
        }

        .timeline-item.active .timeline-content h2 {
            animation: fadeInText 0.8s ease forwards;
        }

        .timeline-content p {
            color: #999999;
            padding: 0 40px;
            padding-bottom: 40px;
            line-height: 1.8;
            font-size: 0.95rem;
            text-align: center;
        }


        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 5%;
        }

        .timeline-item:nth-child(even) .timeline-text {
            text-align: right;
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: #000;
            border: 2px solid #1a1a1a;
            border-radius: 50%;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .timeline-item.active .timeline-marker {
            background: #D4AF37;
            border-color: #D4AF37;
            box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.2);
            animation: markerPulse 2s ease-in-out infinite;
        }

        @keyframes markerPulse {
            0%, 100% {
                box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.2);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(212, 175, 55, 0.1);
            }
        }

        .step-number {
            margin-top: 1rem;
            margin-right: auto;
            margin-bottom: 1rem;
            margin-left: 40px;
            display: inline-block;
            background: transparent;
            border: 1px solid #D4AF37;
            color: #D4AF37;
            padding: 8px 40px;
            border-radius: 0;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            

        }

        .timeline-item.active .timeline-text h2 {
            animation: fadeInText 0.8s ease forwards;
        }

        @keyframes fadeInText {
            0% {
                opacity: 0;
                letter-spacing: 5px;
            }
            100% {
                opacity: 1;
                letter-spacing: -1px;
            }
        }

        .timeline-text p {
            color: #999999;
            line-height: 1.8;
            font-size: 0.95rem;
            text-align: left;
        }

        .timeline-icon-start,
        .timeline-icon-end {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            z-index: 10;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .timeline-icon-end img {
            width: 90px;
            height: 95px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
        }
        .timeline-icon-start img
        {
            width: 90px;
            height: 95px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
        }


        .timeline-icon-start {
            top: -40px;
        }

        .timeline-icon-end {
            bottom: -40px;
        }
        .step-number, .timeline-text h2, .timeline-text p {
          text-align: left !important;
          margin-right: 0 !important;
        }
        /* NEW: Blur Text Animation on Opposite Side */
        .blur-text-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40%;
            padding: 40px;
            pointer-events: none;
        }

        /* For odd items (box on right), text on left */
        .timeline-item:nth-child(odd) .blur-text-container {
            left: 5%;
            text-align: left;
        }

        /* For even items (box on left), text on right */
        .timeline-item:nth-child(even) .blur-text-container {
            right: 5%;
            text-align: right;
        }
.hero-badge-Step {
    display: inline-block; /* or block */
    margin: 1.5rem auto 1.5rem auto; /* auto left/right centers it */
    text-align: center;
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    align-items: center;
}

.hero-badge-Step::before,
.hero-badge-Step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.hero-badge-Step::before {
    right: 100%;
    margin-right: 15px;
    transform: translateY(-50%);
}

.hero-badge-Step::after {
    left: 100%;
    margin-left: 15px;
    transform: translateY(-50%) rotate(180deg);
}

.hero-badge-Step:hover {
    border-color: rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
        .blur-text {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 300;
            line-height: 1.8;
            letter-spacing: 1px;
            text-align: left;
        }

        .blur-text-word {
            display: inline-block;
            opacity: 0;
            filter: blur(12px) brightness(0.6);
            transform: translateY(20px) scale(0.95);
            margin-right: 0.35em;
            transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: filter, transform, opacity;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
        }

        .timeline-item.active .blur-text-word {
            opacity: 1;
            filter: blur(0px) brightness(1);
            transform: translateY(0) scale(1);
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
        }

        /* Stagger animation delays for each word */
        .timeline-item.active .blur-text-word:nth-child(1) { transition-delay: 0.1s; }
.timeline-item.active .blur-text-word:nth-child(2) { transition-delay: 0.2s; }
.timeline-item.active .blur-text-word:nth-child(3) { transition-delay: 0.3s; }
.timeline-item.active .blur-text-word:nth-child(4) { transition-delay: 0.4s; }
.timeline-item.active .blur-text-word:nth-child(5) { transition-delay: 0.5s; }
.timeline-item.active .blur-text-word:nth-child(6) { transition-delay: 0.6s; }
.timeline-item.active .blur-text-word:nth-child(7) { transition-delay: 0.7s; }
.timeline-item.active .blur-text-word:nth-child(8) { transition-delay: 0.8s; }
.timeline-item.active .blur-text-word:nth-child(9) { transition-delay: 0.9s; }
.timeline-item.active .blur-text-word:nth-child(10) { transition-delay: 1.0s; }
.timeline-item.active .blur-text-word:nth-child(11) { transition-delay: 1.1s; }
.timeline-item.active .blur-text-word:nth-child(12) { transition-delay: 1.2s; }
.timeline-item.active .blur-text-word:nth-child(13) { transition-delay: 1.3s; }
.timeline-item.active .blur-text-word:nth-child(14) { transition-delay: 1.4s; }
.timeline-item.active .blur-text-word:nth-child(15) { transition-delay: 1.5s; }
.timeline-item.active .blur-text-word:nth-child(16) { transition-delay: 1.6s; }
.timeline-item.active .blur-text-word:nth-child(17) { transition-delay: 1.7s; }
.timeline-item.active .blur-text-word:nth-child(18) { transition-delay: 1.8s; }
.timeline-item.active .blur-text-word:nth-child(19) { transition-delay: 1.9s; }
.timeline-item.active .blur-text-word:nth-child(20) { transition-delay: 2.0s; }
.timeline-item.active .blur-text-word:nth-child(21) { transition-delay: 2.1s; }
.timeline-item.active .blur-text-word:nth-child(22) { transition-delay: 2.2s; }
.timeline-item.active .blur-text-word:nth-child(23) { transition-delay: 2.3s; }
.timeline-item.active .blur-text-word:nth-child(24) { transition-delay: 2.4s; }
.timeline-item.active .blur-text-word:nth-child(25) { transition-delay: 2.5s; }
.timeline-item.active .blur-text-word:nth-child(26) { transition-delay: 2.6s; }
.timeline-item.active .blur-text-word:nth-child(27) { transition-delay: 2.7s; }
.timeline-item.active .blur-text-word:nth-child(28) { transition-delay: 2.8s; }
.timeline-item.active .blur-text-word:nth-child(29) { transition-delay: 2.9s; }
.timeline-item.active .blur-text-word:nth-child(30) { transition-delay: 3.0s; }

        

        

        /* AI Automation Section */
        .ai-section {
            background: transparent;
            padding: 0px 20px;
            position: relative;
            z-index: 2;
        }

        .ai-bottom-cta {
            text-align: center;
            margin-top: 100px;
            padding: 60px 40px;
            background: transparent;
            border: 1px solid #1a1a1a;
            border-radius: 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        .ai-bottom-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            z-index: 10;
        }
        
        .ai-bottom-cta h2 {
            color: #ffffff;
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .ai-bottom-cta p {
            color: #999999;
            font-size: 1rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        /* Left card — dark with all white text */
.cr-card-dark {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.04), 0 0 120px rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.cr-card-dark .cr-card-num,
.cr-card-dark .cr-card-tag,
.cr-card-dark .cr-card-body p,
.cr-card-dark .cr-card-list li {
    color: #ffffff;
}

.cr-card-dark .cr-card-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* Right card — white shadow glow only, no solid bg color */
.cr-card-gold {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.08), 0 0 120px rgba(212, 175, 55, 0.04);
}
        .courses{
                        padding: 2rem 5%;
             background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
        }
        /* ELITE FORMATIONS SECTION */
        .formations-premium {
            padding: 2rem 5%;
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;

        }

        .formations-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

        .formations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
            position: relative;
            z-index: 1;
        }

        .formation-card {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #1a1a1a;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .formation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .formation-card:hover {
            border-color: #D4AF37;
            transform: translateY(-5px);
        }

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

        .formation-media {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .formation-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .formation-card:hover .formation-media img {
            transform: scale(1.1);
        }

        .formation-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 20px;
        }

        .formation-professor {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .formation-professor img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #D4AF37;
            object-fit: cover;
        }

        .formation-professor span {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .formation-content {
            padding: 20px;
            text-align: center; 
        }

        .formation-tag {
            display: inline-block;
            background: transparent;
            border: 1px solid #D4AF37;
            color: #D4AF37;
            padding: 6px 15px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            align-items: center;
            margin-bottom: 15px;
        }

        .formation-content h3 {
            font-size: 1.25rem;
            color: #ffffff;
            margin-bottom:12px;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .formation-content p {
            color: #999999;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 20px;
            font-size: 0.85rem;
        }

        .formation-stats {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-top: 1px solid #1a1a1a;
            border-bottom: 1px solid #1a1a1a;
            margin-bottom: 20px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-value {
            color: #D4AF37;
            font-size: 1rem;
            font-weight: 700;
        }

        .stat-label {
            color: #666;
            font-size: 0.55rem;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .formation-cta {
            display: block;      
    margin: 0 auto;
    text-align: center;
            color: #D4AF37;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .formation-cta:hover {
            letter-spacing: 2px;
            color: #fff;
        }

        /* COMING SOON BANNER CARD */
        .coming-soon-banner {
            max-width: 1200px;
            margin: 1rem auto;
            position: relative;
            z-index: 1;
        }

        .coming-soon-banner-card {
            background: 
                linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("/static/Client/images/coming1.png");
            background-size: cover;
            background-position: 50% 30%; 
            background-repeat: no-repeat;
            border: 1px solid #1a1a1a;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }

        .coming-soon-banner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            z-index: 10;
        }
       
        /*.coming-soon-banner-card:hover {
            border-color: #D4AF37;
        }*/

        .coming-soon-banner-card:hover::before {
            opacity: 1;
        }

        .coming-soon-banner-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .coming-soon-banner-badge {
            display: inline-block;
            background: #D4AF37;
            color: #000;
            padding: 10px 30px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .coming-soon-banner h3 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .coming-soon-banner p {
            color: #999999;
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /* COMING SOON CAROUSEL */
        .coming-soon-section {
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .carousel-container {
            position: relative;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .carousel-wrapper {
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
        }

        .coming-soon-card {
            min-width: calc(50% - 1rem);
            background-color: transparent;
            border: 1px solid transparent;
            padding: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .coming-soon-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .coming-soon-card:hover::before {
            opacity: 1;
        }

        .coming-soon-card:hover {
            border-color: #D4AF37;
            transform: translateY(-10px);
        }

        .coming-soon-media {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .coming-soon-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .coming-soon-icon {
            font-size: 5rem;
            opacity: 0.3;
            transition: all 0.5s ease;
        }

        .coming-soon-card:hover .coming-soon-icon {
            transform: scale(1.2) rotate(10deg);
            opacity: 0.5;
        }

        .coming-soon-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #D4AF37;
            color: #000;
            padding: 10px 25px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .coming-soon-content {
            padding: 40px;
            text-align: center;
        }

        .coming-soon-content h3 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .coming-soon-content p {
            color: #999999;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .notify-btn {
            display: inline-block;
            background: transparent;
            border: 1px solid #D4AF37;
            color: #D4AF37;
            padding: 12px 30px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .notify-btn:hover {
            background: #D4AF37;
            color: #000;
        }

        /* Carousel Navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid #D4AF37;
            color: #D4AF37;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .carousel-btn:hover {
            background: #D4AF37;
            color: #000;
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* FAQ SECTION */
        .faq-section {
            padding: 6rem 5%;
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #1a1a1a;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .faq-item:hover {
            border-color: #D4AF37;
        }

        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: #fff;
            padding: 25px 30px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #D4AF37;
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #D4AF37;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 30px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px 30px;
        }

        .faq-answer p {
            color: #999;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* USER FEEDBACK SECTION */
        .feedback-section {
            padding: 6rem 5%;
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            overflow: hidden;
        }

        .feedback-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feedback-video {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #1a1a1a;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feedback-video:hover {
            border-color: #D4AF37;
            transform: translateY(-5px);
        }

        .feedback-video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .feedback-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .feedback-video-content {
            padding: 30px;
        }

        .feedback-video-content h4 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .feedback-video-content p {
            color: #999;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .feedback-comments {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feedback-comment {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #1a1a1a;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .feedback-comment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feedback-comment:hover {
            border-color: #D4AF37;
            transform: translateX(5px);
        }

        .feedback-comment:hover::before {
            opacity: 1;
        }

        .feedback-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feedback-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #D4AF37;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000;
            font-size: 1.2rem;
        }

        .feedback-user-info h5 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .feedback-user-info p {
            color: #666;
            font-size: 0.85rem;
        }

        .feedback-rating {
            margin-bottom: 15px;
        }

        .feedback-stars {
            color: #D4AF37;
            font-size: 1.2rem;
            letter-spacing: 3px;
        }

        .feedback-text {
            color: #ccc;
            line-height: 1.8;
            font-size: 0.95rem;
            font-style: italic;
        }
        /* Tabs */
        .tabs-list {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }


        .tab-trigger {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: transparent;
            border: 1px solid #1a1a1a;
            border-radius: 8px;
            color: #999999;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-trigger:hover {
            border-color: #D4AF37;
            color: #D4AF37;
        }

        .tab-trigger.active {
            background: #0a0a0a;
            border-color: #D4AF37;
            color: #D4AF37;
        }

        .tab-icon {
            width: 18px;
            height: 18px;
        }

        /* Tab Content */
        .tab-content {
    display: none;
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.101);

    border-radius: 16px;
    padding: 80px 60px;
    position: relative;
    animation: fadeIn 0.5s ease;
    overflow: hidden;
}

.tab-content::before,
.tab-content::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
}

.tab-content::before {
    top: -10px;
    left: -10px;
}

.tab-content::after {
    bottom: -10px;
    right: -10px;
}

        .tab-content.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .content-badge {
            display: inline-block;
            padding: 8px 16px;
            border: 1px solid #1a1a1a;
            background: #000000;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #D4AF37;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .content-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .content-description {
            color: #999999;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .content-button {
            padding: 14px 32px;
            background: #D4AF37;
            color: #000000;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .content-button:hover {
            background: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .content-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid #1a1a1a;
        }


        
        /* 55555555555555555555555 */
        /* Main Container */
        .pricing-container {
            min-height: 100vh;
            padding: 120px 20px 40px;
            position: relative;
        }

        /* Radial gradient background */
        .pricing-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
            pointer-events: none;
        }

        /* Dots pattern */
        .pricing-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
            background-size: 12px 12px;
            pointer-events: none;
        }

        .pricing-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 8px;
            margin-bottom: 40px;
        }

        /* Card Base Styles */
        .pricing-card {
            background: #0a0a0a;
            border: 1px solid #1a1a1a;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        /* Featured Card (Large) */
        .featured-card {
            grid-column: span 5;
            position: relative;
        }

        .featured-card .gradient-overlay {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.3;
        }

        .featured-card .gradient-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(farthest-side at top, rgba(212, 175, 55, 0.3), transparent);
        }

        /* Card Header */
        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .badge-secondary {
            background: #1a1a1a;
            color: #D4AF37;
        }

        .badge-outline {
            border: 1px solid #D4AF37;
            color: #D4AF37;
            background: transparent;
            gap: 6px;
        }

        .badge-outline svg {
            width: 12px;
            height: 12px;
        }

        .card-header .btn {
            margin-left: auto;
        }

        /* Price Section */
        .price-section {
            padding: 0 20px 20px;
        }

        .featured-card .price-section {
            display: flex;
            gap: 40px;
            padding: 20px;
        }

        .price-section .price-left {
            min-width: 30%;
        }

        .price-display {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            margin-bottom: 20px;
        }

        .price-amount {
            font-family: 'Courier New', monospace;
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .price-suffix {
            color: #999;
            font-size: 0.9rem;
            padding-bottom: 6px;
        }

        /* Features List */
        .features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ccc;
            font-size: 0.9rem;
        }

        .check-icon {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            background: #D4AF37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-icon svg {
            width: 10px;
            height: 10px;
            stroke: #000;
            stroke-width: 3;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #D4AF37;
            color: #000;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: #111;
            color: #fff;
            border: 1px solid #1a1a1a;
        }

        .btn-outline:hover {
            border-color: #D4AF37;
            background: #1a1a1a;
            transform: translateY(-2px);
        }

        /* Standard Cards */
        .standard-card {
            grid-column: span 3;
        }

        .card-4-col {
            grid-column: span 4;
        }
@media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .featured-card {
                grid-column: span 4;
            }

            .standard-card {
                grid-column: span 4;
            }

            .card-4-col {
                grid-column: span 4;
            }

            .featured-card .price-section {
                flex-direction: column;
                gap: 20px;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-card {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }
        .pricing-card:nth-child(4) { animation-delay: 0.4s; }
         /* Footer Styles */
        .footer {
            background: radial-gradient(circle at center, rgba(185, 122, 30, 0.15), transparent 150%);
            position: relative;
            z-index: 2;
            border-top: 1px solid #1a1a1a;
            padding: 80px 0 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
        }

        .footer-logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-logo {
            width: 40px;
            height: 40px;
            background: #D4AF37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #000000;
            font-size: 1.2rem;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .footer-description {
            color: #999999;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border: 1px solid #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social-link:hover {
            border-color: #D4AF37;
            color: #D4AF37;
            transform: translateY(-3px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            flex: 2;
        }

        .footer-column h3 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #999999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #D4AF37;
        }

        .footer-bottom {
            border-top: 1px solid #1a1a1a;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: #666666;
            font-size: 0.85rem;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-legal a {
            color: #666666;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #D4AF37;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

       




.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #D4AF37;
}

/* ── Hamburger 3 lines ── */
.hamburger {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}
/* Animate into X */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu panel ── */
.mobile-menu {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #060606 !important;
    z-index: 10000 !important;
 
    /* Hidden state */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s !important;
 
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}
/* Open state — toggled by JS adding .active */
.mobile-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s !important;
}
 
/* ── Scrollable inner content ── */
.mobile-menu-content {
    padding: 1rem 1.25rem 3rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Top-level links (Home, Features, Pricing) ── */
.mobile-menu-link {
    display: flex;
    align-items: center;
    height: 52px;
    padding: 0 1rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-link:hover { background: rgba(212,175,55,0.07); color: #D4AF37; }

/* ── Section label (COURSES / ABOUT) ── */
.mobile-menu-section { margin-top: 1.25rem; }
.mobile-menu-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 1rem;
    margin-bottom: 0.4rem;
}

/* ── Sub-items with icon ── */
.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.7rem 1rem;
    color: #d0d0d0;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-item:hover { background: rgba(212,175,55,0.07); }
.mobile-menu-item:hover .mobile-menu-icon {
    border-color: rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.08);
}

/* ── Icon box ── */
.mobile-menu-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 9px;
    color: #D4AF37;
    transition: background 0.15s, border-color 0.15s;
}
.mobile-menu-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #e8e8e8;
    line-height: 1.3;
}
.mobile-menu-desc {
    font-size: 0.74rem;
    color: #666;
    margin-top: 1px;
}

/* ── Bottom buttons ── */
.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* Arabic button */
.lang-btn.mobile {
    width: 100%;
    height: 48px;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.4);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s, border-color 0.2s;
}
.lang-btn.mobile:hover { background: rgba(212,175,55,0.08); border-color: #D4AF37; }

/* Join Now */
a.cta-button.mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000 !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: box-shadow 0.2s, transform 0.15s;
}
a.cta-button.mobile:hover {
    box-shadow: 0 6px 20px rgba(212,175,55,0.35);
    transform: translateY(-1px);
}
section,
.features-section,
.Steps,
.formations-premium,
.faq-section,
.feedback-section,
.footer {
    background: transparent;
}

/* ── CROSSROADS SECTION ── */
/* ══════════════════════════════
   CROSSROADS SECTION
══════════════════════════════ */
.ai-section {
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}

.cr-section-head {
    text-align: center;
    margin-bottom: 5rem;
}

/* Cards wrapper */
.cr-cards-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

/* ── Base card ── */
.cr-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 50px 44px 44px;
    position: relative;
    transition: transform 0.3s ease;
}

.cr-card:hover {
    transform: translateY(-6px);
}

/* White card */
.cr-card-white {
    background: #ffffff;
    border: 1px solid #e8e8e8;
}

.cr-card-white::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #e0e0e0;
}

/* Gold card */
.cr-card-gold {
    background: #D4AF37;
    border: 1px solid #c9a430;
}

.cr-card-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #f4d03f;
}

/* Card top row */
.cr-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cr-card-num {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #bbb;
    font-family: monospace;
}

.cr-num-gold { color: rgba(0,0,0,0.35); }

.cr-card-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ccc;
    font-family: monospace;
    text-transform: uppercase;
}

.cr-tag-gold { color: rgba(0,0,0,0.4); }

/* Titles */
.cr-card-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.cr-title-white { color: #111; }
.cr-title-gold  { color: #000; }

/* Divider */
.cr-card-divider {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 28px;
}

.cr-divider-gold { background: rgba(0,0,0,0.2); }

/* Body */
.cr-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex: 1;
}

.cr-card-body p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.8;
}

.cr-body-gold p { color: rgba(0,0,0,0.6); }

/* List */
.cr-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    border-top: 1px solid #f0f0f0;
    padding-top: 28px;
}

.cr-list-gold {
    border-top-color: rgba(0,0,0,0.12);
}

.cr-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-family: monospace;
    letter-spacing: 0.3px;
}

.cr-list-white li { color: #555; }
.cr-list-gold  li { color: rgba(0,0,0,0.7); }

.cr-list-icon {
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: monospace;
}

.cr-icon-no  {
    color: #ccc;
    border: 1px solid #eee;
}

.cr-icon-yes {
    color: #000;
    border: 1px solid rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.08);
}

/* Footer */
.cr-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.cr-footer-gold {
    border-top-color: rgba(0,0,0,0.12);
}

.cr-card-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.cr-icon-pawn {
    opacity: 0.9;
    filter: grayscale(1);
}

.cr-icon-king {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
    animation: crFloat 5s ease-in-out infinite;
}

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

.cr-card-cost {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: monospace;
    text-transform: uppercase;
}

.cr-cost-white { color: #ffffff; }
.cr-cost-gold  { color: rgba(0,0,0,0.5); font-size: 1rem; letter-spacing: 0; }

/* ── VS block ── */
.cr-vs-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    gap: 0;
}

.cr-vs-line {
    width: 1px;
    flex: 1;
    background: #1a1a1a;
}

.cr-vs-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 16px 0;
}

.cr-vs-circle span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    font-family: monospace;
}

/* ── Bottom truth ── */
.cr-truth-wrap {
    max-width: 1100px;
    margin: 5rem auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cr-truth-text {
    font-size: 1.1rem;
    line-height: 2;
}

.cr-truth-strike {
    color: #2a2a2a;
    text-decoration: line-through;
    text-decoration-color: #D4AF37;
}

.cr-truth-gold {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}
/* White card */
.cr-card-white {
    background: transparent;
    border: 1px solid #ffffff;
}

.cr-card-white::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #ffffff;
}

/* Gold card */
.cr-card-gold {
    background: transparent;
    border: 1px solid #D4AF37;
}

.cr-card-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Titles */
.cr-title-white { color: #ffffff; }
.cr-title-gold  { color: #D4AF37; }

/* Card top */
.cr-card-num  { color: #333; }
.cr-num-gold  { color: rgba(212,175,55,0.4); }
.cr-card-tag  { color: #333; }
.cr-tag-gold  { color: rgba(212,175,55,0.5); }

/* Divider */
.cr-card-divider  { background: #222; }
.cr-divider-gold  { background: rgba(212,175,55,0.3); }

/* Body text */
.cr-card-body p   { color: #555; }
.cr-body-gold p   { color: #888; }

/* List */
.cr-card-list       { border-top-color: #111; }
.cr-list-gold       { border-top-color: #1e1e1e; }
.cr-list-white li   { color: #666; }
.cr-list-gold  li   { color: #888; }

.cr-icon-no {
    color: #ff0000;
    border: 1px solid #1e1e1e;
}

.cr-icon-yes {
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
}

/* Footer */
.cr-card-footer   { border-top-color: #111; }
.cr-footer-gold   { border-top-color: #1e1e1e; }

.cr-cost-white { color: #ffffff; }
.cr-cost-gold  {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 0;
}

/* Gap between cards */
.cr-cards-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    column-gap: 40px;
}

/* VS circle matches site */
.cr-vs-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #D4AF37;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 16px 0;
}

.cr-vs-circle span {
    color: #D4AF37;
}

.cr-vs-line { background: #D4AF37; }

/* Truth bottom */
.cr-truth-strike { color: #dfd9d9; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cr-cards-wrap {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .cr-vs-block {
        flex-direction: row;
        padding: 20px 0;
        gap: 0;
    }

    .cr-vs-line {
        width: 100%;
        height: 1px;
        flex: 1;
    }

    .cr-vs-circle {
        margin: 0 20px;
    }

    .cr-card {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .cr-card { padding: 32px 24px; }
    .cr-card-title { font-size: 1.5rem; }
    .cr-vs-block { padding: 16px 0; }
}

/* ── LIVE SECTION ── */
.live-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.live-top {
    text-align: center;
    margin-bottom: 5rem;
}

/* Stage layout */
.live-stage {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Left / Right columns */
.live-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Feature cards */
.live-feature-card {
    border: 1px solid #1a1a1a;
    padding: 24px 22px;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.live-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.live-feature-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.02);
}

.live-feature-card:hover::before { opacity: 1; }

.live-feature-icon {
    margin-bottom: 14px;
}

.live-feature-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.live-feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

/* Stat cards */
.live-stat-card {
    border: 1px solid #1a1a1a;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.3s ease;
}

.live-stat-card:hover {
    border-color: rgba(212,175,55,0.3);
}

.live-stat-num {
    font-size: 2.8rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: -2px;
    line-height: 1;
}

.live-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
}

.live-stat-sub {
    font-size: 0.78rem;
    color: #444;
}

/* Screen mockup */
.live-screen-wrap {
    position: relative;
}

.live-screen {
    background: #080808;
    border: 1px solid #222;
    overflow: hidden;
}

.live-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Screen bar */
.live-screen-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}

.live-screen-dots {
    display: flex;
    gap: 5px;
}

.live-screen-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #222;
}

.live-screen-dots span:nth-child(1) { background: #ff5f57; }
.live-screen-dots span:nth-child(2) { background: #febc2e; }
.live-screen-dots span:nth-child(3) { background: #28c840; }

.live-screen-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    font-family: monospace;
}

.live-screen-rec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c01c28;
    font-family: monospace;
}

.live-rec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c01c28;
    animation: ltPulse 1s ease-in-out infinite;
}

/* Screen body */
.live-screen-body {
    display: flex;
    flex-direction: column;
}

.live-screen-chart {
    border-bottom: 1px solid #1a1a1a;
    background: #080808;
    padding: 8px 0 0;
}

.live-screen-chart svg {
    width: 100%;
    height: 160px;
    display: block;
}

/* Chat */
.live-screen-chat {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0a0a0a;
}

.live-chat-msg {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.live-chat-name {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: monospace;
    color: #444;
}

.live-chat-name.mentor { color: #D4AF37; }
.live-chat-name.member { color: #555; }

.live-chat-text {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

/* Screen footer */
.live-screen-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid #1a1a1a;
    background: #080808;
}

.live-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    color: #444;
    font-family: monospace;
}

.live-badge-locked {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.25);
    padding: 4px 10px;
    font-family: monospace;
}

/* Floating badge */
.live-float-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #000;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #D4AF37;
    font-family: monospace;
}

.live-float-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28c840;
    animation: ltPulse 1.5s ease-in-out infinite;
}

/* CTA Strip */
.live-cta-strip {
    max-width: 1300px;
    margin: 4rem auto 0;
    border: 1px solid #1a1a1a;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.live-cta-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.live-cta-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.live-cta-sub {
    font-size: 0.85rem;
    color: #444;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1100px) {
    .live-stage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .live-screen-wrap {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .live-stage {
        grid-template-columns: 1fr;
    }

    .live-screen-wrap {
        grid-column: 1;
        order: 0;
    }

    .live-float-badge {
        top: -12px;
        right: 0;
    }

    .live-cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .live-screen-label { display: none; }
}
/* ── MODELS SECTION ── */
.models-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.models-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

/* Card */
.model-card {
    background: #080808;
    padding: 32px 28px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover {
    background: #0d0d0d;
}

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

/* Card top row */
.model-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.model-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.model-version {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.25);
    padding: 3px 8px;
    font-family: monospace;
    white-space: nowrap;
    background: rgba(212,175,55,0.04);
}

.model-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.75;
    flex: 1;
}

/* Badges */
.model-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.model-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid #1e1e1e;
    color: #444;
    background: transparent;
    font-family: monospace;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.model-badge-gold {
    border-color: rgba(212,175,55,0.3);
    color: #D4AF37;
    background: rgba(212,175,55,0.05);
}

.model-card:hover .model-badge {
    border-color: #2a2a2a;
    color: #555;
}

.model-card:hover .model-badge-gold {
    border-color: rgba(212,175,55,0.4);
    color: #D4AF37;
}

/* ── Modal ── */
.model-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    backdrop-filter: blur(4px);
}

.model-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.model-modal {
    background: #090909;
    border: 1px solid #222;
    max-width: 560px;
    width: 100%;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.model-modal-overlay.active .model-modal {
    transform: translateY(0) scale(1);
}

.model-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.model-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #111;
    border: 1px solid #222;
    color: #555;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.model-modal-close:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.model-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.model-modal-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.model-modal-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.model-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.model-modal-cell {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.model-modal-cell-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    font-family: monospace;
    text-transform: uppercase;
}

.model-modal-cell-value {
    font-size: 0.85rem;
    color: #aaa;
    font-family: monospace;
}

.model-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .models-grid {
        grid-template-columns: 1fr;
    }

    .model-modal {
        padding: 28px 20px;
    }

    .model-modal-grid {
        grid-template-columns: 1fr;
    }

    .model-modal-name {
        font-size: 1.2rem;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .crossroads-grid {
        grid-template-columns: 1fr;
    }

    .crossroads-card {
        padding: 40px 24px;
    }

    .crossroads-card.card-king {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
    }

    .crossroads-divider {
        flex-direction: row;
        padding: 20px;
        border: none;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
    }

    .crossroads-divider-line {
        width: 100%;
        height: 1px;
        flex: 1;
    }

    .crossroads-card h3 {
        font-size: 1.4rem;
    }

    .crossroads-truth {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}    

@media (max-width: 900px) {
  .mobile-menu-btn       { display: flex !important; }
    .nav-links             { display: none !important; }
    .nav-right             { display: none !important; }  
}
@media (max-width: 1024px) {
    /* Header container */
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-content {
    height: 70px;
  }
  
  /* Logo */
  .logo img {
    height: 50px;
  }
  
  /* Navigation links - smaller spacing */
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  
  /* Right side buttons */
  .nav-right {
    gap: 0.75rem;
  }
  
  .lang-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
  
  /* Dropdown adjustments */
  .dropdown-grid {
    grid-template-columns: 1fr;
    min-width: 400px;
  }
  
  .dropdown-menu-simple {
    min-width: 200px;
  }
  .dropdown-menu {
    display: none !important;
  }
}
@media (hover: none) and (pointer: coarse) {
  /* Better touch targets */
  .mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
  }
  
  .mobile-menu-link,
  .mobile-menu-item {
    min-height: 44px;
  }
  
  .lang-btn.mobile,
  .cta-button.mobile {
    min-height: 48px;
  }
}
header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  
  /* Header adjustments */
  .nav-content {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  
.logo img {
    height: 50px;
  }
  
  /* Hero section */
  .hero {
    padding: 7rem 3% 4rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }
  
  .hero-cta {
    padding: 16px 50px;
    font-size: 0.85rem;
  }

  /* Grids - 2 columns */
  .features-grid,
  .courses-grid,
  .formations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline adjustments */
  .timeline-content {
    width: 45%;
  }
  
  .timeline-content h2 {
    font-size: 1.6rem;
  }
  
  .blur-text-container {
    width: 45%;
  }
  
  .blur-text {
    font-size: 1rem;
  }

  /* Tabs content */
  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }
  
  .content-title {
    font-size: 2rem;
  }
  
  /* Coming soon carousel */
  .carousel-container {
    padding: 0 50px;
  }

}
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 5% 3rem;
  }
  
  .hero h1 {
    margin-top: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .course-card:hover,
  .formation-card:hover,
  .timeline-content:hover {
    transform: none;
  }
  
  .hero-cta,
  .cta-button,
  .content-button,
  .formation-cta,
  .notify-btn {
    min-height: 44px;
  }
  
  .nav-links > li > a,
  .dropdown-toggle {
    min-height: 44px;
  }
}
@media (max-width: 768px) {
    .features-header h2 {
                font-size: 2rem;
            }

            .features-header p {
                font-size: 0.9rem;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 30px 24px;
            }

            .feature-card:nth-child(n) {
                border-right: none;
                border-bottom: 1px dashed #1a1a1a;
            }

            .feature-card:last-child {
                border-bottom: none;
            }
    .pricing-header h1 {
                font-size: 2.5rem;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .featured-card,
            .standard-card,
            .card-4-col {
                grid-column: span 1;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .card-header .btn {
                margin-left: 0;
                width: 100%;
            }

            .badge-outline.hide-mobile {
                display: none;
            }
    .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 1.4rem;
            }

            .video-wrapper {
                margin: 2rem auto;
                border-radius: 10px;
            }
    .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

           

            .features-grid,
            .courses-grid {
                grid-template-columns: 1fr;
            }

            .timeline-content {
                width: 80%;
                margin-left: 10% !important;
            }

            .timeline-item:nth-child(even) .timeline-text {
                text-align: left !important;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-line-progress {
                left: 30px;
            }

            .timeline-marker {
                left: 30px;
            }

            .timeline-icon-start,
            .timeline-icon-end {
                left: 30px;
            }

            .formations-grid {
                grid-template-columns: 1fr;
            }

            .feedback-grid {
                grid-template-columns: 1fr;
            }

            .coming-soon-card {
                min-width: 100%;
            }

            .carousel-container {
                padding: 0 40px;
            }
    header {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-content {
    height: 70px;
  }
  
  /* Logo */
  .logo img {
    height: 50px;
  }
  
  /* Hide desktop nav and buttons */
  .nav-links,
  .nav-right {
    display: none !important;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    display: flex;
    border: 1px solid rgba(212, 175, 175, 0.3);
  }
  
  /* Mobile Menu Overlay */
  .mobile-menu {
    top: 70px;
  }
  
  .mobile-menu-content {
    padding: 1.5rem 1rem;
  }
  
  /* Mobile menu links */
  .mobile-menu-link {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  /* Mobile dropdown sections */
  .mobile-menu-section {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }
  
  /* Mobile dropdown items */
  .mobile-menu-item {
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }
  
  .mobile-menu-icon {
    width: 44px;
    height: 44px;
  }
  
  .mobile-menu-title {
    font-size: 0.9rem;
  }
  
  .mobile-menu-desc {
    font-size: 0.75rem;
  }
  
  /* Mobile buttons section */
  .mobile-menu-buttons {
    
    gap: 0.9rem;
  }

  
header.scrolled {
    background: rgba(0, 0, 0, 0.98);
  }
  .nav-links,
  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
                padding: 5rem 5% 4rem;

    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: .5rem;
    line-height: 1.1;
  }
  [lang="ar"] .hero h1 {
    font-size: 2.2rem;
    margin-top: .5rem;
    line-height: 0.9;
}
  .hero-badge{
    font-size: 0.5rem;
  }
  [lang="ar"] .hero-badge{
    font-size: .5rem;
  }

  .hero h2 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 16px 40px;
    font-size: 0.85rem;
  }
  
  .student-count {
    font-size: 0.7rem;
  }
  
  /* Avatar circles */
  .avatar-circles img,
  .avatar-more {
    width: 30px;
    height: 30px;
    margin-left: -10px;
  }
  .avatar-more{
    font-size: 0.55rem;
  }

  /* Video wrapper */
  .video-wrapper {
    width: 100%;
    margin: 2rem auto;
    border-radius: 8px;
  }

  /* Sections */
  section {
    padding: 4rem 5%;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  /* All grids - Single column */
  .features-grid,
  .courses-grid,
  .formations-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Feature cards */
  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-image {
    margin: -2rem -1.5rem 1.5rem;
    height: 200px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }

  /* Timeline - Simplified vertical layout */
  .timeline-container {
    padding: 40px 0;
  }
  
  .timeline-line,
  .timeline-line-progress {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-icon-start,
  .timeline-icon-end {
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .timeline-icon-start img,
  .timeline-icon-end img {
    width: 70px;
    height: 75px;
  }

  .timeline-item {
    margin: 80px 0;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px !important;
  }

  .timeline-content h2 {
    font-size: 1.4rem;
    padding: 20px;
  }

  .timeline-text {
    padding: 20px;
  }
  
  .timeline-text h2,
  .timeline-text p {
    text-align: left !important;
  }
  
  .step-number {
    margin-left: 20px;
    padding: 6px 30px;
    font-size: 0.7rem;
  }

  .timeline-image {
    height: 180px;
  }
  
  /* Hide blur text on mobile */
  .blur-text-container {
    display: none;
  }

  /* AI Section */
  .ai-bottom-cta {
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .ai-bottom-cta h2 {
    font-size: 1.8rem;
  }
  
  .ai-bottom-cta p {
    font-size: 0.9rem;
  }

  /* Formations */
  .formation-content {
    padding: 20px;
  }
  
  .formation-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  
  .formation-stats {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  
  .stat-item {
    flex: 1 1 45%;
  }

  /* Coming Soon Banner */
  .coming-soon-banner-card {
    padding: 80px 20px;
    background-position: center;
  }
  
  .coming-soon-banner h3 {
    font-size: 1.8rem;
  }
  
  .coming-soon-banner p {
    font-size: 0.95rem;
  }

  /* Carousel */
  .carousel-container {
    padding: 0 20px;
  }

  .coming-soon-card {
    min-width: 100%;
  }
  
  .coming-soon-media {
    height: 220px;
  }
  
  .coming-soon-content {
    padding: 30px 20px;
  }
  
  .coming-soon-content h3 {
    font-size: 1.6rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn.prev {
    left: -10px;
  }
  
  .carousel-btn.next {
    right: -10px;
  }

  /* FAQ */
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  /* Feedback */
  .feedback-comment {
    padding: 20px;
  }
  
  .feedback-avatar {
    width: 45px;
    height: 45px;
  }

  /* Tabs */
  .tabs-list {
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .tab-trigger {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .tab-content {
    padding: 40px 20px;
  }

  .tab-content.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-title {
    font-size: 1.8rem;
  }
  
  .content-description {
    font-size: 0.95rem;
  }
  
  .content-button {
    width: 100%;
    text-align: center;
  }

  /* Pricing */
  .pricing {
    padding: 4rem 5%;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }

 
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: transparent;
    display: none;
  }
  
  .dropdown-grid,
  .dropdown-menu-simple {
    grid-template-columns: 1fr;
    min-width: auto;
    padding: 0;
  }
  
  .dropdown-item {
    padding: 15px;
  }
  .nav-content  { height: 70px !important; }
    .logo img     { height: 50px !important; }
    .mobile-menu  { top: 70px; }

    .mobile-menu-btn {
        display: flex !important;
    }
    .nav-links,
    .nav-right {
        display: none !important;
    }
}
@media (max-width: 480px) {
  
  /* Header */
  .nav-container {
    padding: 0 0.8rem;
  }
  
  
  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }
  
  .hamburger {
    width: 22px;
    height: 16px;
  }
  
  .mobile-menu-link {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .mobile-menu-item {
    padding: 0.8rem;
  }
  
  .mobile-menu-icon {
    width: 40px;
    height: 40px;
  }
  
  .mobile-menu-title {
    font-size: 0.85rem;
  }
  
  .mobile-menu-desc {
    font-size: 0.7rem;
  }
  
 
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero h2 {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    padding: 14px 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }


  .section-title {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-image {
    margin: -1.5rem -1rem 1rem;
    height: 180px;
  }

  .timeline-content h2 {
    font-size: 1.2rem;
  }
  
  .timeline-text {
    padding: 15px;
  }
  
  .step-number {
    padding: 5px 20px;
    font-size: 0.65rem;
  }

  .formation-content h3,
  .coming-soon-banner h3,
  .ai-bottom-cta h2 {
    font-size: 1.5rem;
  }
  
  .formation-stats {
    gap: 10px;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }

  .coming-soon-banner-card {
    padding: 60px 15px;
  }
  
  .coming-soon-content h3 {
    font-size: 1.4rem;
  }

  .tab-trigger {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .content-title {
    font-size: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .old-price {
    font-size: 1.2rem;
  }

 
  
  .nav-content  { height: 64px !important; }
    .logo img     { height: 50px !important; }
    .mobile-menu  { top: 64px; }
    .mobile-menu-content { padding: 0.75rem 1rem 3rem; }

}

/* OVERRIDE FIX — paste at bottom */
@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 99999;
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: block !important;
    }
    .logo img     { height: 50px !important; }
    
    .footer { padding: 60px 0 30px; }
    .footer-main { gap: 36px; }
    .footer-brand { min-width: 100%; max-width: 100%; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    
}
@media (max-width: 480px) {
    .mobile-menu {
        top: 64px !important;
    }
    
}
@media (max-width: 768px) {

  /* Remove container padding */
  .nav-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Flex alignment */
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
  }

  /* Logo flush left */
  .logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .logo img {
    display: block;
    margin-left: 0 !important;
  }

  /* Menu button flush right */
  .mobile-menu-btn {
    margin-right: 0.5rem !important;
    padding-right: 0 !important;
  }

  /* Header background */
  header {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Center the tag + title + paragraph */
.formation-content {
    text-align: center;
}

.formation-tag {
    display: block;
    text-align: center;
}

.formation-content p {
    text-align: center;
}

/* Stats in ONE LINE */
.formation-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* important */
    gap: 10px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

/* Center the button */
.formation-cta {
    display: block;
    margin: 15px auto 0;
    text-align: center;
}
  
}

/* ══════════════════════════════════════════════
   GLOBAL STANDARDIZATION — paste at bottom
══════════════════════════════════════════════ */

/* ── Font ── */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
[lang="ar"] * {
    font-family: 'Cairo', sans-serif;
}

/* ── All Backgrounds ── */
body {
    background: #000;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(185, 122, 30, 0.10) 0%, transparent 60%);
    background-attachment: fixed;
}

section,
.hero,
.features-section,
.Steps,
.formations-premium,
.faq-section,
.feedback-section,
.live-section,
.models-section,
.ai-section,
.footer {
    background: transparent !important;
}

/* ── Section Title ── */
.section-title {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #ffffff, #d4af37) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem !important;
    }
}

/* ── Section Subtitle ── */
.section-subtitle {
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #666 !important;
    line-height: 1.8 !important;
    max-width: 620px !important;
    margin: 0 auto 4rem auto !important;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 3rem !important;
    }
}

/* ── Badge — Universal ── */
.hero-badge,
.hero-badge-Step {
    display: inline-block !important;
    padding: 8px 24px !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #D4AF37 !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    position: relative !important;
    background: rgba(212, 175, 55, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 1.25rem !important;
}

.hero-badge::before,
.hero-badge-Step::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: 100% !important;
    width: 36px !important;
    height: 1px !important;
    margin-right: 14px !important;
    transform: translateY(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5)) !important;
}

.hero-badge::after,
.hero-badge-Step::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    width: 36px !important;
    height: 1px !important;
    margin-left: 14px !important;
    transform: translateY(-50%) rotate(180deg) !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5)) !important;
}

.hero-badge:hover,
.hero-badge-Step:hover {
    border-color: rgba(212, 175, 55, 0.8) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

/* Center badges that are inside centered sections */
.live-top .hero-badge,
.models-header .hero-badge,
.cr-section-head .hero-badge {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 1.25rem auto !important;
}

/* Step badge stays centered inline */
.hero-badge-Step {
    display: block !important;
    width: fit-content !important;
    margin: 1rem auto !important;
    text-align: center !important;
}