chaudhariauto / index.html
SauravCh11's picture
Add 2 files
4d4f9d4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chaudhari Auto - Premium Bike Parts & Seat Covers</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.hero {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
background-size: cover;
background-position: center;
}
.part-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.part-card {
transition: all 0.3s ease;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.category-btn.active {
background-color: #f59e0b;
color: white;
}
.floating-whatsapp {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Top Bar -->
<div class="bg-orange-600 text-white py-2 px-4">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-phone-alt mr-2"></i>
<span>+91 98765 43210</span>
</div>
<div class="flex items-center">
<i class="fas fa-envelope mr-2"></i>
<span>[email protected]</span>
</div>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="hover:text-gray-200"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="hover:text-gray-200"><i class="fab fa-instagram"></i></a>
<a href="#" class="hover:text-gray-200"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="mr-2">
<i class="fas fa-motorcycle text-orange-500 text-3xl"></i>
</div>
<div>
<h1 class="text-2xl font-bold text-gray-800">Chaudhari <span class="text-orange-500">Auto</span></h1>
<p class="text-xs text-gray-600">Since 2024</p>
</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="text-gray-800 hover:text-orange-500 font-medium">Home</a>
<a href="#products" class="text-gray-800 hover:text-orange-500 font-medium">Products</a>
<a href="#about" class="text-gray-800 hover:text-orange-500 font-medium">About</a>
<a href="#testimonials" class="text-gray-800 hover:text-orange-500 font-medium">Testimonials</a>
<a href="#contact" class="text-gray-800 hover:text-orange-500 font-medium">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-800 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
<a href="#home" class="block py-2 text-gray-800 hover:text-orange-500">Home</a>
<a href="#products" class="block py-2 text-gray-800 hover:text-orange-500">Products</a>
<a href="#about" class="block py-2 text-gray-800 hover:text-orange-500">About</a>
<a href="#testimonials" class="block py-2 text-gray-800 hover:text-orange-500">Testimonials</a>
<a href="#contact" class="block py-2 text-gray-800 hover:text-orange-500">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero min-h-screen flex items-center justify-center text-white">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Premium Bike Parts & Seat Covers</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Your one-stop shop for high-quality motorcycle accessories and parts. Serving customers with excellence since 2024.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#products" class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Browse Products</a>
<a href="#contact" class="bg-transparent hover:bg-white hover:text-gray-900 border-2 border-white text-white font-bold py-3 px-6 rounded-lg transition duration-300">Contact Us</a>
</div>
</div>
</section>
<!-- Featured Products -->
<section id="products" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Products</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto"></div>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">Explore our wide range of premium bike parts and custom seat covers designed for comfort and durability.</p>
</div>
<!-- Category Filter -->
<div class="flex flex-wrap justify-center gap-3 mb-8">
<button class="category-btn active px-4 py-2 rounded-full bg-gray-100 hover:bg-orange-500 hover:text-white transition" data-category="all">All Products</button>
<button class="category-btn px-4 py-2 rounded-full bg-gray-100 hover:bg-orange-500 hover:text-white transition" data-category="seat-covers">Seat Covers</button>
<button class="category-btn px-4 py-2 rounded-full bg-gray-100 hover:bg-orange-500 hover:text-white transition" data-category="engine-parts">Engine Parts</button>
<button class="category-btn px-4 py-2 rounded-full bg-gray-100 hover:bg-orange-500 hover:text-white transition" data-category="accessories">Accessories</button>
</div>
<!-- Products Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
<!-- Product 1 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="seat-covers">
<div class="relative">
<img src="https://images.unsplash.com/photo-1599741848471-8b68e3c798e3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Premium Bike Seat Cover" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-orange-500 text-white text-xs font-bold px-2 py-1 rounded">Bestseller</div>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">Premium Leather Seat Cover</h3>
<p class="text-gray-600 text-sm mb-3">Waterproof and durable leather seat cover for all bike models.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹1,299</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="engine-parts">
<div class="relative">
<img src="https://images.unsplash.com/photo-1580310614697-2a9b9a0b03a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Engine Piston" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">High Performance Piston Kit</h3>
<p class="text-gray-600 text-sm mb-3">Complete piston kit for 150-200cc bikes. OEM quality.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹2,499</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="accessories">
<div class="relative">
<img src="https://images.unsplash.com/photo-1558980394-4c7c9299fe96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bike Handle Grips" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">Premium Handle Grips</h3>
<p class="text-gray-600 text-sm mb-3">Anti-slip, ergonomic design for better control and comfort.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹499</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="seat-covers">
<div class="relative">
<img src="https://images.unsplash.com/photo-1568605114967-8130f482d6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Custom Bike Seat" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-orange-500 text-white text-xs font-bold px-2 py-1 rounded">New</div>
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">Custom Stitched Seat Cover</h3>
<p class="text-gray-600 text-sm mb-3">Hand-stitched with premium materials for ultimate comfort.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹1,799</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 5 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="engine-parts">
<div class="relative">
<img src="https://images.unsplash.com/photo-1558981286-6b9826ba576e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bike Chain" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">O-Ring Chain Kit</h3>
<p class="text-gray-600 text-sm mb-3">High-strength chain with O-ring seals for longer life.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹1,599</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 6 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="accessories">
<div class="relative">
<img src="https://images.unsplash.com/photo-1558981852-426c6c22d060?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Bike Mirrors" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">Wide View Mirrors</h3>
<p class="text-gray-600 text-sm mb-3">Convex design for maximum rear visibility and safety.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹699</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 7 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="seat-covers">
<div class="relative">
<img src="https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Gel Seat Cover" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">Gel Comfort Seat Cover</h3>
<p class="text-gray-600 text-sm mb-3">Memory foam gel technology for long ride comfort.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹2,299</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
<!-- Product 8 -->
<div class="part-card bg-white rounded-lg overflow-hidden shadow-md" data-category="engine-parts">
<div class="relative">
<img src="https://images.unsplash.com/photo-1558980394-4c7c9299fe96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Air Filter" class="w-full h-48 object-cover">
</div>
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 mb-2">High Flow Air Filter</h3>
<p class="text-gray-600 text-sm mb-3">Increases airflow while protecting your engine.</p>
<div class="flex justify-between items-center">
<span class="text-orange-500 font-bold">₹899</span>
<button class="bg-orange-500 hover:bg-orange-600 text-white px-3 py-1 rounded text-sm transition">Add to Cart</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<a href="#" class="inline-block bg-gray-800 hover:bg-gray-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300">View All Products</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<img src="https://images.unsplash.com/photo-1601758003122-53c40e686a19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bapu Chaudhari" class="rounded-lg shadow-lg w-full">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl font-bold text-gray-800 mb-6">About Chaudhari Auto</h2>
<div class="w-20 h-1 bg-orange-500 mb-6"></div>
<p class="text-gray-600 mb-4">Founded in 2024 by <span class="font-semibold">Bapu Chaudhari</span>, Chaudhari Auto has grown from a small roadside shop to one of the most trusted names in bike parts and accessories in the region.</p>
<p class="text-gray-600 mb-4">With over 25 years of experience, we specialize in providing high-quality motorcycle parts, custom seat covers, and accessories for all major bike brands.</p>
<p class="text-gray-600 mb-6">Our commitment to quality products, fair pricing, and excellent customer service has earned us a loyal customer base that keeps coming back.</p>
<div class="grid grid-cols-2 gap-4 mb-6">
<div class="flex items-center">
<div class="bg-orange-100 p-3 rounded-full mr-3">
<i class="fas fa-check-circle text-orange-500"></i>
</div>
<span class="text-gray-700 font-medium">Quality Products</span>
</div>
<div class="flex items-center">
<div class="bg-orange-100 p-3 rounded-full mr-3">
<i class="fas fa-check-circle text-orange-500"></i>
</div>
<span class="text-gray-700 font-medium">Fair Pricing</span>
</div>
<div class="flex items-center">
<div class="bg-orange-100 p-3 rounded-full mr-3">
<i class="fas fa-check-circle text-orange-500"></i>
</div>
<span class="text-gray-700 font-medium">Expert Advice</span>
</div>
<div class="flex items-center">
<div class="bg-orange-100 p-3 rounded-full mr-3">
<i class="fas fa-check-circle text-orange-500"></i>
</div>
<span class="text-gray-700 font-medium">Warranty</span>
</div>
</div>
<a href="#contact" class="inline-block bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Visit Our Store</a>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="py-16 bg-gray-800 text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">What Our Customers Say</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Rajesh Kumar</h4>
<div class="flex text-orange-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-300">"The leather seat cover I bought from Chaudhari Auto has completely transformed my riding experience. It's been 2 years and still looks new!"</p>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Priya Sharma</h4>
<div class="flex text-orange-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
<p class="text-gray-300">"Bapu Chaudhari helped me find the perfect parts for my vintage bike restoration. His knowledge is incredible and prices are very reasonable."</p>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-6 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Vikram Singh</h4>
<div class="flex text-orange-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-gray-300">"I've been coming to Chaudhari Auto for all my bike needs for over 10 years. Never had a single issue with any product I've purchased."</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Contact Us</h2>
<div class="w-20 h-1 bg-orange-500 mx-auto"></div>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">Visit our store or get in touch for any inquiries about our products and services.</p>
</div>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<div class="bg-gray-100 p-6 rounded-lg shadow-md h-full">
<h3 class="text-xl font-bold text-gray-800 mb-4">Our Store</h3>
<div class="mb-6">
<div class="flex items-start mb-4">
<div class="bg-orange-100 p-2 rounded-full mr-3">
<i class="fas fa-map-marker-alt text-orange-500"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Address</h4>
<p class="text-gray-600">123 Auto Market, Main Road<br>Mumbai, Maharashtra 400001</p>
</div>
</div>
<div class="flex items-start mb-4">
<div class="bg-orange-100 p-2 rounded-full mr-3">
<i class="fas fa-phone-alt text-orange-500"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Phone</h4>
<p class="text-gray-600">+91 98765 43210<br>+91 22 1234 5678</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-orange-100 p-2 rounded-full mr-3">
<i class="fas fa-envelope text-orange-500"></i>
</div>
<div>
<h4 class="font-semibold text-gray-800">Email</h4>
<p class="text-gray-600">[email protected]<br>[email protected]</p>
</div>
</div>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">Business Hours</h3>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-700">Monday - Friday</span>
<span class="text-gray-600">9:00 AM - 8:00 PM</span>
</div>
<div class="flex justify-between">
<span class="text-gray-700">Saturday</span>
<span class="text-gray-600">9:00 AM - 6:00 PM</span>
</div>
<div class="flex justify-between">
<span class="text-gray-700">Sunday</span>
<span class="text-gray-600">Closed</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 p-6 rounded-lg shadow-md h-full">
<h3 class="text-xl font-bold text-gray-800 mb-4">Send Us a Message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label for="phone" class="block text-gray-700 mb-2">Phone Number</label>
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 mb-2">Your Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500"></textarea>
</div>
<button type="submit" class="w-full bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-4 rounded-lg transition duration-300">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Map -->
<div class="h-96 w-full">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3771.7159111252!2d72.8321503149006!3d19.05272298705692!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c8af04a0e5d1%3A0x654f2e4cba72e4e4!2sAuto%20Market%2C%20Mumbai!5e0!3m2!1sen!2sin!4v1624960000000!5m2!1sen!2sin" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="mr-2">
<i class="fas fa-motorcycle text-orange-500 text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold">Chaudhari <span class="text-orange-500">Auto</span></h3>
<p class="text-xs text-gray-400">Since 2024</p>
</div>
</div>
<p class="text-gray-400 mb-4">Your trusted partner for premium bike parts and accessories.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-orange-500"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-orange-500"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-orange-500"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-orange-500"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-orange-500 transition">Home</a></li>
<li><a href="#products" class="text-gray-400 hover:text-orange-500 transition">Products</a></li>
<li><a href="#about" class="text-gray-400 hover:text-orange-500 transition">About Us</a></li>
<li><a href="#testimonials" class="text-gray-400 hover:text-orange-500 transition">Testimonials</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-orange-500 transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Products</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-orange-500 transition">Seat Covers</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-500 transition">Engine Parts</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-500 transition">Accessories</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-500 transition">Tires & Wheels</a></li>
<li><a href="#" class="text-gray-400 hover:text-orange-500 transition">Maintenance Kits</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Newsletter</h4>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest products and offers.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-800">
<button type="submit" class="bg-orange-500 hover:bg-orange-600 px-4 py-2 rounded-r-lg transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm">© 2023 Chaudhari Auto. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="text-gray-400 hover:text-orange-500 text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-orange-500 text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-orange-500 text-sm">Shipping Policy</a>
</div>
</div>
</div>
</footer>
<!-- Floating WhatsApp Button -->
<div class="floating-whatsapp">
<a href="https://wa.me/919876543210" class="bg-green-500 hover:bg-green-600 text-white p-4 rounded-full shadow-lg flex items-center justify-center transition">
<i class="fab fa-whatsapp text-2xl"></i>
</a>
</div>
<script>
// Mobile Menu Toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Category Filter
const categoryBtns = document.querySelectorAll('.category-btn');
const partCards = document.querySelectorAll('.part-card');
categoryBtns.forEach(btn => {
btn.addEventListener('click', function() {
// Remove active class from all buttons
categoryBtns.forEach(b => b.classList.remove('active'));
// Add active class to clicked button
this.classList.add('active');
const category = this.dataset.category;
// Filter products
partCards.forEach(card => {
if (category === 'all' || card.dataset.category === category) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SauravCh11/chaudhariauto" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>