/* @media screen and (min-width: 900px) {
    #menuicon {
        display: none !important;
    }

    #myNav {
        display: none;
    }

    .navbar {
        background-color: black !important;
        font-family: "MetropolisRegular";
    }
}

media="screen and (max-width: 799px)" {
    #menuicon {
        display: block;
        position: fixed;
        top: 5%;
        right: 5%;
        color: white;
    }
}

media="screen and (max-width: 799px)" {
    .overlay {
        height: 0%;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.9);
        overflow-y: hidden;
        transition: 0.5s;
    }
}

@media screen and (max-width: 799px) {
    .overlay .closebtn {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
    }

    .overlay a {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }

    .navbar {
        display: none;
    }
} */


/* === Desktop Menu Style === */
.desktop-menu .navbar-nav a {
    color: rgba(255, 255, 255, .5);
     padding: 10px 20px;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-family: "MetropolisRegular";
}

.desktop-menu .navbar-nav a:hover,
.desktop-menu .navbar-nav .current-menu-item a {
    background-color: white;
    color: black !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    font-size: 18px;
    font-family: "MetropolisRegular";
}

/* === Mobile Overlay Menu === */
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 2rem;
    color: #818181;;
    display: none;
    transition: 0.5s;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#mobile-menu-overlay ul {
    display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

#mobile-menu-overlay li {
    margin: 20px 0;
}

#mobile-menu-overlay a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
}

#mobile-menu-overlay a:hover {
    background-color: rgba(0, 0, 0, 0.9);
    color: white !important;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 20px;
}

/* Close Button */
#close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Force visibility rules */
@media (min-width: 992px) {
    #mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .desktop-menu {
        display: none !important;
    }
}



.siteHeaderMain {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #000;
    transition: all 0.3s ease;
}



.hero-circle-wrapper {
	height: 100vh;
	width: 100%;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-circle-wrapper svg {
    top: 0;
    height: 100%;
    width: 100%;
}