script>
// Function to check scroll position and show/hide the button
function checkScroll() {
var callNowButton = document.getElementById('callNowButton');
if (window.scrollY >= 200) {
callNowButton.style.display = 'block';
} else {
callNowButton.style.display = 'none';
}
}
// Add scroll event listener
window.addEventListener('scroll', checkScroll);
// Initial check in case the user starts below 200px
checkScroll();