Get in touch

Ready to Test Your AI? Let's Talk.

Book a free scoping call. We’ll review your AI application, identify your attack surface, and give you a fixed-price quote — no obligations.

Bellavi AI © 2026 | All Rights Reserved

// ===== SCROLL PERFORMANCE FIX ===== // Kill Elementor motion effects and sticky handlers to prevent scroll lag document.addEventListener('DOMContentLoaded', function() { // Wait for Elementor to initialize, then kill its scroll handlers setTimeout(function() { // Remove motion effects from all elements document.querySelectorAll('[data-settings]').forEach(function(el) { var settings = el.getAttribute('data-settings'); if (settings && (settings.indexOf('motion_fx') > -1)) { // Force final state el.style.transform = 'none'; el.style.opacity = '1'; el.style.visibility = 'visible'; el.style.willChange = 'auto'; el.style.transition = 'none'; } // Kill sticky except navbar if (settings && settings.indexOf('sticky') > -1 && el.getAttribute('data-id') !== 'cd07ce5') { el.style.position = 'relative'; el.style.top = 'auto'; } }); // Kill Elementor's scroll-triggered motion effect handlers if (window.elementorFrontend && elementorFrontend.hooks) { try { // Attempt to remove motion effect scroll handlers var motionElements = document.querySelectorAll('.elementor-motion-effects-element'); motionElements.forEach(function(el) { var clone = el.cloneNode(true); el.parentNode.replaceChild(clone, el); }); } catch(e) {} } }, 1000); });