/* Global Font Setting */
body {
    font-family: 'Poppins', sans-serif;
}

/* Smooth Scroll Behavior */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px; /* Adjust based on content height if needed */
    opacity: 1;
}