Contact Us

We would love to hear from you.
Feel free to reach out using the below details.

(function () { function cleanAccordion() { document.querySelectorAll('.acf-accordion details.e-n-accordion-item').forEach(function (item) { const textWidget = item.querySelector('.elementor-widget-text-editor'); if (!textWidget) return; // Get ONLY the widget container content const container = textWidget.querySelector('.elementor-widget-container'); if (!container) return; // Strip EVERYTHING down to real text let text = container.innerHTML .replace(/

\s*<\/p>/gi, '') .replace(/ /gi, '') .replace(/\s+/g, '') .replace(/<[^>]*>/g, ''); // If truly empty → remove tab if (!text) { item.remove(); } }); } setInterval(cleanAccordion, 500); })();