/* Navbar Styles */
.navbar {
    position: fixed; 
    top: 0;          
    left: 0;         
    width: 100%;   
    height: 9%;  
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #00458b9a; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.405); 
    z-index: 2;   
    font-size: 20px;
}

.navbar-links {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    width: 40%;
    margin: 1%; 
    padding: 2%; 
}

.navbar-links li
 {
    padding: 5%;
    margin: 5%; 
}

.navbar-links a {
    position: relative;
    text-decoration: none; /* No underline by default */
    color: white;
    transition: color 0.3s ease; /* Add a color transition as well */
}

.navbar-links a:hover {
    color: #FFD700; /* Optional: Change color on hover */
}

/* Underline Effect on Hover */
.navbar-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; 
    background-color: #FFD700; 
    left: 0;
    bottom: -5px; 
    transition: width 0.3s ease-in-out; 
}

.navbar-links a:hover::after {
    width: 100%; 
}


