/* Add custom Js styles below */ /* ============================================================== محول الصور - يحول الـ divs الكسولة إلى وسوم img حقيقية يعمل على جميع sections في الصفحة ============================================================== */ document.addEventListener('DOMContentLoaded', () => { const sections = document.querySelectorAll('section.s-block.s-block--banners.container'); sections.forEach(section => { const bannerDivs = section.querySelectorAll('.lazy__bg'); bannerDivs.forEach(div => { const imageUrl = div.getAttribute('data-bg'); if (!imageUrl) return; const parent = div.parentNode; parent.style.display = 'block'; const img = document.createElement('img'); img.src = imageUrl; img.alt = ''; img.className = 'w-full h-full object-contain'; img.loading = 'lazy'; img.style.width = '100%'; img.style.height = '100%'; img.style.display = 'block'; div.parentNode.replaceChild(img, div); }); }); }); /* ============================================================== نهاية كود محول الصور ============================================================== */ document.addEventListener("DOMContentLoaded", function() { // تحديد الـ h3 داخل العنصر