@@ -104,7 +104,7 @@
// Smooth scroll using requestAnimationFrame
function scrollStep() {
if (currentScroll < targetScroll) {
- window.scrollTo(0, currentScroll += 5); // Adjust speed here (e.g., +=5)
+ window.scrollTo(0, currentScroll += 1); // Adjust speed here (e.g., +=5)
requestAnimationFrame(scrollStep);
}