// When form has error
document.addEventListener('wpcf7invalid', function() {
// prevent popup from closing
jQuery('.elementor-popup-modal').show();
});
// When form is successful
document.addEventListener('wpcf7mailsent', function(event) {
// Reload the page after success
location.reload();
});