 /* Logo Styling */
 .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.logo img {
    width: 50px; /* Adjust size */
    height: auto;
    border-radius: 50%; /* Circular logo */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Optional Hover Effect */
.logo:hover {
    transform: scale(1.05);
    transition: 0.3s;
}