<?php include 'header.php';

?>
<style type="text/css">
.main-menu-two__wrapper{ box-shadow: 5px 3px 7px 1px rgb(6 6 73 / 35%); }
.project-page__title { font-size:18px }
</style>
<!--Page Header Start-->
        <!-- <section class="page-header">
            <div class="page-header__bg"></div>
            <div class="container">
                <div class="row">
                    <div class="col-xl-12">
                        <div class="page-header__inner">
                            <h2 class="page-header__title">Services</h2>
                            <ul class="thm-breadcrumb list-unstyled">
                                <li><a href="index">Home</a></li>
                                <li>Services</li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </section> -->
        <!--Page Header End-->

        
        <section class="project-page">
            <div class="container">
                <div class="section-title text-left">
                    <span class="section-title__tagline">our services</span>
                    <h2 class="section-title__title">What We Do For Our Customers</h2>
                    <!-- <p class="services-page__sec-title-text">Leverage agile frameworks to provide a robust synopsis for
                        high level overviews. Iterative approaches to corporate strategy foster collaborative thinking
                        to further the overall value proposition. Organically grow the holistic world view of disruptive
                        innovation via workplace.</p> -->
                </div>
                <div class="row">
                    <!--Project Page Single Start-->
                     <?php $kc_services = customQuery("SELECT * FROM `kc_services` WHERE `status` = 1"); 
                                 foreach ($kc_services as $ks_key => $ks_val) { ?>
                    <div class="col-xl-3 col-lg-4 col-md-4 col-sm-4 col-xs-12">
                        <div class="project-page__single">
                            <div class="project-page__img">
                                <img src="uploads/services/<?=$ks_val->service_img;?>" alt="">
                                <div class="project-page__link-text">
                                    <a href="service-details?id=<?=kc_encrypt($ks_val->id);?>">Service details</a>
                                </div>
                            </div>
                            <div class="project-page__content">
                                <div class="project-page__title-box">
                                    <h4 class="project-page__title"><a href="">
                                        <?=strtoupper($ks_val->name);?></a>
                                    </h4>
                                </div>
                                <div class="project-page__arrow">
                                    <a href="service-details?id=<?=kc_encrypt($ks_val->id);?>"><i class="fa fa-plus"></i></a>
                                </div>
                            </div>
                        </div>
                    </div>
                <?php } ?>
                    <!--Project Page Single End-->
                    
                </div>
            </div>
        </section>
        <!--Services Page End-->
         <!--Contact Bar Start-->
        <section class="contact-bar contact-bar-three">
            <div class="container">
                <div class="contact-bar__inne">
                    <div class="contact-bar__bg"
                        style="background-image: url(assets/images/backgrounds/contact-bar-bg.jpg);"></div>
                    <div class="contact-bar__left">
                        <div class="contact-bar__left-icon">
                            <span class="icon-diagnostic"></span>
                        </div>
                        <div class="contact-bar__left-content">
                            <h3 class="contact-bar__title">Do You Want Contact  ?</h3>
                            <p class="contact-bar__text">If you want to contact with my team, call this Number </p>
                        </div>
                    </div>
                    <div class="contact-bar__right">
                        <div class="contact-bar__call">
                            <div class="contact-bar__call-icon">
                                <img src="assets/images/icon/contact-bar-call-icon.png" alt="">
                            </div>
                            <div class="contact-bar__call-content">
                                <h4 class="contact-bar__call-number"><a href="tel:<?=$kc_phno;?>"><?=$kc_phno;?></a></h4>
                                <p class="contact-bar__call-time"><?=$kc_timings;?></p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <!--Contact Bar End-->
<?php include 'footer.php'; ?>