// Simple popup setTimeout(function () { // Create overlay var overlay = document.createElement("div"); overlay.style.position = "fixed"; overlay.style.top = "0"; overlay.style.left = "0"; overlay.style.width = "100%"; overlay.style.height = "100%"; overlay.style.background = "rgba(0,0,0,0.6)"; overlay.style.zIndex = "999999"; overlay.style.display = "flex"; overlay.style.alignItems = "center"; overlay.style.justifyContent = "center"; // Create card var card = document.createElement("div"); card.style.width = "90%"; card.style.maxWidth = "450px"; card.style.background = "#fff"; card.style.borderRadius = "10px"; card.style.padding = "20px"; card.style.textAlign = "center"; card.style.boxShadow = "0 8px 24px rgba(0,0,0,0.35)"; // Add content card.innerHTML = "

Increase your chance of getting hired by 2–4x

" + "

Stand out with Practical AI skills employers now expect.

" + "

Train with our Practical AI Short Course.

" + "Learn More" + "
Tap outside or click Close to dismiss
"; // Close button var closeBtn = document.createElement("div"); closeBtn.textContent = "×"; closeBtn.style.position = "absolute"; closeBtn.style.top = "14px"; closeBtn.style.right = "18px"; closeBtn.style.fontSize = "26px"; closeBtn.style.cursor = "pointer"; closeBtn.style.color = "#333"; closeBtn.onclick = function () { document.body.removeChild(overlay); }; card.appendChild(closeBtn); overlay.appendChild(card); document.body.appendChild(overlay); }, 2500); // Popup shows 2.5 seconds after page loads