*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
   
}

nav {
    position: fixed; /* Keeps the navbar fixed at the top */
    top: 0; 
    left: 0;
    right: 0;
    height: 70px;
    z-index: 100; /* Ensures the navbar appears above other elements */
    background: #004274;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for better visibility */
    
}

nav ul{
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li{
    list-style-type: none;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    padding-right: 40px;
    font-size: 23px;
}

.menu-icon{
    display: none;
   
}


.menu-icon i{
    color: #fff;
    font-size: 30px;
}
a:hover{
    color: rgb(236, 234, 234);
}

@media (max-width:600px) {
    nav ul{
        position: absolute;
        top: 60px;
        left: 10;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #004274;
        gap: 0;
        overflow: hidden;
        width: 100%;
        padding-left: 9%;
    }
    nav ul li{
        padding: 20px;
        padding-top: 0;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        transition: all 0.5s;
        position: absolute;
       z-index: 100;
      
       
       

        
    }
}

.logo-container {
    text-align: left;
    text-decoration: none;
}

.logo {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
   
}

.slogan {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #dcdcdc; /* Light gray */
    
   
}

.navbar a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.logo-container a {
    text-decoration: none; /* Removes the underline */
}

.logo, .slogan {
    text-decoration: none; /* Ensures no underline on text */
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    width: 150px; /* Default size */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Add hover animation */
     /* margin-top: 10px;  */
}

.logo-image:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}



/* -- footer css
-------------------------------------- -- */
/* Ensure the body and html take the full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Make the container flex to occupy remaining space */
.container {
    flex: 1;
}

/* Footer sticks to the bottom */
footer {
    background-color: #003366;
    padding: 20px;
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 20px; /* Push the footer to the end */
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures content stacks on smaller screens */
}

footer .social {
    display: flex;
    gap: 15px;
}
    footer .social {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 15px;
    }
    
    footer .social li {
        display: inline;
    }
    
    footer .social a {
        color: #fff;
        text-decoration: none;
    }
    
    footer .social a:hover {
        text-decoration: underline;
    }

    