-
Notifications
You must be signed in to change notification settings - Fork 151
/
index (4).html
1242 lines (1100 loc) · 46.4 KB
/
index (4).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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewprot" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" href="/media/favicon.png" type="image/png">
<title>CabRental</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css link -->
<script src="https://kit.fontawesome.com/2815a7015d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/CSS files/style.css">
<link rel="stylesheet" href="/CSS files/contact_style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<style>
/* Base styles */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #fff;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.logo img {
height: 50px;
}
.navbar {
display: flex;
gap: 20px;
list-style: none;
}
.navbar li a {
text-decoration: none;
color: #333;
padding: 10px 15px;
transition: 0.3s ease;
}
.navbar li a:hover {
color: #007bff;
}
.header-btn .sign-up {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.header-btn .sign-up:hover {
background-color: #0056b3;
}
/* Hide menu icon initially */
#menu-icon {
display: none;
}
/* Responsive styles for mobile sidebar */
@media (max-width: 600px) {
.navbar {
position: fixed;
top: 0;
left: -250px;
width: 250px;
height: 100%;
background-color: #fff;
flex-direction: column;
align-items: start;
justify-content: flex-start;
padding: 20px;
transition: 0.3s;
z-index: 1000;
}
.navbar.active {
left: 0;
}
.navbar li {
width: 100%;
margin: 20px 0;
}
.navbar li a {
display: block;
width: 100%;
text-align: left;
padding: 10px 15px;
}
#menu-icon {
display: block;
font-size: 28px;
cursor: pointer;
position: absolute;
right: 20px;
}
.close-btn {
font-size: 28px;
cursor: pointer;
margin-left: auto;
margin-bottom: 20px;
}
}
@media only screen and (max-width:600px) {
#myimg {
display: none;
}
}
/* General styles */
.review {
padding: 50px 0;
}
.heading {
text-align: center;
font-size: 2.5rem;
margin-bottom: 20px;
}
.swiper-slide {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #fff;
border-radius: 10px;
transition: transform 0.3s;
}
.swiper-slide img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
}
.swiper-slide h3 {
font-size: 1.5rem;
margin: 10px 0;
}
.swiper-slide p {
font-size: 1rem;
color: #777;
margin-bottom: 15px;
}
.stars i {
color: #fbc02d;
}
/* Hover effect */
.swiper-slide:hover {
transform: scale(1.05);
}
/* Responsive Styles */
@media screen and (max-width: 1200px) {
.swiper-slide {
max-width: 80%;
}
}
@media screen and (max-width: 768px) {
.heading {
font-size: 2rem;
}
.swiper-slide {
max-width: 90%;
padding: 15px;
}
.swiper-slide h3 {
font-size: 1.3rem;
}
.swiper-slide p {
font-size: 0.9rem;
}
}
@media screen and (max-width: 576px) {
.heading {
font-size: 1.8rem;
}
.swiper-slide {
max-width: 100%;
padding: 10px;
}
.swiper-slide h3 {
font-size: 1.2rem;
}
.swiper-slide p {
font-size: 0.8rem;
}
}
/* Additional styling for swiper pagination */
.swiper-pagination {
position: relative;
bottom: 10px;
display: flex;
justify-content: center;
}
/* General Styles */
.container_1 {
padding: 50px 0;
}
.Question h3 {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
font-size: 26px;
font-family: 'Times New Roman', Times, serif;
font-weight: 700;
}
.accordion__wrapper {
max-width: 800px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
background-color: #f9f9f9;
}
.accordion__title {
text-align: center;
font-size: 2rem;
margin-bottom: 20px;
}
.accordion {
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #fff;
}
.accordion__header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
cursor: pointer;
background-color: #f1f1f1;
border-radius: 8px;
}
.accordion__question {
font-size: 1.2rem;
font-weight: 600;
}
.accordion__icon {
font-size: 1.5rem;
color: #333;
}
.accordion__content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding: 0 15px;
}
.accordion__content p {
padding: 15px 0;
font-size: 1rem;
color: #666;
}
/* Expand accordion on active */
.accordion.active .accordion__content {
max-height: 200px;
transition: max-height 0.4s ease-in;
}
.accordion.active .accordion__icon i {
transform: rotate(45deg);
transition: transform 0.3s ease;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
.accordion__title {
font-size: 1.6rem;
}
.accordion__question {
font-size: 1.1rem;
}
.accordion__icon {
font-size: 1.3rem;
}
.accordion__content p {
font-size: 0.95rem;
}
}
@media screen and (max-width: 576px) {
.accordion__wrapper {
padding: 10px;
}
.accordion__title {
font-size: 1.4rem;
}
.accordion__question {
font-size: 1rem;
}
.accordion__icon {
font-size: 1.2rem;
}
.accordion__content p {
font-size: 0.9rem;
}
}
/* General Styles */
#contact {
padding: 50px 0;
background-color: #f9f9f9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.row {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.contact-left,
.contact-right {
flex: 1;
min-width: 300px;
margin: 20px;
}
.sub-title {
font-size: 2rem;
margin-bottom: 20px;
color: #333;
}
.social-icon a {
margin-right: 15px;
font-size: 2rem;
color: #333;
}
.social-icon a:hover {
color: #007bff;
}
form {
display: flex;
flex-direction: column;
}
form input,
form textarea {
width: 100%;
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
}
form button {
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
form button:hover {
background-color: #0056b3;
}
#msg {
margin-top: 10px;
color: green;
font-size: 1rem;
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
.row {
flex-direction: column;
align-items: center;
}
.contact-left,
.contact-right {
max-width: 100%;
margin: 0;
padding: 20px;
}
.sub-title {
font-size: 1.8rem;
text-align: center;
}
.social-icon {
text-align: center;
margin-bottom: 20px;
}
}
@media screen and (max-width: 576px) {
.sub-title {
font-size: 1.6rem;
}
form input,
form textarea {
font-size: 0.9rem;
padding: 8px;
}
form button {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<a href="#" class="logo"><img src="/media/logo.png" alt=""></a>
<a href="#" class="CabRental_logo"><img src="/media/cabz.png" alt=""></a>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navbar">
<li><a href="/HTML files/index.html">Home</a></li>
<li><a href="/HTML files/ride.html">Ride</a></li>
<li><a href="/HTML files/serv.html">Services</a></li>
<li><a href="/HTML files/about.html">About</a></li>
<li><a href="/HTML files/review.html">Reviews</a></li>
<li><a href="/HTML files/contactus.html">Contact</a></li>
</ul>
<div class="header-btn">
<a href="/HTML files/login.html" class="sign-up">Login</a>
</div>
<div class="theme-switch" id="theme-switch"></div>
</header>
<!-- Home -->
<section class="home" id="home" >
<div class="text text-center" style="background-image: url(media/Car\ Website.png);">
<h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1>
<p>Wherever you're going,there's a carpool that will<br>
get you there for less.</p>
<div class="carweb">
<img src="/media/Car Website.png" alt="">
</div>
</div>
<!-- <div class="form-container">
<form action="anonimous.php" method="post">
<div class="input-box">
<span>From <span> MUJ Hostel</span> To</span>
<input type="search" name="search" id="search" placeholder="Search Places">
</div>
<div class="input-box">
<span>Travelling Date</span>
<input type="date" name="dat" id="dat">
</div>
<div class="input-box">
<span>Depart. Time</span>
<input type="time" name="tim" id="tim">
</div>
<input type="submit" name="submit" id="submit" class="btn">
</form>
</div> -->
<div class="booking-form">
<div class="form-group">
<label for="fullName">Full Name</label>
<input type="text" id="fullName" placeholder="Your Name">
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" placeholder="Telephone">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="city">City</label>
<select id="city">
<option disabled selected>Select City</option>
<option value="Delhi-NCR">Delhi-NCR</option>
<option value="Bangalore">Bangalore</option>
<option value="Mumbai">Mumbai</option>
<option value="Hyderabad">Hyderabad</option>
<option value="Pune">Pune</option>
</select>
</div>
<div class="form-group">
<label for="vehicle">Vehicle</label>
<select id="vehicle">
<option disabled selected>Select Vehicle</option>
<option value="Civic">Honda Civic</option>
<option value="Swift Dzire">Maruti Swift Dzire</option>
<option value="Innova">Toyota Innova</option>
<option value="Creta">Hyundai Creta</option>
<option value="GrandVistara">Maruti Grand Vistara</option>
</select>
</div>
<div class="form-group">
<label for="pickupDate">Pickup Date</label>
<input type="date" id="pickupDate">
</div>
<div class="form-group">
<label for="dropoffDate">Drop-off Date</label>
<input type="date" id="dropoffDate">
</div>
</div>
<div class="form-group">
<button id="bookNow">Book Now</button>
</div>
</section>
<!-- Ride-->
<section class="ride" id="ride">
<div class="heading">
<span>How It Works</span>
<h1>Share/Rent <i class='bx bx-taxi'></i> in 3 Easy Steps</h1>
</div><br>
<div class="ride-container">
<i class="bxs-map" ><img class="icon" src="/media/map.png" alt="map"></i>
<h2>Choose a location</h2>
<p>Select the Location from where you want to start your journey</p>
</div>
<div class="ride-container">
<i class='bxs-calendar'><img class="icon" src="/media/timetable.png" alt="map"></i>
<h2>Travelling Date</h2>
<p>Select the date of your journey</p>
</div>
<div class="ride-container">
<i class=' bx-time'><img class="icon" src="/media/alarm-clock.png" alt="map"></i>
<h2>Depart. Time</h2>
<p>Select the exact time of your booking</p>
</div>
</section>
<!-- Services -->
<section class="services" id="services">
<div class="heading">
<span>Best Services</span>
<h1>Explore Out Top Deals <br> From Top Rated Deaalers</h1>
</div>
<div class="services-container">
<div class="box">
<div class="box-img">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRMbcTDQfyKWuPH727d_lUKN6tn_tUimpHg4w&s" alt="Maruti Suzuki Ertiga">
</div>
<p>2023</p>
<h3>Maruti Suzuki Ertiga - 7 Seater</h3>
<h2>Rs.2500 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
<div class="box">
<div class="box-img">
<img src="https://imgd-ct.aeplcdn.com/664x415/n/ewtlcta_1488145.jpg?q=80" alt="Maruti Suzuki Eeco">
</div>
<p>2010</p>
<h3>Maruti Suzuki Eeco - 7 Seater</h3>
<h2>Rs.1700 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
<div class="box">
<div class="box-img">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/26742/swift-exterior-right-front-three-quarter-2.jpeg?q=80" alt="Maruti Suzuki Swift">
</div>
<p>2018</p>
<h3>Maruti Suzuki Swift - 5 Seater</h3>
<h2>Rs.1200 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
<div class="box">
<div class="box-img">
<img src="https://imgd-ct.aeplcdn.com/664x415/n/dzet6ra_1421855.jpg?q=80" alt="Toyota Innova Crysta">
</div>
<p>2016</p>
<h3>Toyota Innova Crysta - 7 Seater</h3>
<h2>Rs.4000 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
<div class="box">
<div class="box-img">
<img src="https://stimg.cardekho.com/images/carexteriorimages/630x420/Honda/Honda-City-2011-2013/2754/front-left-side-47.jpg" alt="Honda City">
</div>
<p>2013</p>
<h3>Honda City - 5 Seater</h3>
<h2>Rs.1900 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
<div class="box">
<div class="box-img">
<img src="https://3.imimg.com/data3/RU/GC/MY-8894631/a-500x500.jpg" alt="Tata Indigo">
</div>
<p>2018</p>
<h3>Tata Indigo - 5 Seater</h3>
<h2>Rs.1200 <span>/day</span></h2>
<a href="#" class="btn">Rent Now</a>
</div>
</div>
</section>
<section id="why-choose-us">
<div class="container">
<div class="header">
<h2>Why Choose Us</h2>
<h1>Best valued deals you will ever find</h1>
<p>Discover the best deals you'll ever find with our unbeatable offers. We're dedicated to providing you
with the best value for your money, so you can enjoy top-quality services and products without
breaking the bank. Our deals are designed to give you the ultimate renting experience, so don't miss
out on your chance to save big.</p>
</div>
<div class="features">
<div class="feature">
<img src="/media/crosscountry.png" alt="Cross Country Drive">
<h3>Cross Country Drive</h3>
<p>Take your driving experience to the next level with our top-notch vehicles for your cross-country
adventures.</p>
</div>
<div class="feature">
<img src="/media/inclusive.png" alt="All Inclusive Pricing">
<h3>All Inclusive Pricing</h3>
<p>Get everything you need in one convenient, transparent price with our all-inclusive pricing
policy.</p>
</div>
<div class="feature">
<img src="/media/hiddencharges.png" alt="No Hidden Charges">
<h3>No Hidden Charges</h3>
<p>Enjoy peace of mind with our no hidden charges policy. We believe in transparent and honest
pricing.</p>
</div>
</div>
</div>
</section>
<!-- <section class="review" id="review">
<h1 class="heading"> Client's testimonials </h1>
<div class="swiper review-slider" data-aos="zoom-in">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<img src="img/pic-1.png" alt="">
<h3>Noah Lee</h3>
<p>"Excellent service from start to finish. The driver was friendly and drove safely. I reached my
destination on time and in comfort. Highly recommended for anyone visiting!"</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="img/pic-2.png" alt="">
<h3>Sophia Rossi</h3>
<p>"Great experience with this cab rental. The booking was straightforward, and the driver was
punctual and friendly. The car was very comfortable. Highly recommend!"</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="img/pic-3.png" alt="">
<h3>Olivia Davis</h3>
<p>"Top-notch service! The driver arrived on time, and the ride was smooth and comfortable. The
customer service was exceptional. I will definitely use this cab service again."</p>
<div class="stars">
<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-full-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="img/pic-4.png" alt="">
<h3>Emma Brown</h3>
<p>"Brilliant service! The cab arrived on time, and the driver was very courteous. I appreciated the
smooth and efficient ride. Will definitely use this service again when I return."</p>
<div class="stars">
<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>
<div class="swiper-pagination"></div>
</div>
</section> -->
<!-- <section class="review" id="review"> -->
<!-- <div class="row">
<h1 class="heading"> Customer Reviews </h1>
<div class="swiper review-slider" data-aos="zoom-in">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<img src="img/pic-1.png" alt="">
<h3>Noah Lee</h3>
<p>I recently used Cabrental for a weekend trip and was thoroughly impressed. The booking process was seamless, and the website was intuitive and easy to navigate. The car was clean and in excellent condition, and the pick-up and drop-off process was quick and hassle-free. The customer service was exceptional—friendly and helpful staff made the experience even better. Highly recommended!</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="img/pic-2.png" alt="">
<h3>Sophia Rossi</h3>
<p>I recently used Cabrental for a weekend getaway, and I couldn't be happier with the experience. The website is user-friendly, and I found the perfect car within minutes.</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="img/pic-3.png" alt="">
<h3>Olivia Davis</h3>
<p>The booking process was straightforward, and I received a confirmation email immediately. When I arrived at the pick-up location, the staff was friendly and efficient. The car was clean, well-maintained, and exactly as described on the website.</p>
<div class="stars">
<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-full-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="img/pic-4.png" alt="">
<h3>Emma Brown</h3>
<p>Returning the car was just as easy, and there were no hidden fees or unexpected charges. I will definitely be using Cabrental again for my future trips. Highly recommended!</p>
<div class="stars">
<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>
-->
<section class="review" id="review">
<h1 class="heading"> Customer Reviews </h1>
<div class="swiper review-slider" data-aos="zoom-in">
<div class="swiper-wrapper">
<div class="swiper-slide slide">
<img src="/media/rev4.jpeg" alt="">
<h3>Noah Lee</h3>
<p>I recently used Cabrental for a weekend trip and was thoroughly impressed. The booking process
was seamless, and the website was intuitive and easy to navigate. The car was clean and in
excellent condition, and the pick-up and drop-off process was quick and hassle-free. The
customer service was exceptional—friendly and helpful staff made the experience even better.
Highly recommended!</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="/media/rev3.jpg" alt="">
<h3>Sophia Rossi</h3>
<p>I recently used Cabrental for a weekend getaway, and I couldn't be happier with the experience.
The website is user-friendly, and I found the perfect car within minutes.</p>
<div class="stars">
<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 class="swiper-slide slide">
<img src="/media/rev1.jpg" alt="">
<h3>Olivia Davis</h3>
<p>The booking process was straightforward, and I received a confirmation email immediately. When I
arrived at the pick-up location, the staff was friendly and efficient. The car was clean,
well-maintained, and exactly as described on the website.</p>
<div class="stars">
<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-full-alt"></i>
</div>
</div>
<div class="swiper-slide slide">
<img src="/media/rev2.jpg" alt="">
<h3>Rohan Gupta</h3>
<p>Returning the car was just as easy, and there were no hidden fees or unexpected charges. I will
definitely be using Cabrental again for my future trips. Highly recommended!</p>
<div class="stars">
<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 class="swiper-pagination"></div>
</div>
</div>
</section>
<section>
<div class="Question">
<h3>Frequently Asked Questions</h3>
</div>
<div class="accordion accordion-flush" id="accordionFlushExample">
<div class="accordion" id="accordionFlushExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
How do i book a cab?
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
To book a cab on our website, follow these simple steps:
<br><br>
1. Enter Pickup and Drop-off Locations.
<br>
2. Select Date and Time.
<br>
3. Choose Vehicle Type.
<br>
4. Provide Personal Information.
<br>
5. Confirm Booking.
<br>
6. Payment (if applicable).<br>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseTwo" aria-expanded="false" aria-controls="flush-collapseTwo">
What services do you offer?
</button>
</h2>
<div id="flush-collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
We offer a variety of car rental services tailored to suit different needs:
<br><br>
1. Local Rides.
<br>
2. Outstation Trips.
<br>
3. Airport Transfers.
<br>
4. Luxury Car Rentals.
<br>
5. Corporate Rentals.
<br>
6. Self-Drive Options.
<br>
7. Chauffeur-Driven Rentals.
<br>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseThree" aria-expanded="false"
aria-controls="flush-collapseThree">
How much does it cost to rent a car?
</button>
</h2>
<div id="flush-collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
The cost of renting a car depends on several factors, including.
<br><br>
1. Type of Vehicle.
<br>
2. Duration of Rental.
<br>
3. Distance Travelled.
<br>
4. Additional Services.
<br>
5. Fuel policy.
<br>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseFour" aria-expanded="false"
aria-controls="flush-collapseFour">
How do i contact the customer support?
</button>
</h2>
<div id="flush-collapseFour" class="accordion-collapse collapse"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
You can contact our customer support team through the following methods: