Contact information

#wa-popup-btn{ position:fixed; bottom:20px; right:20px; background:#25D366; width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(0,0,0,0.3); z-index:999999; cursor:pointer; } #wa-popup-btn i{ color:#fff; font-size:34px; } #wa-popup-box{ position:fixed; bottom:90px; right:20px; width:300px; background:#fff; border-radius:15px; box-shadow:0 5px 15px rgba(0,0,0,0.3); padding:15px; font-family:Arial,sans-serif; z-index:999999; display:none; } #wa-popup-box h3{ margin:0 0 10px; color:#25D366; } #wa-popup-box p{ font-size:14px; line-height:1.6; margin-bottom:10px; color:#000; } #wa-popup-box a{ text-decoration:none; } #close-wa{ position:absolute; top:10px; right:15px; cursor:pointer; font-size:18px; color:#000; }

MananSMM Support 💚

Assalam-o-Alaikum!

Welcome to MananSMM Support 💚

Please send your issue or Order ID.
Our team will reply soon ✅

📢 WhatsApp Channel

👥 WhatsApp Group

🌐 Website

💬 Chat on WhatsApp
document.addEventListener("DOMContentLoaded", function(){ const waBtn = document.getElementById("wa-popup-btn"); const waBox = document.getElementById("wa-popup-box"); const closeWa = document.getElementById("close-wa"); // WhatsApp icon par click karne par open ya close (toggle) hoga waBtn.onclick = function(){     if (waBox.style.display === "block") {         waBox.style.display = "none";     } else {         waBox.style.display = "block";     } }; // "✖" close button par click karne par band hoga closeWa.onclick = function(){     waBox.style.display = "none"; }; });