Skip to content
menu
/ Dubai, UAE
connect us
menu
Home
About Us
Services
Case Studies
Insights
Contact Us
Home
About Us
Services
Case Studies
Insights
Contact Us
Facebook
Instagram
Explore Blogs
Stay in the know with insights from industry experts.
Feb 24, 2026
Why Most UAE Businesses Are Failing at Digital Marketing
Feb 24, 2026
The Latest Lead Generation Blueprint: From Click to Customer in Dubai Market
Feb 24, 2026
Branding in Dubai: Why Premium Businesses Win
document.addEventListener("DOMContentLoaded", () => { const banner = document.querySelector(".scroll-zoom-banner"); const media = banner?.querySelector(".scroll-zoom-media"); if (!banner || !media) { console.warn("Scroll zoom banner elements were not found."); return; } let ticking = false; function updateBannerZoom() { const bannerRect = banner.getBoundingClientRect(); const bannerHeight = banner.offsetHeight; /* * Progress: * 0 = banner at its starting position * 1 = banner has been scrolled past */ const scrolledDistance = Math.max(0, -bannerRect.top); const progress = Math.min(scrolledDistance / bannerHeight, 1); /* Change 0.18 to increase or decrease zoom strength */ const zoomAmount = 1 + progress * 0.18; media.style.transform = `scale(${zoomAmount})`; ticking = false; } function requestZoomUpdate() { if (!ticking) { window.requestAnimationFrame(updateBannerZoom); ticking = true; } } window.addEventListener("scroll", requestZoomUpdate, { passive: true }); window.addEventListener("resize", requestZoomUpdate); updateBannerZoom(); });