document.addEventListener('DOMContentLoaded', function () {
// عرض النافذة عند تحميل الصفحة
document.getElementById('custom-popup').style.display = 'block';
});
function closePopup() {
// إغلاق النافذة
document.getElementById('custom-popup').style.display = 'none';
}
function redirectToLogin() {
// توجيه المستخدم إلى صفحة تسجيل الدخول
window.location.href = 'https://elhefnawygroup.com/index.php?route=account/login';
}