Enquire Today

document.addEventListener("DOMContentLoaded", function () { document.querySelectorAll(".hero-button").forEach(function(button) { button.addEventListener("click", function (e) { e.preventDefault(); const id = this.getAttribute("data-target"); document.querySelectorAll(".reveal-section").forEach(function(section) { section.style.display = "none"; }); const target = document.getElementById(id); if (target) { target.style.display = "block"; target.scrollIntoView({ behavior: "smooth" }); } }); }); });