// فعالسازی Lazy Load برای تصاویر
document.addEventListener("DOMContentLoaded", function() {
let images = document.querySelectorAll('img.lazyload');
images.forEach(function(img) {
img.src = img.getAttribute('data-src');
img.onload = function() {
img.classList.remove('lazyload');
};
});
});