<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ShineX Waterless Car Wash</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #000;
color: white;
}
header {
background: linear-gradient(90deg, #111, #333);
padding: 30px;
text-align: center;
}
header h1 {
font-size: 40px;
margin: 0;
color: gold;
}
header p {
margin-top: 5px;
font-size: 18px;
color: #ccc;
}
section {
padding: 30px;
text-align: center;
}
.btn {
background: gold;
color: black;
padding: 12px 22px;
border-radius: 8px;
font-size: 18px;
text-decoration: none;
font-weight: bold;
}
.price-box {
border: 1px solid gold;
padding: 20px;
border-radius: 10px;
margin: 15px auto;
max-width: 350px;
background: rgba(255, 215, 0, 0.08);
}
footer {
padding: 20px;
text-align: center;
background: #111;
color: #999;
}
</style>
</head>
<body>
<header>
<h1>ShineX Waterless Car Wash</h1>
<p>Premium Waterless Detailing • Eco Friendly • Doorstep Service</p>
</header>
<section>
<h2 style="color: gold;">📞 Book Wash Now</h2>
<a class="btn" href="https://wa.me/919258525474">Book on WhatsApp</a>
</section>
<section>
<h2 style="color: gold;">💧 Our Services</h2>
<p>Waterless Exterior Wash</p>
<p>Interior Vacuum Cleaning</p>
<p>Tyre Polish & Dashboard Shine</p>
<p>Full Body Detailing</p>
</section>
<section>
<h2 style="color: gold;">💰 Price List</h2>
<div class="price-box">
<h3>Hatchback</h3>
<p>Waterless Exterior + Interior</p>
<h3 style="color: gold;">₹249</h3>
</div>
<div class="price-box">
<h3>Sedan</h3>
<p>Deep Clean + Dashboard Shine</p>
<h3 style="color: gold;">₹299</h3>
</div>
<div class="price-box">
<h3>SUV</h3>
<p>Full Body Premium Wash</p>
<h3 style="color: gold;">₹399</h3>
</div>
</section>
<section>
<h2 style="color: gold;">🖼️ Gallery (Before / After)</h2>
<p>Images will be added here</p>
</section>
<footer>
<p>© 2025 ShineX Waterless Car Wash</p>
</footer>
</body>
</html>