
/* ================= NAVBAR ================= */
.main-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    z-index: 9999;
}

/* ================= BANNER FIX FOR FIXED NAVBAR ================= */
body{
    padding-top: 66px;
}

/* ================= BRAND ================= */
.navbar-brand{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.navbar-brand img{
    width: 52px;
    height: 52;
}

/* ================= NAV LINKS ================= */
.nav-link{
    color: #ffffff !important;
    margin: 0 14px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: 0.35s ease;
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #c8d600;
    transform: translateX(-50%);
    transition: 0.35s ease;
}

.nav-link:hover{
    color: #c8d600 !important;
}

.nav-link:hover::after{
    width: 100%;
}

/* ================= TOGGLER ================= */
.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px){

    .nav-link{
        margin: 8px 0;
        text-align: center;
    }

    .navbar-nav{
        padding-left: 0;
    }
}
