/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Section */
.header {
    display: flex;
    flex-direction: column; /* Stack logo and navbar */
    align-items: center; /* Center the content */
    padding: 20px 0; /* Add vertical spacing */
    background-color: #111;
    border-bottom: 2px solid #2596be;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Logo Styling */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Add spacing between the logo and navbar */
}

.logo img {
    max-height: 80px; /* Adjust the height of the logo */
    width: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure proper scaling */
    border-radius: 50%; /* Make the logo circular */
    border: 2px solid black; /* Optional: Add a border for emphasis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Add shadow for depth */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    opacity: 0.9;
}

/* Navbar Styling */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #111; /* Match header background */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #2596be;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo img {
        max-height: 60px; /* Smaller logo on medium screens */
    }

    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 50px; /* Even smaller logo on small screens */
    }

    .nav-links {
        gap: 10px; /* Adjust spacing between links */
    }
}
