We’d love to hear from you! Whether you have questions, feedback, or need assistance, our team is here to help.
Get in Touch:
- Email : info@zitsolutions.in
You can also fill out the form below, and we’ll get back to you as soon as possible.
Your Message Matters:
Please provide as much detail as possible so we can assist you efficiently.
.contact-section {
max-width: 600px;
margin: 40px auto;
text-align: center;
font-family: ‘Poppins’, sans-serif;
}
.contact-section h2 {
font-size: 28px;
font-weight: 600;
margin-bottom: 10px;
}
.contact-section hr {
width: 60px;
height: 3px;
background: #222;
border: none;
margin: 10px auto 30px;
border-radius: 3px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-row {
display: flex;
gap: 15px;
}
.contact-row input {
flex: 1;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 15px;
transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: #4CAF50;
outline: none;
}
.contact-form textarea {
resize: none;
height: 120px;
}
.contact-form button {
background: #4CAF50;
color: #fff;
border: none;
padding: 14px;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: background 0.3s;
}
.contact-form button:hover {
background: #3e9142;
}
#zit-status {
margin-top: 15px;
font-weight: 500;
}
document.getElementById(“zitContactForm”).addEventListener(“submit”, function(e) {
e.preventDefault();
const formData = new FormData(this);
const status = document.getElementById(“zit-status”);
status.style.color = “#444”;
status.textContent = “Sending…”;
fetch(“https://vandhupar.com/contactapi.php”, {
method: “POST”,
body: formData
})
.then(res => res.json())
.then(data => {
status.style.color = (data.status === “success”) ? “green” : “red”;
status.textContent = data.message;
if (data.status === “success”) e.target.reset();
})
.catch(() => {
status.style.color = “red”;
status.textContent = “Something went wrong! Please try again.”;
});
});