/* Navigation Bar Styling */
#navbar {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

/* Dropdown Menu Styling */
.group .absolute {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

.group:hover .absolute {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styling */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 40;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}
