/* Custom Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    /* Offset for fixed navbar */
    scroll-padding-top: 80px; 
}

/* Ensure Lucide Icons are vertically aligned */
.lucide {
    vertical-align: middle;
}

/* Mobile Menu Transition */
#mobile-menu {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
#mobile-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* FAQ Animation */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Gallery Lightbox */
#lightbox.active {
    display: flex;
}