Celebrate Eid with 30% OFF all our services 💻✨
×
Celebrate Eid with 30% OFF all our services 💻✨
// ===== SHOW ONLY ON SUBSCRIBE PAGE ===== if (window.location.href.includes("/subscribe/")) {
// WAIT UNTIL FLUENT FORM LOADS function moveFormToPopup(){ var form = document.querySelector('.fluentform_wrapper_3');
if(form){ document.getElementById('popupFormContainer').appendChild(form); form.style.display = 'block'; } else { setTimeout(moveFormToPopup, 500); } }
window.onload = function(){
moveFormToPopup();
// SHOW POPUP AFTER 3 SECONDS setTimeout(function(){ document.getElementById('eidPopupOverlay').style.display = 'flex'; },3000);
};
// CLOSE POPUP function closePopup(){ document.getElementById('eidPopupOverlay').style.display = 'none'; }
// COUNTDOWN TIMER const endDate = new Date("March 28, 2026 23:59:59").getTime();
const timer = setInterval(function(){
const now = new Date().getTime(); const distance = endDate - now;
if(distance < 0){ clearInterval(timer); document.getElementById("countdown").innerHTML = "❌ Offer has ended"; return; } const days = Math.floor(distance / (1000*60*60*24)); const hours = Math.floor((distance % (1000*60*60*24)) / (1000*60*60)); const minutes = Math.floor((distance % (1000*60*60)) / (1000*60)); const seconds = Math.floor((distance % (1000*60)) / 1000); document.getElementById("countdown").innerHTML = "⏳ Ends in: " + days + "d " + hours + "h " + minutes + "m " + seconds + "s"; },1000); }
You cannot copy content of this page