<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AAKM Logistics</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background: #008080; color: white; padding: 20px; text-align: center; }
header img { max-width: 200px; margin-bottom: 10px; }
header h1 { margin: 5px 0; font-size: 32px; }
header p { margin: 5px 0; font-size: 18px; }
nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; }
section { padding: 40px 20px; }
.services { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0; }
.service { background: #f4f4f4; border-radius: 8px; padding: 20px; width: 250px; text-align: center; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.service img { max-width: 80px; margin-bottom: 10px; }
.testimonials { background: #f0f0f0; padding: 40px 20px; text-align: center; }
.testimonial { margin: 20px auto; max-width: 600px; font-style: italic; }
form input, form textarea { width: 100%; padding: 10px; margin: 5px 0; border-radius: 5px; border: 1px solid #ccc; }
form button { background: #008080; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
form button:hover { background: #006666; }
footer { background: #008080; color: white; text-align: center; padding: 20px; }
a { color: inherit; }
</style>
</head>
<body>
<header>
<img src="aakm_logo.png" alt="AAKM Logistics Logo">
<h1>AAKM Logistics</h1>
<p>On-lot Vehicle Services for OEMs: Tires, Batteries, Fuel & More</p>
<p>Call us: <a href="tel:5136174130" style="color:white; text-decoration:underline;">513-617-4130</a> | Email: <a href="mailto:info@aakmlogistics.com" style="color:white; text-decoration:underline;">info@aakmlogistics.com</a></p>
<nav>
<a href="#services">Services</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="services">
<h2 style="text-align:center;">Our Services</h2>
<div class="services">
<div class="service">
<img src="icons/tire.png" alt="Flat Tire Replacement">
<h3>Flat Tire Replacement</h3>
<p>Quick and safe replacement for all vehicles on lot.</p>
</div>
<div class="service">
<img src="icons/battery.png" alt="Dead Battery Replacement">
<h3>Dead Battery Replacement</h3>
<p>OEM-approved battery testing and replacement.</p>
</div>
<div class="service">
<img src="icons/unlock.png" alt="Vehicle Unlocking">
<h3>Vehicle Unlocking</h3>
<p>Fast and secure unlocking of locked vehicles on lot.</p>
</div>
<div class="service">
<img src="icons/fuel.png" alt="Fueling Vehicles">
<h3>Fueling Gas Vehicles</h3>
<p>On-site fueling to keep lots moving efficiently.</p>
</div>
<div class="service">
<img src="icons/ev.png" alt="EV Charging">
<h3>EV Charging</h3>
<p>Fast and safe charging solutions for electric vehicles.</p>
</div>
</div>
</section>
<section id="testimonials" class="testimonials">
<h2>What Our Clients Say</h2>
<div class="testimonial">
"AAKM Logistics handled our lot vehicles quickly and professionally. Highly recommend!" – GM Transition Lot
</div>
<div class="testimonial">
"Reliable, fast, and professional service for all our on-lot needs." – Stellantis Operations
</div>
</section>
<section id="contact">
<h2 style="text-align:center;">Contact Us</h2>
<form action="mailto:info@aakmlogistics.com" method="post" enctype="text/plain">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Email" required>
<textarea name="message" placeholder="Message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>Business Hours: Mon–Fri: 8am–6pm</p>
<p>© 2025 AAKM Logistics. All rights reserved.</p>
</footer>
</body>
</html>