html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f3f4f6; 
}
::-webkit-scrollbar-thumb {
    background: #047857; 
    border-radius: 5px;
    border: 2px solid #f3f4f6;
}
::-webkit-scrollbar-thumb:hover {
    background: #065f46; 
}

/* Animations */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 25px -5px rgba(4, 120, 87, 0.6); }
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite;
}

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

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