







Experience unparalleled opulence in our luxurious apartments with meticulous design, high-quality materials, and stunning vistas.
Escape the city bustle to find peace at iWA on Puppalaguda Hills. Enjoy nature's embrace and tranquillity amidst stunning views.
iWA: Japanese aesthetics and timeless design, a Nikken Seikei masterpiece renowned for Tokyo Sky Tree.








Introducing iWA, a luxury apartments designed by the world-renowned Japanese architectural firm Nikken Sekkei. Japan is celebrated for its attention to detail, harmony with nature, and timeless aesthetics. With a rich cultural heritage and a focus on craftsmanship, Japanese architecture creates tranquil and sophisticated spaces. Experience the extraordinary at iWA, where architectural brilliance meets luxurious comfort, offering an unparalleled living experience.
Address : Proposed 100 Feet Road Puppalguda, Khajaguda, to, Lanco Hills Rd, behind Aparna Zenon, Nanakaramguda, Telangana 500075
add_filter( 'wpforms_process_filter', function( $field, $form_data ) {
// Only Form ID 21213
if ( empty( $form_data['id'] ) || (int) $form_data['id'] !== 21213 ) {
return $field;
}
// Only Lead Source Field ID 5
if ( empty( $field['id'] ) || (int) $field['id'] !== 5 ) {
return $field;
}
$source = 'Direct';
// Get source detected by JavaScript
if ( ! empty( $_POST['iwa_lead_source'] ) ) {
$source = sanitize_text_field(
wp_unslash( $_POST['iwa_lead_source'] )
);
} elseif ( ! empty( $_SERVER['HTTP_REFERER'] ) ) {
$referrer = strtolower(
sanitize_text_field(
wp_unslash( $_SERVER['HTTP_REFERER'] )
)
);
if ( strpos( $referrer, 'google.' ) !== false ) {
$source = 'Google';
} elseif ( strpos( $referrer, 'facebook.com' ) !== false ) {
$source = 'Facebook';
} elseif ( strpos( $referrer, 'instagram.com' ) !== false ) {
$source = 'Instagram';
} elseif (
strpos( $referrer, 'youtube.com' ) !== false ||
strpos( $referrer, 'youtu.be' ) !== false
) {
$source = 'YouTube';
} else {
$source = 'Organic';
}
}
// Allowed sources
$allowed_sources = array(
'Google',
'Facebook',
'Instagram',
'YouTube',
'Organic',
'Direct'
);
if ( ! in_array( $source, $allowed_sources, true ) ) {
$source = 'Organic';
}
// Put source into Lead Source field #5
$field['value'] = $source;
return $field;
}, 10, 2 );
(function () {
function getLeadSource() {
var params = new URLSearchParams(window.location.search);
var utmSource = (params.get('utm_source') || '').toLowerCase();
// UTM Source
if (utmSource) {
if (utmSource.indexOf('google') !== -1) {
return 'Google';
}
if (utmSource.indexOf('facebook') !== -1) {
return 'Facebook';
}
if (utmSource.indexOf('instagram') !== -1) {
return 'Instagram';
}
if (utmSource.indexOf('youtube') !== -1) {
return 'YouTube';
}
return 'Organic';
}
// No UTM - check referrer
var referrer = (document.referrer || '').toLowerCase();
if (referrer) {
if (referrer.indexOf('google.') !== -1) {
return 'Google';
}
if (referrer.indexOf('facebook.com') !== -1) {
return 'Facebook';
}
if (referrer.indexOf('instagram.com') !== -1) {
return 'Instagram';
}
if (
referrer.indexOf('youtube.com') !== -1 ||
referrer.indexOf('youtu.be') !== -1
) {
return 'YouTube';
}
return 'Organic';
}
// No UTM + no referrer
return 'Direct';
}
function setLeadSource() {
var source = getLeadSource();
// WPForms Form 21213 - Field 5
var field = document.querySelector(
'#wpforms-21213-field_5'
);
if (field) {
field.value = source;
}
// Hidden value for PHP
var form = document.querySelector(
'#wpforms-form-21213'
);
if (!form) {
return;
}
var hidden = form.querySelector(
'input[name="iwa_lead_source"]'
);
if (!hidden) {
hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.name = 'iwa_lead_source';
hidden.value = source;
form.appendChild(hidden);
} else {
hidden.value = source;
}
}
document.addEventListener('DOMContentLoaded', function () {
setLeadSource();
setTimeout(setLeadSource, 500);
setTimeout(setLeadSource, 1500);
setTimeout(setLeadSource, 3000);
});
})();