// CopyRights document.querySelector('.footer-rights p').innerHTML = `صنع ${new Date().getFullYear()} | المستورد | بواسطة شركة ايجاد`; // ✅ Scroll & Section document.addEventListener("DOMContentLoaded", function() { const sections = document.querySelectorAll('section'); function checkVisibility() { sections.forEach(section => { const position = section.getBoundingClientRect(); if (position.top < window.innerHeight && position.bottom >= 0) { section.classList.add('visible'); } else { section.classList.remove('visible'); } }); } window.addEventListener("scroll", checkVisibility); checkVisibility(); // Check on load });