Our Services

document.addEventListener('DOMContentLoaded', function() { const video = document.getElementById('hero-video'); if (video) { video.addEventListener('loadedmetadata', function() { this.playbackRate = 0.5; }); // Ensure it plays on any user interaction if autoplay fails video.addEventListener('click', function() { if (this.paused) { this.play(); } }); } });
Scroll to Top