/* 🏥 Header */
header {
    background-color: white;
    padding: 35px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    gap: 20px; /* Space between the logo and the navigation */
}

header .logo {
    position: absolute;
    left: 20px; /* Push the logo to the left */
    top: 50%; /* Position it vertically at the center */
    transform: translateY(-50%); /* Adjusts for the exact center */
}

header .logo img {
    display: block;
    max-width: 80px; /* Adjust logo size */
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #ffd700;
}
/* Hide the desktop nav in mobile */
@media (max-width: 768px) {
    nav {
        display: none; /* Hide the desktop menu */
    }
}

