Skip to content
Marketing & SEO
// Scroll reveal animations
const obs = new IntersectionObserver((entries) => {
entries.forEach(e => { if(e.isIntersecting) e.target.classList.add('vis'); });
}, {threshold: 0.12});
document.querySelectorAll('.reveal').forEach(el => obs.observe(el));