/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

header {
    background-color: #004080;
    color: white;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    max-width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

.nav-links.active {
    display: block;
    position: absolute;
    background-color: #004080;
    width: 100%;
    top: 60px;
    left: 0;
    padding: 10px 0;
    text-align: center;
}

.nav-links li {
    margin: 10px 0;
}

/* Banner Styles */
.banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height for a professional look */
    overflow: hidden;
    background-color: #ccc; /* Fallback color while images load */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * 6); /* Adjust based on the number of images */
}

.slides img {
    width: 100%;
    height: 300px; /* Matches banner height */
    object-fit: cover; /* Ensures the images are cropped to fit without distortion */
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #004080;
    }
}
