/* .hide-scroll::-webkit-scrollbar {
    display: none;
}
.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html {
    scroll-behavior: smooth;
} */
.hero-gradient {
    background: linear-gradient(to right, rgba(92, 121, 94, 0.9), rgba(92, 121, 94, 0.3));
}
/* Smooth transition for mobile menu */
.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.active {
    max-height: 555px; /* Approximate height */
    opacity: 1;
}
/* Back to Top Button Animation */
#back-to-top {
    transition: opacity 0.4s, transform 0.4s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Break Line */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* FAQ Accordion */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.faq-content.active {
    opacity: 1;
}