/* Default Navbar (Before Scroll) */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px 10px;
    background-color: #2563eb;   /* BLUE */
    transition: all 0.35s ease;
    z-index: 1000;
}

/* On Scroll */
.navbar.scrolled {
    background-color: #ffffff;   /* WHITE */
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 14px 0;
}

/* Layout */
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;   /* White initially */
    transition: all 0.3s ease;
}

.navbar.scrolled .logo a {
    color: #111111;   /* Black after scroll */
    font-size: 18px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;   /* White initially */
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: #111111;   /* Black after scroll */
}

/* Hover */
.nav-links a:hover {
    opacity: 0.8;
}
.btn-outline-nvr{
    padding: 8px 18px;
    border: 2px solid #e2e4ea;
    color: #2563eb;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-nvr:hover {
    background-color: #07183c;
    color: #ffffff;
    border-color: transparent;
}   
.btn-primary-nvr {
    padding: 8px 18px;
    background-color: hsl(221, 95%, 22%);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #2563eb;
        flex-direction: column;
        width: 220px;
        padding: 15px;
        display: none;
        gap: 15px;
    }

    .nav-links a {
        display: block;
    }

    .nav-links.show {
        display: flex;
    }
}