/* Additional custom styles */

/* Simple fade-in-up animation for the hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #020617;
    /* bg-slate-950 */
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    /* bg-slate-800 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
    /* bg-slate-700 */
}

/* Ensure smooth section reveal classes are applied by JS */
.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transform: translateX(0) !important;
}

/* Testimonial Carousel Styles */
.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: slideFadeIn 0.6s ease-out forwards;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}