|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/dev.outerorbittech.com/anant-engg/ | |
|
Path: /home2/outerorb/dev.outerorbittech.com/anant-engg/contact.php
Size: 30.42 KB
Permissions: 0644
<?php
include_once("include/main.inc.php");
date_default_timezone_set('Asia/Kolkata');
$enq_date = date('Y-m-d H:i:s');
$hover="contact";
$page_metatitle = "Contact Us - ".COMPANY_NAME;
$page_metakey ="Contact Us - ".COMPANY_NAME;
$page_metadesc = "Contact Us - ".COMPANY_NAME;
$referer = $_SERVER['HTTP_REFERER'];
$ip=$_SERVER['REMOTE_ADDR'];
if (isset($_POST['submit_contact']))
{
$name = !empty($_POST['name'])?$_POST['name']:'';
$email = !empty($_POST['email'])?$_POST['email']:'';
$mobileNumber = (!empty($_POST['mobile']))?$_POST['mobile']:'';
$location = !empty($_POST['location'])?$_POST['location']:'';
$message = !empty($_POST['message'])?$_POST['message']:'';
$code = (!empty($_POST['code']))?$_POST['code']:'';
$countryNames = (!empty($_POST['countryName']))?$_POST['countryName']:'';
$countryName1= explode('(',$countryNames);
$countryName=$countryName1[0];
$code =$code!=''?$code:'91';
$countryName= $countryName!=''?$countryName:'India';
$mobileNumbers= '+'.$code.' - '.$mobileNumber;
if(strpos($message,'#')!==false || strpos($message,'%')!==false || strpos($message,'@')!==false || strpos($message,'&')!==false || strpos($message,'~')!==false || strpos($message,'https')!==false || strpos($message,'http')!==false || strpos($message,'www')!==false || strpos($message,'?')!==false ||strpos($location,'#')!==false || strpos($location,'%')!==false || strpos($location,'@')!==false || strpos($location,'&')!==false || strpos($location,'~')!==false || strpos($location,'https')!==false || strpos($location,'http')!==false || strpos($location,'www')!==false || strpos($location,'?')!==false || strpos($name,'#')!==false || strpos($name,'%')!==false || strpos($name,'@')!==false || strpos($name,'&')!==false || strpos($name,'~')!==false || strpos($name,'https')!==false || strpos($name,'http')!==false || strpos($name,'www')!==false || strpos($name,'?')!==false){
$resp = [
'message_response' => 'URL(s) and special characters are not allowed',
'status' => false
];
echo json_encode($resp);
exit;
} else {
if($name != '' && $email != '' && $mobileNumber != '' && $location != '' && $message != '' && $ip != '' ){
if(isset($_POST['g-recaptcha-response']) && !empty($_POST['g-recaptcha-response'])) {
$secret = secret_key;
$data = array( 'secret' => $secret, 'response' => $_POST['g-recaptcha-response'] ); $verify = curl_init(); curl_setopt($verify, CURLOPT_URL, "https://www.google.com/recaptcha/api/siteverify"); curl_setopt($verify, CURLOPT_POST, true); curl_setopt($verify, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt($verify, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($verify, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($verify); //var_dump($response);
$response = json_decode($response);
if (!$response->success) {
$resp = [
'message_response' => 'Robot verification failed, please try again.',
'status' => false
];
echo json_encode($resp);
exit;
}
if($response->success) {
$sql_ens="insert into tbl_enquiry set en_name='$name', en_email='$email', en_mobile='$mobileNumber', en_country='$location', en_comment='$message', en_url='$referer', en_date='$enq_date',en_zcode='$code',en_country_name='$countryName', en_ip='$ip'";
$qry=mysqli_query($GLOBALS['dbconn'],
$sql_ens);
$subject = utf8_encode('Webpulseindia.com '.' - '. $admin_res['subject']);
// $htmlContent = "
// Customer Details:
// Url: ".$referer."
// Name: ".$name."
// Email: ".$email."
// Mobile: ".$mobileNumber."
// Location:".$location."
// Message: ".$message."
// ";
$htmlContent = '<table border="0" width="100%">
<tbody>
<tr>
<td colspan="2">
<strong>Dear Admin</strong></td>
</tr>
<tr>
<td colspan="2">
Enquiry Received with following info :</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
<td width="26%">
<strong>Post URL : </strong></td>
<td>
<span style="margin-top: 15px;">' . $referer . '</span></td>
</tr>
<tr>
<td width="26%">
<strong>Name : </strong></td>
<td>
<span style="margin-top: 15px;">' . $name . '</span></td>
</tr>
<tr>
<td width="26%">
<strong>Email Id : </strong></td>
<td>
<span style="margin-top: 15px;">' . $email . '</span></td>
</tr>
<tr>
<td width="26%">
<strong>Contact No : </strong></td>
<td>
<span style="margin-top: 15px;">' . $mobileNumbers . '</span></td>
</tr>
<tr>
<td>
<strong>Country : </strong></td>
<td>
<span style="margin-top: 15px;">' . $countryName . '</span></td>
</tr>
<tr>
<td>
<strong>Location : </strong></td>
<td>
<span style="margin-top: 15px;">' . $location . '</span></td>
</tr>
<tr>
<td>
<strong>Message : </strong></td>
<td>
<span style="margin-top: 15px;">' . $message . '</span></td>
</tr>
</tbody>
</table>';
// $to = $admin_res['email'];
// $to2 = $admin_res['cc'];
// $to3 = 'webpulseindia@gmail.com';
$to3 = 'vicky.wpsranchi@gmail.com';
// $headers = 'From: '.'Webpulseindia.com'.' enquiry@webpulseindia.com' . "\r\n" .
// 'Reply-To: '.$name.'<'.$email.'>' . "\r\n" .
// 'X-Mailer: PHP/' . phpversion();
// @mail($to,$subject,$htmlContent,$headers);
// @mail($to2,$subject,$htmlContent,$headers);
// @mail($to3,$subject,$htmlContent,$headers);
if($to!='')
{
smtp_mailer($to, $email, $name, $subject, $htmlContent);
}
if($to2!='')
{
smtp_mailer($to2, $email, $name, $subject, $htmlContent);
}
smtp_mailer($to3, $email, $name, $subject, $htmlContent);
$resp = [
'message_response' => 'Thank you for your enquiry. Our team will contact you soon.',
'status' => true
];
echo json_encode($resp);
exit;
}
}
else {
$resp = [
'message_response' => 'Please check the recaptcha box!',
'status' => false
];
echo json_encode($resp);
exit;
}
}
else {
$resp = [
'message_response' => 'All the fields are Mandatory!',
'status' => false
];
echo json_encode($resp);
exit;
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<?php include "app_top.php"; ?>
</head>
<body>
<?php include 'app_header.php';?>
<section class="heading_banner" style="background-image: url(<?=site_url;?>/designer/images/contact-banner.jpg)">
<div class="container">
<div class="row">
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 text-center">
<h1 class="cat_title">Contact Us</h1>
<div class="clearfix"></div>
</div>
</div>
</div>
</section>
<div class="inner_breadcrumb hidden_xs">
<div class="container">
<div class="row">
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<ul class="breadcrumb">
<li><a href="<?=site_url;?>" title="Home">Home</a></li>
<li class="active">Contact Us</li>
</ul>
</div>
</div>
</div>
</div>
<div class="w-100 float-start pb-0"
style="background-image:url(designer/images/dot-shape1.webp);background-repeat:no-repeat">
<section class="get-touch-area py-5">
<div class="container">
<div class="position-relative mb-5">
<div class="aboutTitle ">Contact Information
</div>
<p class="text-center w-75 mx-auto mt-3">
Write to us or call us, get quick response powered by
our advanced customer support team .
</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div
class="single-item p-3 pt-5 corner text-center position-relative h-170 bg-white mb-lg-0 mb-5">
<div
class="icon-holder position-absolute z-index-1 start-50 top-0 bg-sky w-50px h-50px translate-middle p-2 rounded-circle">
<svg height="20px" width="20px" version="1.1" id="_x32_"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 512 512" xml:space="preserve">
<style type="text/css">
.st0 {
fill: #fff;
}
</style>
<g>
<path class="st0" d="M159.131,169.721c5.635,58.338,43.367,96.867,96.871,96.867c53.502,0,91.23-38.53,96.867-96.867l7.988-63.029
C365.812,44.768,315.281,0,256.002,0c-59.281,0-109.812,44.768-104.86,106.692L159.131,169.721z" />
<path class="st0" d="M463.213,422.569l-3.824-24.35c-3.203-20.417-16.035-38.042-34.475-47.361l-80.473-40.693
c-2.519-1.274-4.57-3.194-6.289-5.338c-23.297,24.632-51.6,39.12-82.15,39.12c-30.549,0-58.856-14.488-82.152-39.12
c-1.719,2.144-3.77,4.064-6.289,5.338l-80.472,40.693c-18.442,9.319-31.272,26.944-34.475,47.361l-3.826,24.35
c-1.363,8.692,0.436,21.448,8.222,27.825C67.42,458.907,105.875,512,256.002,512c150.125,0,188.578-53.093,198.988-61.606
C462.779,444.017,464.576,431.261,463.213,422.569z" />
</g>
</svg>
</div>
<div class="base-header2">
<h2 class="text-center mb-2 lsp-5 lh-base fs-18 text-black fw-bold lsp-5px pb-0 ">
Contact Person
</h2>
</div>
<div class="text-holder position-absolute z-index-999 w-100 start-0 px-3">
<p>Mr. Ojas Doshi <span>(CEO)</span></p>
</div>
<span class="bottom_corners"></span>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div
class="single-item p-3 pt-5 corner text-center position-relative h-170 bg-white mb-lg-0 mb-5">
<div
class="icon-holder position-absolute z-index-1 start-50 top-0 bg-sky w-50px h-50px translate-middle p-2 rounded-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
viewBox="0 0 16 16">
<path
d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10z">
</path>
<path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z">
</path>
</svg>
</div>
<div class="base-header2">
<h3 class="text-center mb-2 lsp-5 lh-base fs-18 text-black fw-bold lsp-5px pb-0 ">
Come to See Us
</h3>
</div>
<div class="text-holder position-absolute z-index-999 w-100 start-0 px-1">
<p><?=$admin_res['address'];?></p>
</div>
<span class="bottom_corners"></span>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div
class="single-item p-3 pt-5 text-center position-relative corner h-170 bg-white mb-lg-0 mb-5">
<div
class="icon-holder position-absolute start-50 z-index-1 top-0 bg-sky w-50px h-50px translate-middle p-2 rounded-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
viewBox="0 0 16 16">
<path
d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z">
</path>
</svg>
</div>
<div class="base-header2">
<h3 class="text-center mb-2 lsp-5 lh-base fs-18 text-black fw-bold lsp-5px pb-0 ">
Quick Contact
</h3>
</div>
<div
class="text-holder position-absolute z-index-9 w-100 start-0 position-relative z-index-9">
<p class="mb-0">
<a href="tel:<?=$admin_res['mobile'];?>" title="Call Us" class="text-muted fs-13 lsp-5">Ph:
<?=$admin_res['mobile'];?></a>
</p>
<p>Whatsapp:<a class="text-muted fs-13 lsp-5" href="javascript:void(0);" data-bs-toggle="modal" data-bs-target="#whatsapp" title="Whatsapp Now"> <?=$admin_res['mobile'];?></a>
</p>
</div>
<span class="bottom_corners"></span>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="single-item p-3 pt-5 text-center position-relative corner h-170 bg-white ">
<div
class="icon-holder position-absolute z-index-1 start-50 top-0 bg-sky w-50px h-50px translate-middle p-2 rounded-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7 0 0 1 .597-.933A7.01 7.01 0 0 0 3.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9.124 9.124 0 0 1-1.565-.667A6.964 6.964 0 0 0 1.018 7.5h2.49zm1.4-2.741a12.344 12.344 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612 0 0 1 7.5 10.91V8.5H4.51zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696 0 0 1-.598-.933 8.853 8.853 0 0 1-.481-1.079 8.38 8.38 0 0 0-1.198.49 7.01 7.01 0 0 0 2.276 1.522zm-1.383-2.964A13.36 13.36 0 0 1 3.508 8.5h-2.49a6.963 6.963 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009 0 0 0 2.275-1.521 8.376 8.376 0 0 0-1.197-.49 8.853 8.853 0 0 1-.481 1.078 6.688 6.688 0 0 1-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963 0 0 0 14.982 8.5h-2.49a13.36 13.36 0 0 1-.437 3.008zM14.982 7.5a6.963 6.963 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368 0 0 0 1.196-.49 7.01 7.01 0 0 0-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z">
</path>
</svg>
</div>
<div class="base-header2">
<h3 class="text-center mb-2 lsp-5 lh-base fs-18 text-black fw-bold lsp-5px pb-0 ">
Get in Touch
</h3>
<ul class="social w-100 mb-1 float-none">
<?php if($admin_res['facebook_link']!=''){?>
<li class="facebook">
<a href="<?=$admin_res['facebook_link'];?>" target="_blank" title="Facebook"><svg xmlns="http://www.w3.org/2000/svg"
width="16" height="16" fill="currentColor" viewBox="0 0 24 24">
<path
d="M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z">
</path>
</svg></a>
</li>
<?php } if($admin_res['twitter_link']!=''){ ?>
<li class="twitter"><a href="<?=$admin_res['twitter_link'];?>" target="_blank" title="Twitter"> <svg xmlns="http://www.w3.org/2000/svg" fill="#fff" viewBox="0 0 16 16" width="16px"
height="16px">
<path
d="M 2.296875 2 C 2.052875 2 1.9117344 2.2756094 2.0527344 2.4746094 L 6.4882812 8.7050781 L 2.0136719 14 L 3.3457031 14 L 7.09375 9.5527344 L 9.9609375 13.580078 C 10.148938 13.844078 10.452391 14 10.775391 14 L 13.703125 14 C 13.947125 14 14.088266 13.724391 13.947266 13.525391 L 9.2753906 6.9628906 L 13.457031 2 L 12.154297 2 L 8.6738281 6.1191406 L 6.0390625 2.4199219 C 5.8510625 2.1559219 5.5476094 2 5.2246094 2 L 2.296875 2 z M 3.6542969 3 L 5.2246094 3 L 12.345703 13 L 10.775391 13 L 3.6542969 3 z">
</path>
</svg></a></li>
<?php } if($admin_res['youtube_link']!=''){ ?>
<li class="youtube"><a href="<?=$admin_res['youtube_link'];?>" target="_blank" title="Youtube"><svg
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
viewBox="0 0 24 24">
<path
d="M4.652 0h1.44l.988 3.702.916-3.702h1.454l-1.665 5.505v3.757h-1.431v-3.757l-1.702-5.505zm6.594 2.373c-1.119 0-1.861.74-1.861 1.835v3.349c0 1.204.629 1.831 1.861 1.831 1.022 0 1.826-.683 1.826-1.831v-3.349c0-1.069-.797-1.835-1.826-1.835zm.531 5.127c0 .372-.19.646-.532.646-.351 0-.554-.287-.554-.646v-3.179c0-.374.172-.651.529-.651.39 0 .557.269.557.651v3.179zm4.729-5.07v5.186c-.155.194-.5.512-.747.512-.271 0-.338-.186-.338-.46v-5.238h-1.27v5.71c0 .675.206 1.22.887 1.22.384 0 .918-.2 1.468-.853v.754h1.27v-6.831h-1.27zm2.203 13.858c-.448 0-.541.315-.541.763v.659h1.069v-.66c.001-.44-.092-.762-.528-.762zm-4.703.04c-.084.043-.167.109-.25.198v4.055c.099.106.194.182.287.229.197.1.485.107.619-.067.07-.092.105-.241.105-.449v-3.359c0-.22-.043-.386-.129-.5-.147-.193-.42-.214-.632-.107zm4.827-5.195c-2.604-.177-11.066-.177-13.666 0-2.814.192-3.146 1.892-3.167 6.367.021 4.467.35 6.175 3.167 6.367 2.6.177 11.062.177 13.666 0 2.814-.192 3.146-1.893 3.167-6.367-.021-4.467-.35-6.175-3.167-6.367zm-12.324 10.686h-1.363v-7.54h-1.41v-1.28h4.182v1.28h-1.41v7.54zm4.846 0h-1.21v-.718c-.223.265-.455.467-.696.605-.652.374-1.547.365-1.547-.955v-5.438h1.209v4.988c0 .262.063.438.322.438.236 0 .564-.303.711-.487v-4.939h1.21v6.506zm4.657-1.348c0 .805-.301 1.431-1.106 1.431-.443 0-.812-.162-1.149-.583v.5h-1.221v-8.82h1.221v2.84c.273-.333.644-.608 1.076-.608.886 0 1.18.749 1.18 1.631v3.609zm4.471-1.752h-2.314v1.228c0 .488.042.91.528.91.511 0 .541-.344.541-.91v-.452h1.245v.489c0 1.253-.538 2.013-1.813 2.013-1.155 0-1.746-.842-1.746-2.013v-2.921c0-1.129.746-1.914 1.837-1.914 1.161 0 1.721.738 1.721 1.914v1.656z">
</path>
</svg>
</a>
</li>
<?php } if($admin_res['instagram_link']!=''){ ?>
<li class="instagram"><a href="<?=$admin_res['instagram_link'];?>" target="_blank" title="Instagram"><svg
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
viewBox="0 0 16 16">
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z">
</path>
</svg></a></li>
<?php } ?>
</ul>
</div>
<div class="position-relative z-index-9">
<p><a href="javascript:void();" class="text-muted">www.anantengineering.com</a></p>
</div>
<span class="bottom_corners"></span>
</div>
</div>
<!--End single item-->
</div>
</div>
</section>
<section class="contact-form-area pb-5">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-0 ">
<div
class="default-form-area p-4 rounded-3 text-center border-bottom border-3 border-light bg-white">
<div class="base-header2">
<h4
class="text-center lsp-5 lh-base text-uppercase fs-4 text-dark fw-bold lsp-5px pb-0 mb-0">
We want to hear from you!
</h4>
<p class="text-center">We would love to hear from you. Drop your query and we will
get back to you.
</p>
</div>
<form name="contact-form" method="post" id="contact_form">
<div id="pop_up"></div>
<script src="https://www.google.com/recaptcha/api.js" async="" defer=""></script>
<div class="row">
<div class="col-xxl-6 col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<input class="form-control" type="text" name="name" onkeyup="validateOnlyTextField(this)" placeholder="Full Name*"
required="">
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<input class="form-control" type="email" name="email"
placeholder="Email ID*" required="">
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<input type="hidden" name="countryName" class="countryName" value="">
<input type="hidden" name="code" class="code" value="">
<input class="form-control telePhone" value="" type="tel" name="mobile" maxlength="10"
minlength="10" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')"
placeholder="Mobile Number*" required="" autocomplete="off" style="padding-left: 84px;">
</div>
</div>
<div class="col-xxl-6 col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<input class="form-control" type="text" name="location"
placeholder="Location*" required="">
</div>
</div>
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="form-group">
<textarea class="form-control" rows="5" placeholder="Comments Here*"
required="" name="message"></textarea>
</div>
</div>
<div class="col-xxl-12 col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<div class="d-block ">
<div class="form-group" style="margin-bottom: 0;">
<div class="g-recaptcha" data-sitekey="<?=site_key;?>"></div>
</div>
<div class="form-group w-100 ">
<button tabindex="7" class="modal_btn moreBtn" type="submit"
value="Submit"
data-submit="...Sending" name="submit_contact">Submit</button>
<!-- <button type="submit" class="read_more_btn_2">Submit</button> -->
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-5 col-md-12 col-sm-12">
<div class="youtube_video float-start p-3 rounded py-2 bg-white">
<iframe class="contact_map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3768.208712966014!2d72.84714987520813!3d19.18608428204135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7b7b6a130ea93%3A0x74cb6e62a65ce381!2sMagic%20Square!5e0!3m2!1sen!2sin!4v1709285046383!5m2!1sen!2sin"
allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
</div>
</section>
</div>
<?//php include 'app_clients.php'; ?>
<?php include "app_footer.php";?>
<?php include "app_bottom.php";?>
</body>
</html>