
.navbar-header {
    position: fixed;
    top: 15px;
    width: 100%;
    z-index: 999;
}

.navbar-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .1);

    height: 80px;
    padding: 0 25px;

    transition: .4s;
}

.navbar.scrolled {
    background: #062958;
    transform: scale(.96);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

/* Logo */

.navbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 45px;
}

.logo-text h1 {
    color: white;
    font-size: 18px;
    margin: 0;
}

.logo-text p {
    color: #ddd;
    font-size: 12px;
}

.navlinks {
    font-size: 13px;
}

/* Desktop */

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.desktop-nav a,
.dropdown-btn {
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;

    background: white;
    min-width: 280px;

    border-radius: 15px;

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    color: black;
    padding: 15px 20px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Buttons */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .2);
    color: white;
    cursor: pointer;
}

.enquire-btn,
.apply-btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
}

.enquire-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, .2);
}

.apply-btn {
    background: #062958;
    color: white;
}

/* Mobile */

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: #062958;
    border-radius: 0 0 20px 20px;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: white;
    padding: 12px 0;
    text-decoration: none;
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    background: none;
    color: white;
    border: none;
    padding: 12px 0;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-apply,
.mobile-enquire {
    margin-top: 15px;
    text-align: center;
    border-radius: 50px;
    padding: 12px;
}

.mobile-apply {
    background: white;
    color: #062958 !important;
}

.mobile-enquire {
    border: 1px solid rgba(255, 255, 255, .2);
}

/* Responsive */

@media (max-width: 992px) {

    .desktop-nav,
    .navbar-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/*NAVBAR ICONS*/
.dropdown-btn,
.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-btn svg,
.mobile-dropdown-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.dropdown:hover .dropdown-btn svg {
    transform: rotate(180deg);
}

.mobile-dropdown.active .mobile-dropdown-btn svg {
    transform: rotate(180deg);
}

.search-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .2);
    color: white;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 20px;
    height: 20px;
}