38474-vm/about.php
2026-02-18 08:32:50 +00:00

59 lines
2.8 KiB
PHP

<?php
// about.php
require_once 'includes/auth.php';
require_once 'includes/header.php';
?>
<div class="container mt-5">
<div class="grid" style="grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;">
<div>
<h1>About AFG CARS</h1>
<p class="mb-5" style="color: var(--primary); font-weight: bold;">Your trusted partner for premium automotive solutions in Afghanistan.</p>
<p style="margin-bottom: 20px;">Founded in 2010, AFG CARS has established itself as the leading car dealership in Afghanistan. We specialize in importing and selling high-quality vehicles from top global manufacturers.</p>
<p>Our mission is to provide our customers with reliable, luxury vehicles at competitive prices, backed by exceptional customer service and flexible financing options.</p>
</div>
<div>
<div class="card" style="padding: 40px; text-align: center; background: rgba(255,255,255,0.05);">
<div class="grid" style="grid-template-columns: 1fr 1fr; gap: 20px;">
<div>
<h3 style="color: var(--primary); font-size: 2.5rem;">10+</h3>
<p>Years Experience</p>
</div>
<div>
<h3 style="color: var(--primary); font-size: 2.5rem;">5000+</h3>
<p>Cars Sold</p>
</div>
<div>
<h3 style="color: var(--primary); font-size: 2.5rem;">4</h3>
<p>Major Branches</p>
</div>
<div>
<h3 style="color: var(--primary); font-size: 2.5rem;">100%</h3>
<p>Satisfaction</p>
</div>
</div>
</div>
</div>
</div>
<div class="mt-5">
<h2 class="text-center mb-5">Our Core Values</h2>
<div class="grid" style="grid-template-columns: repeat(3, 1fr);">
<div class="card" style="padding: 20px; text-align: center;">
<h3 style="color: var(--primary);">Integrity</h3>
<p>We believe in transparent pricing and honest dealings with every customer.</p>
</div>
<div class="card" style="padding: 20px; text-align: center;">
<h3 style="color: var(--primary);">Quality</h3>
<p>Every vehicle undergoes a rigorous 150-point inspection before sale.</p>
</div>
<div class="card" style="padding: 20px; text-align: center;">
<h3 style="color: var(--primary);">Service</h3>
<p>Our relationship doesn't end at the sale; we provide ongoing support.</p>
</div>
</div>
</div>
</div>
<?php require_once 'includes/footer.php'; ?>