-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
563 lines (498 loc) · 27.4 KB
/
index.html
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
<!doctype html>
<html class="h-100" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<link rel="icon" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon.png">
<meta name="author" content="Amer Tahri-Joutey, Hassan Chalf">
<title>TaxiQuick — Quick and Easy Taxi Booking</title>
<link rel="stylesheet" href="css/main.css">
<style>
/* inter-300 - latin */
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-400 - latin */
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: local(''),
url('fonts/inter-v12-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('fonts/inter-v12-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@keyframes gradient-animation {
0% {
background-position: 0% 0%;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0% 0%;
}
}
.gradient-text {
background: linear-gradient(60deg, #FF6600, #4d73e5, #FF6600, #475a94);
-webkit-background-clip: text;
background-size: 300% 300%;
background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient-animation 6s ease infinite;
}
#fare-result {
font-size: 1.25rem; /* Adjust font size as needed */
margin-top: 15px; /* Add some space above the result */
}
.hidden-note {
color: #202020;
}
.tooltip {
position: relative;
display: inline-block;
cursor: help; /* Shows a help cursor */
}
.tooltip .tooltiptext {
visibility: hidden;
width: 260px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%; /* Position above the tooltip */
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
</style>
</head>
<body class="bg-black text-white mt-0" data-bs-spy="scroll" data-bs-target="#navScroll">
<nav id="navScroll" class="navbar navbar-dark bg-black fixed-top px-vw-5" tabindex="0">
<div class="container">
<a class="navbar-brand pe-md-4 fs-4 col-12 col-md-auto text-center" href="index.html">
<img src="img/taxi.png" width="30" height="30" style="margin-top: -10px;" class="d-inline-block align-text-top me-2 responsive-img" alt="TaxiQuick logo">
<path d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z"/>
<path d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z"/>
</svg>
<span class="ms-md-1 mt-1 fw-bolder me-md-5">TaxiQuick</span>
</a>
<ul class="navbar-nav mx-auto mb-2 mb-lg-0 list-group list-group-horizontal">
<li class="nav-item">
<a class="nav-link fs-5" href="#" aria-label="Homepage">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5" href="about.html" aria-label="About page">
About
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-5" href="#pricing" aria-label="Pricing section">
Pricing
</a>
</li>
<li class="nav-item">
<a href="mailto:support@taxiquick.com" class="nav-link fs-5" aria-label="Contact section">
Contact
</a>
</li>
</ul>
</div>
</nav>
<main>
<div class="w-100 overflow-hidden position-relative bg-black text-white" data-aos="fade">
<div class="position-absolute w-100 h-100 bg-black opacity-75 top-0 start-0"></div>
<div class="container py-vh-4 position-relative mt-5 px-vw-5 text-center">
<div class="row d-flex align-items-center justify-content-center py-vh-5">
<div class="col-12 col-xl-10">
<span class="h5 text-secondary fw-lighter">London's Top Choice for Fast Transportation</span>
<h1 class="display-huge mt-3 mb-3 lh-1">Book Your London Taxi in Seconds</h1>
</div>
<div class="col-12 col-xl-8">
<p class="lead text-secondary">Reliable rides, 24/7. Track your taxi in real-time and enjoy a seamless travel experience across the city.</p>
</div>
<div class="col-12 text-center">
<a href="booking.html" class="btn btn-xl btn-light">Book Now
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="w-100 position-relative bg-black text-white bg-cover d-flex align-items-center">
<div class="container-fluid px-vw-5">
<div class="position-absolute w-100 h-50 bg-dark bottom-0 start-0"></div>
<div class="row d-flex align-items-center position-relative justify-content-center px-0 g-5">
<div class="col-12 col-lg-6">
<img src="img/image1.png" width="100%" alt="abstract image" class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up" data-aos-duration="1500">
</div>
<div class="col-12 col-md-6 col-lg-3">
<img src="img/image2.png" width="100%" alt="abstract image" class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up" data-aos-duration="2500" style="margin-top: 25px;">
</div>
<div class="col-12 col-md-6 col-lg-3">
<img src="img/image3.jpg" width="100%" alt="abstract image" class="img-fluid position-relative rounded-5 shadow" data-aos="fade-up" data-aos-duration="2700" style="margin-top: 60px;">
</div>
</div>
</div>
</div>
<div class="bg-dark">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-7 text-lg-end" data-aos="fade-right">
<span class="h5 text-secondary fw-lighter">Why Choose TaxiQuick</span>
<h2 class="display-4">We value your time and comfort. Our London taxis offer fast bookings, reliable drivers, and smooth journeys across the city. Wherever you're headed, <span style="text-decoration: underline; text-underline-offset: 10px;">TaxiQuick</span> gets you there on time.</h2>
</div>
<div class="col-12 col-lg-5" data-aos="fade-left">
<h3 class="pt-5">Fast and Easy Booking</h3>
<p class="text-secondary">Book your ride in just a few taps. With TaxiQuick, you can reserve your taxi in seconds, ensuring a quick, efficient, and hassle-free experience from start to finish.<br>
<a href="booking.html" class="link-fancy link-fancy-light me-2" style="margin-top: 10px;">Book a Taxi</a>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" class="bi bi-arrow-right-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z"/>
</svg>
</p>
<h3 class="border-top border-secondary pt-5 mt-5">Dependable Drivers</h3>
<p class="text-secondary">Our skilled drivers are dedicated to providing you with a smooth and comfortable journey across London.<br>
</p>
</div>
</div>
</div>
</div>
<div class="bg-black py-vh-3">
<div class="container bg-black px-vw-5 py-vh-3 rounded-5 shadow">
<div class="row gx-5">
<div class="col-12 col-md-6">
<div class="card bg-transparent mb-5" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/taxi_booking.png" width="582" height="327" alt="abstract image" class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Simple Booking</h2>
<p class="pb-4 text-secondary">Reserve your ride in just a few taps with our user-friendly app. Booking a taxi has never been easier.</p>
</div>
</div>
</div>
<div class="card bg-transparent" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/comfortable.png" width="582" height="442" alt="abstract image" class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Comfort and Joy</h2>
<p class="pb-4 text-secondary">Experience a pleasant and relaxing journey in our clean, comfortable taxis. Enjoy every ride with our top-notch service.</p>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div id="bigtitle" class="p-5 pt-0 mt-5" data-aos="fade">
<span class="h5 text-secondary fw-lighter">Discover our standout features</span>
<h2 class="display-4">Explore the qualities that make your journey exceptional</h2>
</div>
<div class="card bg-transparent mb-5 mt-5" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/reliability.jpg" width="582" height="390" alt="abstract image" class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Reliable Rides</h2>
<p class="pb-4 text-secondary">Count on us for timely pickups and dependable service. Our drivers are always on time and ready to go.</p>
</div>
</div>
</div>
<div class="card bg-transparent" data-aos="zoom-in-up">
<div class="bg-dark shadow rounded-5 p-0">
<img src="img/customer_support.png" width="582" height="327" alt="abstract image" class="img-fluid rounded-5 no-bottom-radius" loading="lazy">
<div class="p-5">
<h2 class="fw-lighter">Always Here for You</h2>
<p class="pb-4 text-secondary">Our support team is available 24/7 to handle any questions or issues. We're committed to delivering quick and effective solutions whenever you need us.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-dark position-relative">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-7">
<img class="img-fluid rounded-5 mb-n5 shadow" src="img/img2.jpg" width="512" height="512" alt="a nice person" loading="lazy" data-aos="zoom-in-right">
<img class="img-fluid rounded-5 ms-5 mb-n5 shadow" src="img/img1.jpg" width="512" height="512" alt="another nice person" loading="lazy" data-aos="zoom-in-up">
</div>
<div class="col-12 col-lg-5 bg-dark rounded-5 py-5" data-aos="fade">
<span class="h5 text-secondary fw-lighter">Need a Fast Ride at Any Hour?</span>
<h2 class="display-4">Anytime, Anywhere: London's Taxi Service That</h2>
<h2 class="display-4"><span class="gradient-text">Never</span> Sleeps</h2>
</div>
</div>
</div>
</div>
<div class="bg-black" id="pricing">
<div class="container px-vw-5 py-vh-5">
<div class="row d-flex align-items-center">
<div class="col-12 col-lg-5 text-center text-lg-end" data-aos="zoom-in-right">
<span class="h5 text-secondary fw-lighter">Standard Ride</span>
<h2 class="display-4">The most popular option for daily travel</h2>
</div>
<div class="col-12 col-lg-7 bg-dark rounded-5 py-vh-3 text-center my-5" data-aos="zoom-in-up" id="price-card">
<!-- Price Display -->
<div id="price-display">
<h2 class="display-huge mb-5">
<span class="fs-4 me-2 fw-light">£</span><span class="border-bottom border-5">3.49</span><span class="fs-6 fw-light">/Mile</span>
</h2>
<p class="lead text-secondary" style="margin-top: 35px; margin-bottom: 35px;">
Our £3.49 per mile Standard Ride includes base fare and distance. Enjoy a pleasant and well-appointed ride with our professional drivers. No hidden fees — just clear, upfront pricing.
</p>
<a href="#" class="btn btn-xl btn-light" id="calculate-btn">Calculate Fare
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
</svg>
</a>
</div>
<div id="price-calculator" style="display: none;">
<h2 class="display-6 mb-4">Calculate Your Fare</h2>
<form>
<div class="mb-3">
<label for="distance" class="form-label">Distance (miles)</label>
<input type="number" class="form-control" id="distance" placeholder="Enter distance in miles" step="0.01" max="36" style="width: 400px; margin-left: auto; margin-right: auto;">
</div>
<button type="button" class="btn btn-xl btn-light" style="margin-top: 25px;" onclick="calculateFare()">Calculate
</button>
</form>
<p class="lead text-secondary mt-4" id="fare-result"></p>
<a href="#" class="btn btn-xl btn-light" id="back-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right" style="transform: scaleX(-1); margin-right: 5px;" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
</svg>
Back to Pricing
</a>
</div>
</div>
</div>
</div>
</div>
<script>
document.getElementById('calculate-btn').addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('price-display').style.display = 'none';
document.getElementById('price-calculator').style.display = 'block';
});
document.getElementById('back-btn').addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('price-calculator').style.display = 'none';
document.getElementById('price-display').style.display = 'block';
});
function calculateFare() {
const distanceMiles = parseFloat(document.getElementById('distance').value);
if (!isNaN(distanceMiles) && distanceMiles > 0 && distanceMiles <= 36) {
const rate = 3.49;
const fare = (distanceMiles * rate).toFixed(2);
document.getElementById('fare-result').textContent = `Your estimated fare is £${fare}`;
} else {
document.getElementById('fare-result').textContent = 'Please enter a valid distance';
}
}
</script>
</div>
</div>
<div id="testimonials" class="bg-dark py-vh-5">
<div class="container px-vw-5">
<div class="row d-flex gx-5 align-items-center">
<div class="col-12 col-lg-6">
<div class="rounded-5 bg-black p-5 shadow" data-aos="zoom-in-right">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
</div>
<p class="text-secondary lead">"TaxiQuick has truly transformed my daily commute. The service is always prompt, and I appreciate the easy booking process. Highly recommended!"</p>
<p class="tooltip" style="color: #474747;">Don't hover
<span class="tooltiptext">He wrote this I don't even know what this is all about</span>
</p>
<div class="d-flex justify-content-start align-items-center border-top border-secondary pt-3">
<img src="img/OTJ.jpeg" width="96" height="96" class="rounded-circle me-3" alt="my sister" loading="lazy">
<div>
<span class="h6 fw-5">Oumaima Tahri Joutey</span><br>
<small class="text-secondary">QA Test Engineer, Altados</small>
</div>
</div>
</div>
<div class="rounded-5 bg-black p-5 shadow mt-5" data-aos="zoom-in-right">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-half" viewBox="0 0 16 16">
<path d="M5.354 5.119 7.538.792A.516.516 0 0 1 8 .5c.183 0 .366.097.465.292l2.184 4.327 4.898.696A.537.537 0 0 1 16 6.32a.548.548 0 0 1-.17.445l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256a.52.52 0 0 1-.146.05c-.342.06-.668-.254-.6-.642l.83-4.73L.173 6.765a.55.55 0 0 1-.172-.403.58.58 0 0 1 .085-.302.513.513 0 0 1 .37-.245l4.898-.696zM8 12.027a.5.5 0 0 1 .232.056l3.686 1.894-.694-3.957a.565.565 0 0 1 .162-.505l2.907-2.77-4.052-.576a.525.525 0 0 1-.393-.288L8.001 2.223 8 2.226v9.8z"/>
</svg>
</div>
<p class="text-secondary lead">"TaxiQuick is easy to use and reliable. The simple design and real-time tracking make booking a taxi quick and convenient.<br> A must-try!"</p>
<div class="d-flex justify-content-start align-items-center border-top border-secondary pt-3">
<img src="img/Faysal.jpg" width="96" height="96" class="rounded-circle me-3" loading="lazy">
<div>
<span class="h6 fw-5">Samir Layle</span><br>
<small class="text-secondary">IT Support</small>
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="p-5 pt-0" data-aos="fade">
<span class="h5 text-secondary fw-lighter">What Our Users Are Saying</span>
<h2 class="display-4">Hear from Our Satisfied Customers</h2>
</div>
<div class="rounded-5 bg-black p-5 shadow mt-5" data-aos="zoom-in-left">
<div class="fs-1">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z"/>
</svg>
</div>
<p class="text-secondary lead">"My ride with TaxiQuick was the best I've ever had; the driver was very friendly and I was at my destination in a flash."</p>
<div class="d-flex justify-content-start align-items-center border-top pt-3">
<img src="img/hatim.jpg" width="96" height="96" class="rounded-circle me-3" loading="lazy">
<div>
<span class="h6 fw-5">Hatim Elamine</span><br>
<small class="text-secondary">Student</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-black border-top border-dark">
<div class="container py-vh-4 text-secondary fw-lighter">
<div class="row">
<div class="col-12 col-lg-5 py-4 text-center text-lg-start">
<a class="navbar-brand pe-md-4 fs-4 col-12 col-md-auto text-center">
<img src="img/taxi.png" width="5%" style="margin-top: -5px; filter: brightness(50%);" class="d-inline-block align-text-top" alt="TaxiQuick logo">
<span class="ms-md-1 mt-1 fw-bolder me-md-5" style="cursor: default;">TaxiQuick</span>
</a>
</div>
<div class="col border-end border-dark">
<span class="h6">Company</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="about.html" class="link-fancy link-fancy-light">About us</a>
</li>
<li class="nav-item">
<a href="/legal/taxiquick-legal-terms-and-conditions.pdf" class="link-fancy link-fancy-light" target="_blank">Legal</a>
</li>
</ul>
</div>
<div class="col border-end border-dark">
<span class="h6">Services</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="index.html#pricing" class="link-fancy link-fancy-light">Pricing</a>
</li>
<li class="nav-item">
</li>
<li class="nav-item">
<a href="#testimonials" class="link-fancy link-fancy-light">Testimonials</a>
</li>
</ul>
</div>
<div class="col">
<span class="h6">Support</span>
<ul class="nav flex-column">
<li class="nav-item">
<a href="mailto:support@taxiquick.com" class="link-fancy link-fancy-light">Contact</a>
</li>
<li class="nav-item">
<a href="newsletter.html" class="link-fancy link-fancy-light">Subscribe</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/aos.js"></script>
<script>
AOS.init({
duration: 800,
});
</script>
<script>
let scrollpos = window.scrollY
const header = document.querySelector(".navbar")
const header_height = header.offsetHeight
const add_class_on_scroll = () => header.classList.add("scrolled", "shadow-sm")
const remove_class_on_scroll = () => header.classList.remove("scrolled", "shadow-sm")
window.addEventListener('scroll', function() {
scrollpos = window.scrollY;
if (scrollpos >= header_height) { add_class_on_scroll() }
else { remove_class_on_scroll() }
console.log(scrollpos)
})
</script>
</body>
</html>