Trusted by leading brands and impact-driven organizations.
jQuery(document).ready(function ($) {
$(".custom-tabs .elementor-tab-title").on("click", function () {
let newTitle = $(this).text(); // Get the clicked tab title
$(".top-banner-title").text(newTitle); // Update the banner title
});
});