// Wait for the DOM to be ready
document.addEventListener('DOMContentLoaded', function() {
// Get all "Start Now" buttons
var enrollButtons = document.querySelectorAll('.lp-button.button-enroll-course');// Loop through each button
enrollButtons.forEach(function(button) {
// Change button text to "WhatsApp Now"
button.textContent = 'WhatsApp Now';// Apply initial styling to match WhatsApp theme
button.style.backgroundColor = '#25D366'; // WhatsApp green
button.style.color = '#fff'; // White text
button.style.padding = '10px 20px'; // Padding
button.style.border = 'none'; // No border
button.style.borderRadius = '4px'; // Border radius
button.style.fontFamily = 'Arial, sans-serif'; // Font
button.style.cursor = 'pointer'; // Pointer cursor
button.style.animation = 'blinkEffect 1s infinite'; // Apply blinking animation// Add click event listener
button.addEventListener('click', function(event) {
// Prevent default button behavior
event.preventDefault();// Open WhatsApp chat with the specified number
window.open('https://wa.me/923497772773', '_blank');
});
});// Add the blinking animation to the document
var style = document.createElement('style');
style.innerHTML = `
@keyframes blinkEffect {
0% { background-color: #25D366; color: #fff; }
50% { background-color: black; color: #fff; }
100% { background-color: #25D366; color: #fff; }
}
`;
document.head.appendChild(style);
});