.elementor-538 .elementor-element.elementor-element-bfbb271{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-97c3bd1 *//* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    width: 100%;
    height: auto;

    position: sticky;
    top: 0;
    left: 0;

    z-index: 99999;

    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 8, 0.98),
            rgba(5, 5, 5, 0.94)
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45);

    isolation: isolate;
}


/* =========================================================
   HEADER BACKGROUND GRAPHICS
========================================================= */

.site-header::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: 8%;
    top: -180px;

    background: rgba(93, 71, 255, 0.12);

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

    z-index: -1;
}


.site-header::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: 8%;
    top: -150px;

    background: rgba(0, 190, 255, 0.09);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    width: 100%;
    max-width: 1350px;

    min-height: 105px;

    margin: 0 auto;

    padding: 8px 25px;

    display: flex;
    align-items: center;

    gap: 45px;

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.logo-box {
    flex-shrink: 0;

    position: relative;

    z-index: 10;
}


.logo-box a {
    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;
}


.logo-box img {
    width: 100px;
    height: 100px;

    object-fit: contain;

    display: block;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* Logo hover */

.logo-box img:hover {
    transform: scale(1.06);

    filter:
        drop-shadow(
            0 0 15px rgba(0, 198, 255, 0.25)
        );
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    list-style: none;

    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 34px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   MENU ITEM
========================================================= */

.nav-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   MENU LINK
========================================================= */

.nav-menu li a {
    position: relative;

    display: inline-block;

    padding: 10px 0;

    color: #ffffff !important;

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.5;

    letter-spacing: 0.2px;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   ALL MENU WHITE
========================================================= */

.nav-menu li a,
.nav-menu li.active a,
.nav-menu li a:visited {
    color: #ffffff !important;
}


/* =========================================================
   MENU HOVER
========================================================= */

.nav-menu li a:hover {
    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   MENU UNDERLINE
========================================================= */

.nav-menu li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #6d5dfc,
            #00c6ff
        );

    box-shadow:
        0 0 8px rgba(0, 198, 255, 0.65);

    transform: translateX(-50%);

    transition:
        width 0.35s ease,
        box-shadow 0.35s ease;
}


/* Hover underline */

.nav-menu li a:hover::after {
    width: 100%;

    box-shadow:
        0 0 12px rgba(0, 198, 255, 0.85);
}


/* =========================================================
   ACTIVE HOME
========================================================= */

.nav-menu li.active a {
    color: #ffffff !important;

    font-weight: 600;
}


.nav-menu li.active a::after {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            #6d5dfc,
            #00c6ff
        );

    box-shadow:
        0 0 12px rgba(0, 198, 255, 0.8);
}


/* =========================================================
   MENU GRAPHIC DOT
========================================================= */

.nav-menu li.active::before {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    top: 2px;
    right: -7px;

    border-radius: 50%;

    background: #00c6ff;

    box-shadow:
        0 0 8px #00c6ff;

    animation: menuDot 2s infinite ease-in-out;
}


@keyframes menuDot {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 12px;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.menu-toggle:hover {
    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(0, 198, 255, 0.5);

    box-shadow:
        0 0 20px rgba(0, 198, 255, 0.12);

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .header-container {
        gap: 30px;

        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-menu {
        gap: 22px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .logo-box img {
        width: 90px;
        height: 90px;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 950px) {

    .header-container {
        min-height: 90px;

        gap: 20px;
    }

    .logo-box img {
        width: 80px;
        height: 80px;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-menu li a {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .site-header {
        position: sticky;
        top: 0;
    }


    .header-container {
        min-height: 78px;

        padding:
            6px 18px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;
    }


    /* Logo */

    .logo-box img {
        width: 70px;
        height: 70px;
    }


    /* Mobile button */

    .menu-toggle {
        display: flex;
    }


    /* Navigation */

    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        align-items: stretch;

        justify-content: flex-start;

        background:
            rgba(5, 5, 5, 0.98);

        border-top:
            1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.65);

        backdrop-filter: blur(20px);

        -webkit-backdrop-filter: blur(20px);
    }


    /* Open menu */

    .main-navigation.show {
        display: block;
    }


    /* Mobile menu */

    .nav-menu {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding:
            10px 22px 18px;
    }


    .nav-menu li {
        width: 100%;
    }


    .nav-menu li a {
        width: 100%;

        display: block;

        padding:
            14px 5px;

        color: #ffffff !important;

        font-size: 15px;

        font-weight: 500;
    }


    /* Mobile underline */

    .nav-menu li a::after {
        left: 5px;

        transform: none;

        bottom: 5px;

        width: 0;
    }


    .nav-menu li a:hover::after,
    .nav-menu li.active a::after {
        width: 55px;
    }


    /* Remove active dot on mobile */

    .nav-menu li.active::before {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-container {
        min-height: 72px;

        padding:
            5px 14px;
    }


    .logo-box img {
        width: 64px;
        height: 64px;
    }


    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 22px;

        border-radius: 10px;
    }


    .nav-menu {
        padding-left: 18px;
        padding-right: 18px;
    }


    .nav-menu li a {
        font-size: 14px;

        padding-top: 13px;
        padding-bottom: 13px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.nav-menu li a:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid #00c6ff;

    outline-offset: 4px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */