United Arab Emirates | United States

Contact

Contact Us

shape shape shape
Call Us 24/7 050 177 3384
Our Location , Dubai, United Arab Emirates

Get In Touch - Ai Development

Enter the characters shown in the image below to prove this request is human.

Captcha security code
document.getElementById('contact-form').addEventListener('submit', function(e) { e.preventDefault(); var btn = document.getElementById('contact-submit-btn'); var msgs = document.getElementById('form-messages'); var captchaInput = document.getElementById('contact_captcha'); if (captchaInput && captchaInput.value.trim().length < 3) { msgs.innerHTML = '
⚠ Please enter the security code shown in the image.
'; captchaInput.focus(); return; } btn.disabled = true; btn.textContent = 'Sending...'; msgs.innerHTML = ''; var formData = new FormData(this); fetch(getHaiBasePath() + '/api/contact-submit.php', { method: 'POST', credentials: 'same-origin', body: formData }) .then(function(r) { return r.json(); }) .then(function(data) { if (data.success) { msgs.innerHTML = '
✓ ' + data.message + '
'; document.getElementById('contact-form').reset(); refreshContactCaptcha(); window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'form_submit_success', form_id: 'contact-form', form_source: 'contact_page', page_path: window.location.pathname }); } else { msgs.innerHTML = '
⚠ ' + data.message + '
'; refreshContactCaptcha(); window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'form_submit_error', form_id: 'contact-form', form_source: 'contact_page', error_message: String(data.message || 'Submission failed').substring(0, 140), page_path: window.location.pathname }); } btn.disabled = false; btn.textContent = 'Get In Touch'; }) .catch(function() { msgs.innerHTML = '
⚠ An error occurred. Please try again.
'; refreshContactCaptcha(); window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: 'form_submit_error', form_id: 'contact-form', form_source: 'contact_page', error_message: 'Network or unexpected client error', page_path: window.location.pathname }); btn.disabled = false; btn.textContent = 'Get In Touch'; }); });