-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
395 lines (338 loc) · 16 KB
/
index.html
File metadata and controls
395 lines (338 loc) · 16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speedle - Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="/assets/favicon.ico" type="image/x-icon">
</head>
<body>
<!-- nav start here -->
<nav class="navbar" id="navbar">
<!-- LOGO -->
<a href="#" class="logo" aria-label="Speedle Home">
<span class="logo-speed">speed</span><span class="logo-le">le</span>
</a>
<!-- DESKTOP MENU -->
<ul class="nav-links" id="desktop-menu">
<li class="nav-link-item">
<a href="#">Home</a>
</li>
<li class="nav-link-item dropdown">
<a href="#" class="dropdown-toggle">
How it Works <span class="arrow">▼</span>
</a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fas fa-gas-pump"></i> For Service Stations</a></li>
<li><a href="#"><i class="fas fa-car"></i> For Vehicle Owners</a></li>
</ul>
</li>
<li class="nav-link-item dropdown">
<a href="#" class="dropdown-toggle">
Solutions <span class="arrow">▼</span>
</a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fas fa-clock"></i> Time-slot Management</a></li>
<li><a href="#"><i class="fas fa-users"></i> Customer Flow Control</a></li>
<li><a href="#"><i class="fas fa-calendar-day"></i> Daily Planning</a></li>
</ul>
</li>
<li class="nav-link-item dropdown">
<a href="#" class="dropdown-toggle">
Why Speedle <span class="arrow">▼</span>
</a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fas fa-exclamation-triangle"></i> Problems We Solve</a></li>
<li><a href="#"><i class="fas fa-chart-line"></i> Benefits</a></li>
<li><a href="#"><i class="fas fa-map-marked-alt"></i> Ground Reality Design</a></li>
</ul>
</li>
<li class="nav-link-item dropdown">
<a href="#" class="dropdown-toggle">
Company <span class="arrow">▼</span>
</a>
<ul class="dropdown-menu">
<li><a href="#"><i class="fas fa-info-circle"></i> About Speedle</a></li>
<li><a href="#"><i class="fas fa-envelope"></i> Contact</a></li>
<li><a href="#"><i class="fas fa-handshake"></i> Become a Partner</a></li>
</ul>
</li>
<!-- CTA BUTTON -->
<li class="nav-link-item">
<a href="/partners.html" class="cta">
<i class="fas fa-rocket"></i> Partner with Speedle
</a>
</li>
</ul>
<!-- HAMBURGER BUTTON -->
<button class="hamburger" id="hamburger" aria-label="Menu" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
</nav>
<!-- MOBILE MENU OVERLAY -->
<div class="mobile-menu-overlay" id="mobileOverlay"></div>
<!-- MOBILE MENU -->
<div class="mobile-menu" id="mobileMenu">
<ul class="mobile-nav-links">
<!-- Home - Regular link -->
<li class="mobile-nav-item">
<a href="#" class="mobile-regular-link" data-close-menu="true">Home</a>
</li>
<!-- Dropdown 1 -->
<li class="mobile-nav-item mobile-dropdown-toggle">
<button class="mobile-nav-link" data-toggle="dropdown">
How it Works <span class="arrow">▼</span>
</button>
<ul class="mobile-dropdown-menu">
<li><a href="#" data-close-menu="true"><i class="fas fa-gas-pump"></i> For Service Stations</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-car"></i> For Vehicle Owners</a></li>
</ul>
</li>
<!-- Dropdown 2 -->
<li class="mobile-nav-item mobile-dropdown-toggle">
<button class="mobile-nav-link" data-toggle="dropdown">
Solutions <span class="arrow">▼</span>
</button>
<ul class="mobile-dropdown-menu">
<li><a href="#" data-close-menu="true"><i class="fas fa-clock"></i> Time-slot Management</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-users"></i> Customer Flow Control</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-calendar-day"></i> Daily Planning</a></li>
</ul>
</li>
<!-- Dropdown 3 -->
<li class="mobile-nav-item mobile-dropdown-toggle">
<button class="mobile-nav-link" data-toggle="dropdown">
Why Speedle <span class="arrow">▼</span>
</button>
<ul class="mobile-dropdown-menu">
<li><a href="#" data-close-menu="true"><i class="fas fa-exclamation-triangle"></i> Problems We
Solve</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-chart-line"></i> Benefits</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-map-marked-alt"></i> Ground Reality
Design</a></li>
</ul>
</li>
<!-- Dropdown 4 -->
<li class="mobile-nav-item mobile-dropdown-toggle">
<button class="mobile-nav-link" data-toggle="dropdown">
Company <span class="arrow">▼</span>
</button>
<ul class="mobile-dropdown-menu">
<li><a href="#" data-close-menu="true"><i class="fas fa-info-circle"></i> About Speedle</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-envelope"></i> Contact</a></li>
<li><a href="#" data-close-menu="true"><i class="fas fa-handshake"></i> Become a Partner</a></li>
</ul>
</li>
<!-- CTA - Regular link -->
<li class="mobile-nav-item">
<a href="#" class="cta mobile-cta" data-close-menu="true">
<i class="fas fa-rocket"></i> Partner with Speedle
</a>
</li>
</ul>
</div>
<!-- nav end here -->
<!-- PAGE CONTENT -->
<main>
<!-- hero starts here -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>
<span class="gradient-text">More Customers for Stations.</span><br>
<span class="highlight">Zero Waiting for</span> Drivers
</h1>
<p class="lead">
Book a professional car wash near you in seconds.
No waiting. Trusted stations. Transparent pricing.
</p>
<div class="hero-actions">
<button class="btn-primary">Book a Wash Now</button>
<a href="#" class="btn-secondary">See How It Works</a>
</div>
</div>
</div>
</section>
<!-- hero ends here -->
<!-- how it works starts here -->
<section class="how-it-works">
<div class="container">
<h2>How Speedle Works</h2>
<p class="section-subtitle">
Book your car wash in just three simple steps
</p>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<h4>Choose Location</h4>
<p>Find nearby trusted car wash stations</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h4>Select Time Slot</h4>
<p>Pick a convenient date and time</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h4>Wash & Relax</h4>
<p>Arrive on time. We handle the rest</p>
</div>
</div>
</div>
</section>
<!-- how it works ends here -->
<!-- problem section starts here -->
<section class="problems">
<div class="container">
<h2>The Problem Today</h2>
<p class="section-subtitle">
Car wash services struggle on both sides
</p>
<div class="problem-grid">
<div class="problem">
<h4>No Customers</h4>
<p>Wash stations stay idle due to poor visibility</p>
</div>
<div class="problem">
<h4>Overcrowded Stations</h4>
<p>Some locations get too busy while others are empty</p>
</div>
<div class="problem">
<h4>Long Waiting Time</h4>
<p>Customers waste time standing in queues</p>
</div>
<div class="problem">
<h4>No Management System</h4>
<p>No slot control, no data, no optimization</p>
</div>
</div>
</div>
</section>
<!-- problme section ends here -->
<!-- solution section starts here -->
<section class="solution">
<div class="container">
<h2>The Speedle Solution</h2>
<p class="section-subtitle">
One platform that fixes everything
</p>
<div class="solution-grid">
<div class="solution-item">
<h4>More Customers</h4>
<p>Digital discovery brings demand to idle stations</p>
</div>
<div class="solution-item">
<h4>Balanced Load</h4>
<p>Smart slot booking distributes traffic evenly</p>
</div>
<div class="solution-item">
<h4>No Waiting</h4>
<p>Customers arrive exactly at their booked time</p>
</div>
<div class="solution-item">
<h4>Complete Management</h4>
<p>Slots, payments, data, and performance insights</p>
</div>
</div>
</div>
</section>
<!-- solution section ends here -->
<!-- footer section starts here -->
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<!-- Top Section -->
<div class="footer-top">
<div class="footer-brand">
<a href="/" class="footer-logo">
<span class="logo-speed">speed</span><span class="logo-le">le</span>
</a>
<p class="footer-tagline">Your Car, Our Care</p>
<div class="footer-contact">
<p><i class="fas fa-envelope"></i> SpeedlePvtLtd@gmail.com</p>
<p><i class="fas fa-phone"></i> +91 60063 29805</p>
<p><i class="fas fa-clock"></i> 24/7 Support</p>
</div>
</div>
<div class="footer-links">
<div class="link-group">
<h4>Quick Links</h4>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">How It Works</a></li>
<li><a href="#">Solutions</a></li>
<li><a href="#">Why Speedle</a></li>
</ul>
</div>
<div class="link-group">
<h4>For You</h4>
<ul>
<li><a href="#">Book a Wash</a></li>
<li><a href="#">Find Stations</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Customer Support</a></li>
</ul>
</div>
<div class="link-group">
<h4>For Partners</h4>
<ul>
<li><a href="#">Become a Partner</a></li>
<li><a href="#">Partner Dashboard</a></li>
<li><a href="#">Station Resources</a></li>
<li><a href="#">Partner Support</a></li>
</ul>
</div>
</div>
</div>
<!-- Middle Section -->
<!-- <div class="footer-middle">
<div class="payment-methods">
<h4>We Accept</h4>
<div class="payment-icons">
<span class="payment-icon">💳</span>
<span class="payment-icon">📱</span>
<span class="payment-icon">💵</span>
<span class="payment-icon">🏦</span>
</div>
<p class="payment-text">Cards • UPI • Cash • Net Banking</p>
</div>
<div class="partner-cta">
<a href="#" class="partner-btn">
<i class="fas fa-handshake"></i> Become a Partner
</a>
<p>Join India's fastest growing car wash network</p>
</div>
</div> -->
<!-- Bottom Section -->
<div class="footer-bottom">
<div class="copyright">
<p>© 2025 Speedle Private Limited. All rights reserved.</p>
<div class="legal-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Cookie Policy</a>
</div>
</div>
<div class="footer-social">
<p>Follow us:</p>
<div class="social-icons">
<!-- Add your social media links when available -->
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="Facebook"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div>
</div>
</footer>
<!-- footer section ends here -->
</main>
<script src="script.js"></script>
</body>
</html>