/* ===== Navbar (Fixed Top) ===== */
.navbar {
    position: fixed;
    /* stays always at top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0;
    /* border-top: 20px solid #0a5e2c; */
    background: #142345;
    /* dark theme */
}

.header .logo {
    /* width: 140px; */
    height: 110px;
}

.header .nav-ul {
    gap: 10px;
}

/* Highlight for active menu item */
.navbar .nav-link.active,
.navbar .current-menu-item>.nav-link,
.navbar .current_page_item>.nav-link,
.navbar .current-menu-ancestor>.nav-link {
    /* font-weight: bold; */
    background-color: #fff;
    color: #142345 !important;
    /* border-radius: 5px; */
    /* border-bottom: 3px solid #3f5782; */
}


.header .nav-link {
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    margin: 0 3px;
    padding: 5px 10px;
    text-align: center;
}

.header .nav-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .header .logo {
        height: 90px;
    }

    .nav-link {
        color: #000;
    }

    .navbar-toggler {
        background-color: #fff;
    }
}