quick contact:

My account

Login

document.addEventListener("DOMContentLoaded", function () { const popup = document.getElementById("techPopup"); const closeBtn = document.querySelector(".popup-close"); if (!popup) return; let shownTimes = 0; function showPopup(delay) { setTimeout(() => { if (shownTimes < 3) { popup.style.display = "flex"; shownTimes++; } }, delay); } showPopup(10000); // 10 sec showPopup(25000); // +15 sec showPopup(55000); // +30 sec closeBtn.addEventListener("click", () => { popup.style.display = "none"; }); });