/* Default Navbar (Before Scroll) */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 28px 0;
    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{
    padding: 8px 18px;
    border: 2px solid #e2e4ea;
    color: #2563eb;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}