contact us

Ready to take your business to the next level?
Get in touch for a complimentary review and consultation

Inquiry Form

6383 Westheimer Rd, Houston, TX 77057

713-781-7700

document.addEventListener("DOMContentLoaded", function () { const img = document.getElementById("case-study-img"); // Create the cursor circle const cursorCircle = document.createElement("div"); cursorCircle.classList.add("cursor-circle"); cursorCircle.innerText = "VIEW CASE STUDY"; document.body.appendChild(cursorCircle); // Show circle on hover img.addEventListener("mouseenter", () => { cursorCircle.style.opacity = "1"; }); // Hide circle when leaving img.addEventListener("mouseleave", () => { cursorCircle.style.opacity = "0"; }); // Move circle with cursor img.addEventListener("mousemove", (e) => { cursorCircle.style.left = e.clientX + "px"; cursorCircle.style.top = e.clientY + "px"; }); });