function enqueue_bootstrap_for_elementor() {
    // Bootstrap CSS
    wp_enqueue_style('bootstrap-css', 'https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css');
    
    // Bootstrap JS (ensure jQuery is loaded as a dependency)
    wp_enqueue_script('bootstrap-js', 'https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js', array('jquery'), null, true);
}

// Use Elementor hook to enqueue files only when Elementor is used
add_action('elementor/frontend/after_enqueue_scripts', 'enqueue_bootstrap_for_elementor');