/* Style the navigation menu */
.navbar-nav {
    display: flex;
    justify-content: center;
    background: none; /* Remove background */
    padding: 10px 0;
}

/* Menu items */
.navbar-nav li {
    list-style: none;
    margin: 0 15px;
    position: relative;
}

/* Links */
.navbar-nav li a {
    text-decoration: none;
    color: #153d6f; /* UG blue */
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease-in-out;
}

/* Hover effect */
.navbar-nav li a:hover {
    color: #1e5a8d; /* Lighter blue */
}

/* Dropdown indicator (optional, if dropdowns exist) */
.navbar-nav li a::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 5px;
    color: #0a2f5a;
}

/* Hide dropdown indicator if not needed */
.navbar-nav li a.no-dropdown::after {
    content: "";
}
