*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(15,23,42,0.08);
    position:sticky;
    top:0;
    z-index:9999;
    font-family:'Inter',sans-serif;
    box-shadow:0 8px 30px rgba(15,23,42,0.06);
}

/* NAVBAR LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-new{
    width:280px;
}

.navbar-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.byte {
    color: #00599d;
}

.byte{
    color: #00599d;
    position:relative;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#475569;
    font-size:15px;
    font-weight:500;
    position:relative;
    transition:0.3s ease;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background: #00599d;
    transition:0.3s ease;
}

.nav-links a:hover{
    color:#0f172a;
}

.nav-links a:hover::after{
    width:100%;
}


/* ACTIVE NAV LINK */

.nav-links a.active{
    color:#0f172a;
    font-weight:600;
}

.nav-links a.active::after{
    width:100%;
}

.nav-links .active-btn{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(147,51,234,0.35);
}


.btn{
    background: #00599d;
    color:#fff !important;
    padding:10px 18px;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(37,99,235,0.25);
    transition:0.3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(147,51,234,0.35);
}

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:10000;
}

.hamburger span{
    width:24px;
    height:3px;
    background:#0f172a;
    border-radius:3px;
}

.mega-menu-title{
    font-size:14px;
    font-weight:700;
    color:#1f4f8a;
    text-transform:uppercase;
    letter-spacing:0.8px;
    margin-bottom:18px;     /* Space before first menu item */
}

.mobile-menu{
    position:fixed;
    top:-100%;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(20px);
    display:flex;
    flex-direction:column;
    gap:25px;
    padding:40px 25px;
    transition:0.4s ease;
    box-shadow:0 20px 40px rgba(15,23,42,0.08);
    z-index:10001;
}

.mobile-menu a{
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    color:#334155;
    transition:0.3s;
}

.mobile-menu a:hover{
    color:#00599d;
}

.mobile-menu.active{
    top:70px;
}

@media (max-width:900px){
    .nav-links{display:none;}
    .hamburger{display:flex;}
    .navbar{padding:15px 25px;}
}

@media (max-width: 768px) {

    .nav-actions-new {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 12px;
    }
    .nav-logo-new{
        width:190px;
    }

    .btn-signin-new,
    .btn-logout-new {
        margin-top:-5px;
        width: 70%;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        display: block;
    }
}