<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speddick Industrial Tyres</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}

header {
background-color: #1a1a1a;
color: #fff;
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
}

header h1 {
margin: 0;
font-size: 22px;
}

nav a {
color: #fff;
text-decoration: none;
margin-left: 20px;
font-weight: bold;
}

.hero {
background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789') no-repeat center/cover;
height: 400px;
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.hero h2 {
font-size: 40px;
background-color: rgba(0,0,0,0.6);
padding: 20px;
}

.section {
padding: 40px 20px;
text-align: center;
}

.services {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.card {
background: white;
padding: 20px;
width: 250px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

footer {
background: #1a1a1a;
color: white;
text-align: center;
padding: 15px;
margin-top: 20px;
}

@media (max-width: 768px) {
.hero h2 {
font-size: 28px;
}

.services {
flex-direction: column;
align-items: center;
}
}
</style>
</head>

<body>

<header>
<h1>Speddick Industrial Tyres</h1>
<nav>
<a href="#">Home</a>
<a href="#">Services</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>

<div class="hero">
<h2>Reliable Industrial Tyre Solutions</h2>
</div>

<section class="section">
<h2>Our Services</h2>
<div class="services">
<div class="card">
<h3>Forklift Tyres</h3>
<p>Supply and fitment of solid and pneumatic tyres.</p>
</div>
<div class="card">
<h3>On-Site Service</h3>
<p>Mobile tyre fitting and breakdown assistance.</p>
</div>
<div class="card">
<h3>Pressure Checks</h3>
<p>Routine inspections to extend tyre life and safety.</p>
</div>
<div class="card">
<h3>Fleet Management</h3>
<p>Complete tyre management solutions for your business.</p>
</div>
</div>
</section>

<section class="section" style="background:#eaeaea;">
<h2>Why Choose Us?</h2>
<p>✔ Fast Response Time</p>
<p>✔ Experienced Technicians</p>
<p>✔ Competitive Pricing</p>
<p>✔ Trusted by Industry Leaders</p>
</section>

<section class="section">
<h2>Contact Us</h2>
<p>📍 Durban, South Africa</p>
<p>📞 Your Phone Number</p>
<p>✉️ Your Email Address</p>
</section>

<footer>
<p>&copy; 2026 Speddick Industrial Tyres. All Rights Reserved.</p>
</footer>

</body>
</html>