Request Your Consultation
Tell us about your home and we’ll reach out to fine the best solution.
No obligation, no sales pressure.
jQuery(function ($) {
// Sirf is form widget ke liye kaam kare
var $formWidget = $('.elementor-element-271268e');
if (!$formWidget.length) return;
// Tumhare dono headings wale sections
var $step1Section = $('.step-1'); // Contact information section
var $step2Section = $('.step-2'); // Property information section
if (!$step1Section.length || !$step2Section.length) return;
// Initial state: Step 1 visible, Step 2 hidden
$step1Section.show();
$step2Section.hide();
function showStep(stepNumber) {
if (stepNumber === 1) {
$step1Section.show();
$step2Section.hide();
} else if (stepNumber === 2) {
$step1Section.hide();
$step2Section.show();
}
}
// NEXT button par listener (delegation use kiya hai, taake buttons baad me load hon to bhi chale)
$(document).on(
'click',
'.elementor-element-271268e .e-form__buttons__wrapper__button-next',
function () {
// Elementor ko pehle next step change karne do
setTimeout(function () {
showStep(2);
}, 50);
}
);
// BACK button par listener
$(document).on(
'click',
'.elementor-element-271268e .e-form__buttons__wrapper__button-previous',
function () {
setTimeout(function () {
showStep(1);
}, 50);
}
);
});










