.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
#scrollTopBtn {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
html {
    scroll-behavior: smooth;
}
.social-icon-container i {
    font-size: 1.1rem;
}
.testimonials-container {
    scrollbar-width: none;
}
.testimonials-container::-webkit-scrollbar {
    display: none;
}
.blog-container {
    scrollbar-width: none;
}
.blog-container::-webkit-scrollbar {
    display: none;
}
.mobile-dropdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0.95);
    transition:
        max-height 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}
.mobile-dropdown.open {
    max-height: 500px;
    opacity: 1;
    transform: scaleY(1);
}
