.elementor-105 .elementor-element.elementor-element-7401389{--display:flex;}.elementor-105:not(.elementor-motion-effects-element-type-background), .elementor-105 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#030712;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-1f70ac0 */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

    :root {
        --header-bg: rgba(3, 7, 18, 0.95);
        --accent-blue: #007cf0;
        --text-gray: #9ca3af;
    }

    .premium-header {
        font-family: 'Inter', sans-serif;
        background: var(--header-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 8%;
        position: sticky;
        top: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* LOGO STYLE */
    .logo-container {
        text-decoration: none;
        display: flex;
        align-items: center;
        z-index: 10001;
    }

    .logo-text {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: -1px;
        color: #ffffff;
        text-transform: uppercase;
    }

    .logo-text span {
        color: var(--accent-blue);
    }

    /* NAVIGATION (DESKTOP) */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
        margin: 0;
        padding: 0;
        transition: all 0.4s ease-in-out;
    }

    .nav-link {
        text-decoration: none;
        color: var(--text-gray);
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: #ffffff;
    }

    /* CTA BUTTON */
    .header-cta {
        background: var(--accent-blue);
        color: #ffffff;
        text-decoration: none;
        padding: 10px 22px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 124, 240, 0.2);
        z-index: 10001;
    }

    /* MOBILE TOGGLE (HAMBURGER) */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 10001;
        padding: 10px;
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 10px;
        transition: 0.3s;
    }

    /* HAMBURGER TO 'X' ANIMATION */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* MOBILE MENU RESPONSIVE */
    @media (max-width: 1024px) {
        .premium-header {
            padding: 15px 5%;
        }

        .mobile-toggle {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%; /* Hidden by default */
            width: 80%;
            height: 100vh;
            background: #030712;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        }

        .nav-menu.active {
            right: 0; /* Slide in */
        }

        .nav-link {
            font-size: 22px; /* Larger links for mobile */
        }

        .header-cta {
            display: none; /* Hide button on mobile to save space, or move inside menu */
        }
        
        .nav-menu .header-cta-mobile {
            display: block !important;
            background: var(--accent-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
        }
    }

    .header-cta-mobile {
        display: none;
    }/* End custom CSS */