/* Add custom Js styles below */ document.addEventListener('DOMContentLoaded', function () { if (!document.body.classList.contains('index')) return; const overlay = `
`; document.body.insertAdjacentHTML("afterbegin", overlay); // إغلاق البوب أب document.getElementById('closeButton').addEventListener('click', function () { const overlay = document.querySelector('.popup-overlay'); if (overlay) overlay.remove(); }); });