Server Address : 2a02:4780:a:760:0:37cc:13e2:3
Web Server : LiteSpeed
Uname : Linux uk-fast-web660.main-hosting.eu 5.14.0-570.55.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Oct 21 05:27:51 EDT 2025 x86_64
PHP Version : 7.4.33
<?php
$whychoose = $contentObj -> getContent("Why Choose Us");
?>
<div class="why-choose-section">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-6" data-aos="fade-right" data-aos-easing="linear" data-aos-duration="1500">
<h2 class="section-title">Why Choose Us</h2>
<p>
<?php echo $whychoose['content']?>
</p>
<div class="row my-5">
<?php
$services = $servicesObj -> getLimitedServices(4);
while($service = mysqli_fetch_array($services)){
?>
<div class="col-6 col-md-6">
<div class="feature">
<div class="icon">
<img src="images/icons/<?php echo $service['icon']?>" alt="Image" class="imf-fluid">
</div>
<h3><?php echo $service['heading']?></h3>
<p><?php echo $service['content']?></p>
</div>
</div>
<?php
}
?>
</div>
</div>
<div class="col-lg-5" data-aos="fade-left" data-aos-easing="linear" data-aos-duration="1500">
<div class="img-wrap">
<?php
$whyImg = $imagesObj -> getImage('Why Choose Us');
?>
<img src="images/others/<?php echo $whyImg['image']?>" alt="Image" class="img-fluid">
</div>
</div>
</div>
</div>
</div>