/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
    background: #E8E8FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFE8EF;
}

/* Reveal on Scroll Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.from-left {
    transform: translateX(-30px);
}

.reveal-on-scroll.from-left.is-visible {
    transform: translateX(0);
}