
PK 
<div class="clearfix"></div>
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="4000">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<?php
$query = "select * from slider ";
$query = mysqli_query($conn,$query) or die(mysqli_error($conn));
$i=1;
while($rr=mysqli_fetch_array($query)){
if($i==1)
$cls="active";
else
$cls="";
$i++;
?>
<div class="item <?php echo $cls?>">
<img src="site_data/images/<?php echo $rr[img]?>" alt="">
</div>
<?php
}
?>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="col-lg-12 group_logo"> </div>
<div class="col-lg-12 hexagon">
<img src="images/hexagon.png" alt="" border="0" usemap="#Map" class="img-responsive">
<map name="Map" id="Map">
<area shape="circle" coords="290,439,93" href="index.php?paction=content&page_id=46" />
<area shape="circle" coords="382,278,89" href="index.php?paction=products&cate_id=51" />
<area shape="circle" coords="288,111,92" href="index.php?paction=gallery&gallery_id=4" />
<area shape="circle" coords="97,438,91" href="index.php?paction=content&page_id=133" />
<area shape="circle" coords="190,275,90" href="index.php?paction=products&cate_id=50" />
<area shape="circle" coords="479,440,90" href="index.php?paction=content&page_id=52" />
</map></div>
<div class="clearfix"></div>
<div class="container">
<div class="row testimonials">
<div class="col-lg-4 item">
<span>As the Technical & Sales Managing Partner of M S Bhogal N Sons, I believe in zero defect production and to manufacture products that enhance and accelerate the performance for users. With the path guided by our visionaries, quality and sustainability of our products is our main priority. We believe in providing the common man an affordable means of mobility, high quality products and customer satisfaction.</span>
<p class="source">
<strong>HP Bhogal</strong>
</p>
</div>
<div class="col-lg-4 item">
<span>As a Managing Partner, I believe with a process oriented approach, and dedicated manpower, the company has been able to achieve these long term goals in an effective and efficient manner. We not only deliver a product, we deliver good experience. We will continue to maintain the legacy by providing sustainable high quality products. </span>
<p class="source"><br /><br />
<strong>Avtar Bhogal</strong>
</p>
</div>
<div class="col-lg-4 item">
<span>As a joint partner, I believe, in maintaining a sustainable economic development, one should focus on quality instead of speed. Quality is a responsibility that helps to grow loyal business relations. I am obliged to be a part of this firm and learn about the ethics followed by my elders. Following the same principles, I pledge to keep quality and status intact.</span>
<p class="source"><br />
<strong>Robbie Bhogal</strong>
</p>
</div>
</div>
<div class="row maps">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d9684.834425812134!2d75.85842144431352!3d30.88369420680474!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xdbd1c61f228fdb79!2sM.S.+Bhogal+N+Sons!5e0!3m2!1sen!2sin!4v1496531391861" width="100%" height="400" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<script type="text/javascript">
<!--
$('.maps').click(function () {
$('.maps iframe').css("pointer-events", "auto");
});
$( ".maps" ).mouseleave(function() {
$('.maps iframe').css("pointer-events", "none");
});
//-->
</script>
<!-- <table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<img src="images/index_04.jpg" width="1349" height="444" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="images/index_05.jpg" width="1349" height="91" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="images/index_06.jpg" width="1349" height="577" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="images/index_07.jpg" width="1349" height="654" alt=""></td>
</tr>
</table> -->


PK 99