let esm = "بصمة"; let link = "https://basmahagency.com/"; document.addEventListener("DOMContentLoaded", function () { // Update copyright document.querySelector(".copyright-text p").innerHTML = `صنع بإتقان على ${esm} | 2025`; // Create WhatsApp button container var whatsappContainer = document.createElement("a"); whatsappContainer.href = "https://api.whatsapp.com/send/?phone=966537207113"; whatsappContainer.target = "_blank"; whatsappContainer.style.position = "fixed"; whatsappContainer.style.bottom = "30px"; whatsappContainer.style.right = "35px"; whatsappContainer.style.backgroundColor = "#25D366"; whatsappContainer.style.color = "#fff"; whatsappContainer.style.padding = "10px 15px"; whatsappContainer.style.borderRadius = "30px"; whatsappContainer.style.boxShadow = "0 4px 8px rgba(0, 0, 0, 0.2)"; whatsappContainer.style.display = "flex"; whatsappContainer.style.alignItems = "center"; whatsappContainer.style.fontFamily = "Arial, sans-serif"; whatsappContainer.style.fontSize = "14px"; whatsappContainer.style.zIndex = "1000"; whatsappContainer.style.textDecoration = "none"; // Create WhatsApp icon var icon = document.createElement("img"); icon.src = "https://i.ibb.co/8rvgFKF/whatsapp.png"; icon.alt = "WhatsApp"; icon.style.width = "24px"; icon.style.height = "24px"; icon.style.marginRight = "8px"; // Create text node var text = document.createElement("span"); text.textContent = "خدمة العملاء"; // Append icon and text whatsappContainer.appendChild(icon); whatsappContainer.appendChild(text); document.body.appendChild(whatsappContainer); });