Sweet 13. Sweeter Deals.

00

Days

:
00

Hours

:
00

Minutes

:
00

Seconds

examples of businesses using CRM

Contact Us

Reach out to us for any inquiry

You must enter full name
You must enter email
You must enter message

We received your query

We will reply to you very soon :)

if (wasClosed) return; const isExpired = now >= FIXED_EXPIRY; if (!isExpired) { let popupShownThisSession = false; function showPopup2() { if (!popupShownThisSession) { popup2.style.display = "flex"; popupShownThisSession = true; } } const isMobile = ('ontouchstart' in window) || (navigator.maxTouchPoints > 0); if (isMobile) { history.pushState(null, "", location.href); window.addEventListener("popstate", function () { showPopup2(); history.pushState(null, "", location.href); }); document.addEventListener("visibilitychange", function () { if (document.visibilityState === "hidden") { showPopup2(); } }); let lastScrollY = window.scrollY; let lastScrollTime = Date.now(); window.addEventListener("scroll", function () { const now2 = Date.now(); const delta = window.scrollY - lastScrollY; const timeDiff = now2 - lastScrollTime; if (delta > 40 && timeDiff < 300 && window.scrollY > 300) { showPopup2(); } lastScrollY = window.scrollY; lastScrollTime = now2; }, { passive: true }); } else { document.addEventListener("mouseleave", function (e) { if (!e.relatedTarget && e.clientY <= 10) { showPopup2(); } }); } } function tick() { const remaining = FIXED_EXPIRY - Date.now(); if (remaining <= 0) { popup2.style.display = "none"; const loopTimer = popup2.querySelector(".loop-timer"); if (loopTimer) { loopTimer.innerHTML = "

Offer expired

"; } clearInterval(interval); return; } document.getElementById("popup2-days").innerText = String(Math.floor(remaining / 86400000)).padStart(2, "0"); document.getElementById("popup2-hours").innerText = String(Math.floor((remaining / 3600000) % 24)).padStart(2, "0"); document.getElementById("popup2-minutes").innerText = String(Math.floor((remaining / 60000) % 60)).padStart(2, "0"); document.getElementById("popup2-seconds").innerText = String(Math.floor((remaining / 1000) % 60)).padStart(2, "0"); } const interval = setInterval(tick, 1000); tick(); } closeBtn2.addEventListener("click", function () { popup2.style.display = "none"; localStorage.setItem(STORAGE_KEY_CLOSED, "true"); }); initPopup2(); })();