Thank you for your submission.

A member of our team will contact you within 24 hours. For urgent queries, message us on

+91 96251 24138
Chat on WhatsApp
function getParam(param) { const params = new URLSearchParams(window.location.search); return params.get(param); } document.addEventListener("DOMContentLoaded", function () { const fields = ["utm_campaign", "utm_adset", "utm_ad"]; fields.forEach(function (name) { const input = document.querySelector("input[name='" + name + "']"); if (input) input.value = getParam(name) || ""; }); });