document.addEventListener("DOMContentLoaded", function () { // ============================== // خدمات القسم // ============================== const services = [ { title: "مبادرة توفير مياه الشرب لمساجد والجوامع", image: "ضع-رابط-الصورة-الأولى-هنا" }, { title: "مبادرة توفير السجاد وتنظيفها للمساجد والجوامع", image: "ضع-رابط-الصورة-الثانية-هنا" }, { title: "مبادرة توفير المنظفات للمساجد والجوامع", image: "ضع-رابط-الصورة-الثالثة-هنا" }, { title: "مشروع بناء المساجد والجوامع", image: "ضع-رابط-الصورة-الرابعة-هنا" } ]; // ============================== // منع التكرار // ============================== if (document.querySelector(".custom-services-section")) { return; } // ============================== // إنشاء القسم // ============================== const section = document.createElement("section"); section.className = "custom-services-section"; section.innerHTML = `
`; // ============================== // تحديد مكان القسم // ============================== // يضع القسم قبل Footer const footer = document.querySelector("footer"); if (footer) { footer.parentNode.insertBefore(section, footer); } else { document.body.appendChild(section); } });