Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
<?php
include "include/db.php";
include "include/phphelper.php";
// get slider images path from database and store it in an array, with there id
$sql = "SELECT * FROM `slide`";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
$slider = array();
while ($row = mysqli_fetch_assoc($result)) {
$slider[$row['id']] = $row['imagePath'];
}
}
?>
<!DOCTYPE html>
<html lang="en">
<?php
$title = "Home || Master Clean India Services Pvt. Ltd. || India's Leading Housekeeping & Facility Management Services Provider || Housekeeping Services in Delhi-NCR, Gurgao, Noida, Faridabad, Ghaziabad, India";
require "include/head.php";
?>
<body>
<!-- ======= Header ======= -->
<?php require "include/header.php"; ?>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="hero">
<div class="info d-flex align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<h2 data-aos="fade-down">Welcome to <br><span>Master Clean India</span></h2>
<p data-aos="fade-up">Company providing housekeeping services for Corporate Offices, Office
Campus, Industrial Plants, Warehouses, IT Industries and many more by latest methods and
well-trained housekeeping technical person for a pleasent working enviroment...</p>
<a data-aos="fade-up" data-aos-delay="200" href="assets/documents/MasterCleanBrochure.pdf" target="_blank" class="btn-get-started">Download Brochure</a>
</div>
</div>
</div>
</div>
<div id="hero-carousel" class="carousel slide" data-bs-ride="carousel" data-bs-interval="5000">
<?php
$i = 0;
foreach ($slider as $key => $value) {
if ($i == 0) {
echo '<div class="carousel-item active" style="background-image: url(assets/img/hero-carousel/' . $value . ')"></div>';
} else {
echo '<div class="carousel-item" style="background-image: url(assets/img/hero-carousel/' . $value . ')"></div>';
}
$i++;
}
?>
<a class="carousel-control-prev" href="#hero-carousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#hero-carousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= Get Started Section ======= -->
<section id="get-started" class="get-started section-bg">
<div class="container">
<div class="row justify-content-between gy-4">
<div class="col-lg-6 d-flex align-items-center" data-aos="fade-up">
<div class="content">
<h3>Reliable Commercial Cleaning</h3>
<p>We at Master Clean India provides housekeeping services for Corporate offices, Office campus,
Industrial Plants, Warehouses, Food Industries, Cold Storage, IT Industries, Institutes
Commercial Complex and many more by latest methods and well-trained housekeeping
technical persons for a pleasant working environment.</p>
<p>Professional Cleaning services and related maintenance services by Latest methods in the
premises include management of housekeeping staff, cleanliness scheduling, inspection,
evaluation and reporting.</p>
</div>
</div>
<div class="col-lg-5" data-aos="fade">
<form method="POST" id="quote-form" class="quote-form">
<h3>Get a quote</h3>
<p>Feel free to contact us for your queries.</p>
<p class="text-center text-danger" id="error"></p>
<div class="row gy-3">
<div class="col-md-12">
<input type="text" name="quoteName" id="quoteName" class="form-control" placeholder="Name" required>
</div>
<div class="col-md-12 ">
<input type="email" class="form-control" name="quoteEmail" id="quoteEmail" placeholder="Email" required>
</div>
<div class="col-md-12">
<input type="text" class="form-control" name="quotePhone" id="quotePhone" placeholder="Phone" required>
</div>
<div class="col-md-12">
<textarea class="form-control" name="quoteMessage" id="quoteMessage" rows="6" placeholder="Message" required></textarea>
</div>
<div class="col-md-12 text-center">
<button type="submit" name="submit" id="submit">Get a quote</button>
<span id="msg"></span>
</div>
</div>
</form>
</div><!-- End Quote Form -->
</div>
</div>
</section><!-- End Get Started Section -->
<!-- ======= Exisiting Projects Section ======= -->
<section id="sectors" class="constructions section-bg">
<div class="container" id="" data-aos="fade-up">
<div class="section-header">
<h2>Sectors</h2>
</div>
<div class="row gy-4">
<?php
get_sectors();
?>
</div>
</div>
</section>
<!-- End Constructions Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Services</h2>
</div>
<div class="row gy-4">
<?php
show_services();
?>
<!-- End Service Item -->
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Alt Services Section ======= -->
<?php
why_we_should_clean_your_building();
?>
<!-- ======= Testimonials Section ======= -->
<?php
// include "include/testimonials.php"
?>
<!-- End Testimonials Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<?php include "./include/footer.php"; ?>
<!-- End Footer -->
<a href="#" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<?php require "./include/js.php"; ?>
<script>
jQuery('#quote-form').on('submit', function(e) {
jQuery('#msg').html('');
jQuery('#submit').html('Please wait...');
jQuery('#submit').attr('disabled', true);
jQuery.ajax({
url: 'include/ajax.php',
type: 'post',
data: jQuery('#quote-form').serialize(),
success: function(result) {
jQuery('#msg').html(result);
jQuery('#submit').html('Get a quote');
jQuery('#submit').attr('disabled', false);
jQuery('#quote-form')[0].reset();
}
})
e.preventDefault();
});
</script>
</body>
</html>
