Scroll to Top
document.addEventListener("DOMContentLoaded", function (){ const circle = document.querySelector(".scroll-circle"); if (circle) { window.addEventListener("scroll", function () { let scrollY = window.scrollY; circle.style.transform = `translate(-50%, ${-scrollY * 0.5}px)`; }); } });