File: //home/jibhires/demo.brightsolutionsindia.com/services.php
<?php
$page_title = "Our Services";
include 'header.php';
?>
<section class="services py-5">
<div class="container">
<h2 class="text-center mb-5">Core Solutions</h2>
<div class="row">
<?php
$services = [
[
'title' => 'Industry 4.0 Automation',
'icon' => 'factory',
'desc' => 'Complete smart factory solutions with machine integration and data analytics'
],
[
'title' => 'End-to-End Traceability',
'icon' => 'qrcode',
'desc' => 'Customized tracking solutions for inventory, assets, and production processes'
],
[
'title' => 'Barcode Integration',
'icon' => 'barcode',
'desc' => 'Comprehensive barcode solutions from generation to system integration'
]
];
foreach($services as $service): ?>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title"><?php echo $service['title']; ?></h5>
<p class="card-text"><?php echo $service['desc']; ?></p>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<?php include 'footer.php'; ?>