-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1452 lines (1409 loc) · 56 KB
/
Copy pathindex.html
File metadata and controls
1452 lines (1409 loc) · 56 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
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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="css/output.css" />
<link rel="stylesheet" href="css/aos-master/dist/aos.css" />
<script
type="module"
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"
></script>
</head>
<style>
.hero-text {
opacity: 0;
transform: translateY(30px);
animation: fadeUp 0.8s ease forwards;
}
/* Delays */
.delay-1 {
animation-delay: 0.3s;
}
.delay-2 {
animation-delay: 0.6s;
}
.delay-3 {
animation-delay: 0.9s;
}
@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}
.small_ban {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
url(image/IMG_5386.GIF);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.review-card {
width: 300px;
background: white;
padding: 24px;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.review-card:hover {
box-shadow: 0 10px 30px yellow;
}
@media (min-width: 768px) {
.review-card {
min-width: calc(50% - 12px);
}
}
@media (min-width: 1024px) {
.review-card {
min-width: calc(33.333% - 16px);
}
}
.review-marquee {
width: max-content;
animation: scrollReviews linear infinite;
animation-duration: 20s; /* ← controls speed */
}
/* Pause on hover */
.review-marquee:hover {
animation-play-state: paused;
}
@keyframes scrollReviews {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
.stars {
color: #facc15;
margin-bottom: 10px;
}
.review-card2 {
width: 300px;
background: white;
padding: 24px;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.review-card2:hover {
box-shadow: 0 10px 30px yellow;
}
@media (min-width: 768px) {
.review-card2 {
min-width: calc(50% - 12px);
}
}
@media (min-width: 1024px) {
.review-card2 {
min-width: calc(33.333% - 16px);
}
}
.review-marquee2 {
width: max-content;
animation: scrollReviews2 linear infinite;
animation-duration: 20s; /* ← controls speed */
}
/* Pause on hover */
.review-marquee2:hover {
animation-play-state: paused;
}
@keyframes scrollReviews2 {
from {
transform: translateX(-50%);
}
to {
transform: translateX(0);
}
}
.stars {
color: #facc15;
margin-bottom: 10px;
}
.contact-bg {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url(image/IMG_5386.GIF);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
</style>
<body class="overflow-x-hidden">
<section id="home" class="h-screen overflow-hidden">
<!-- header -->
<header
class="flex w-full sticky md:overflow-hidden z-[100] mx-auto bg-transparent px-[20px] items-center justify-between h-[65px]"
>
<div
data-aos="zoom-in"
data-aos-duration="1000"
class="md:w-[15%] text-white font-extrabold text-xl text-start lg:pl-[5px] cursor-pointer w-[25%] h-[60px] py-[15px] md:pt-[5px]"
>
<img class="lg:h-[50px] h-[40px]" src="image/IMG_5403.WEBP" alt="" />
</div>
<nav
class="nav_links md:static md:h-[40px] md:rounded-3xl h-screen md:w-auto md:items-center md:bg-white/20 md:backdrop-blur-md md:border border-white/30 shadow-lg flex md:flex-row bg-black w-[70%] duration-[0.5s] z-[100] text-start py-[10px] flex-col absolute top-[0%] left-[-100%]"
>
<div
class="md:w-[15%] text-white font-extrabold text-xl md:hidden block text-center cursor-pointer pl-[20px] w-[35%] py-[5px] h-[60px]"
>
<img class="lg:h-[50px] h-[40px]" src="image/IMG_5403.WEBP" alt="" />
</div>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 mx-[10px] duration-[1s] text-white rounded py-[15px]"
href="#home"
>Home</a
>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href="#service"
>Service</a
>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href="#gallary"
>Gallary</a
>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href="#about"
>About</a
>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href="#review"
>Reviews</a
>
<a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href="#contact"
>Contact</a
>
<!-- <a
onclick="onToggleMenu(this)"
class="px-[15px] font-serif md:text-xs text-[14px] hover:text-yellow-600 duration-[1s] text-white rounded py-[15px] mx-[10px]"
href=""
>Collections</a
> -->
</nav>
<!-- <a
href="#contact"
class="w-[130px] text-center shadow-md shadow-sky-200 font-bold font-mono bg-sky-400 rounded-full cursor-pointer px-[10px] text-white py-[8px] hover:bg-white hover:text-black duration-[1s]"
>
Contact Me
</a> -->
<div class="lg:hidden sm:block md:hidden">
<span onclick=" onToggleMenu(this)"
><ion-icon
class="text-white font-bold text-2xl align-middle"
name="menu-outline"
></ion-icon
></span>
</div>
<div class="hidden md:block">
<button
class="bg-yellow-600 w-fit font-semibold flex place-content-center text-white duration-[0.5s] hover:bg-transparent hover:border border-white hover:text-white text-sm py-[1px] pl-[10px] shadow rounded-2xl"
>
<a class="text-sm flex items-center" href=""
>Explore
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320deg]"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</header>
<!-- header-ends -->
<!-- SLIDES -->
<div class="absolute inset-0 z-0 overflow-hidden">
<!-- Slide 1 -->
<div
class="hero-slide absolute inset-0 opacity-100 transition-opacity duration-1000"
>
<img src="image/IMG_5292.AVIF" class="w-full h-full object-cover" />
<div class="absolute inset-0 bg-black/60"></div>
<div
class="absolute inset-0 flex flex-col justify-end pb-[80px] md:pb-[20px] px-3 lg:px-6 text-white z-10"
>
<h1
class="hero-text text-4xl md:text-6xl font-extrabold delay-1 mt-4 max-w-[600px] capitalize"
>
NO stories, just clean cars.
</h1>
<p class="hero-text text-xs mt-[10px] max-w-[500px] delay-2">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga, cum
quibusdam. Suscipit et repudiandae hic rem quaerat laudantium
porro assumenda. Eveniet esse nisi voluptate, hic facilis
distinctio recusandae harum officia!
</p>
<div class="hero-text flex gap-2 pt-[10px] delay-3">
<button
class="hover:bg-white/20 hover:border hover:border-white/20 hover:shadow-lg duration-[0.5s] bg-yellow-600 pl-[10px] py-[0px] font-semibold rounded-3xl w-fit capitalize"
>
<a class="text-sm flex items-center" href=""
>Explore
<span class="text-4xl pl-[2px] flex align-middle"
><ion-icon
class="align-middle rotate-[320deg]"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold px-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>buy this car
<span class="text-2xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle"
name="car-sport-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- Slide 2 -->
<div
class="hero-slide absolute inset-0 opacity-0 transition-opacity duration-1000"
>
<img src="image/IMG_5299.AVIF" class="w-full h-full object-cover" />
<div class="absolute inset-0 bg-black/60"></div>
<div
class="absolute inset-0 flex flex-col justify-end pb-[80px] md:pb-[20px] px-3 lg:px-6 text-white z-10"
>
<h1
class="hero-text delay-1 text-4xl md:text-6xl font-extrabold mt-4 max-w-[650px] capitalize"
>
Buy Now, Before you hear sold.
</h1>
<p class="hero-text delay-2 text-xs mt-[10px] max-w-[500px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga, cum
quibusdam. Suscipit et repudiandae hic rem quaerat laudantium
porro assumenda. Eveniet esse nisi voluptate, hic facilis
distinctio recusandae harum officia!
</p>
<div class="hero-text delay-3 flex gap-2 pt-[10px]">
<button
class="hover:bg-white/20 hover:border hover:border-white/20 hover:shadow-lg duration-[0.5s] bg-yellow-600 pl-[10px] py-[0px] font-semibold rounded-3xl w-fit capitalize"
>
<a class="text-sm flex items-center" href=""
>Explore
<span class="text-4xl pl-[2px] flex align-middle"
><ion-icon
class="align-middle rotate-[320deg]"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold px-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>buy this car
<span class="text-2xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle"
name="car-sport-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- Slide 3 -->
<div
class="hero-slide absolute inset-0 opacity-0 transition-opacity duration-1000"
>
<img
src="image/IMG_5298.JPG.jpeg"
class="w-full h-full object-cover"
/>
<div class="absolute inset-0 bg-black/60"></div>
<div
class="absolute inset-0 flex flex-col justify-end pb-[80px] md:pb-[20px] px-3 lg:px-6 text-white z-10"
>
<h1
class="hero-text delay-1 text-4xl md:text-6xl font-extrabold mt-4 max-w-[650px] capitalize"
>
Your next car is waiting.
</h1>
<p class="hero-text delay-2 text-xs mt-[10px] max-w-[500px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fuga, cum
quibusdam. Suscipit et repudiandae hic rem quaerat laudantium
porro assumenda. Eveniet esse nisi voluptate, hic facilis
distinctio recusandae harum officia!
</p>
<div class="flex hero-text delay-3 gap-2 pt-[10px]">
<button
class="hover:bg-white/20 hover:border hover:border-white/20 hover:shadow-lg duration-[0.5s] bg-yellow-600 pl-[10px] py-[0px] font-semibold rounded-3xl w-fit capitalize"
>
<a class="text-sm flex items-center" href=""
>Explore
<span class="text-4xl pl-[2px] flex align-middle"
><ion-icon
class="align-middle rotate-[320deg]"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold px-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>buy this car
<span class="text-2xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle"
name="car-sport-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 3 -->
</div>
<!-- socials -->
<div
class="absolute bottom-6 right-6 z-30 gap-2 md:gap-4 flex items-center"
>
<div class="text-sm text-white font-semibold">
<p>Support Our Socials</p>
</div>
<button
class="bg-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-white duration-300"
>
<ion-icon name="logo-instagram"></ion-icon>
</button>
<button
class="bg-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-white duration-300"
>
<ion-icon name="logo-facebook"></ion-icon>
</button>
<button
class="bg-white w-10 h-10 rounded-full flex items-center justify-center hover:bg-yellow-500 hover:text-white duration-300"
>
<ion-icon name="logo-tiktok"></ion-icon>
</button>
</div>
</section>
<section id="service" class="w-full py-[30px]">
<div class="lg:w-[95%] w-[90%] mx-auto py-[30px]">
<h2
data-aos="fade-up"
data-aos-duration="500"
class="capitalize pt-[30px] text-2xl text-center text-yellow-600 font-bold"
>
Our Advantage
</h2>
<p
data-aos="fade-up"
data-aos-duration="1000"
class="text-sm text-center lg:w-[500px] mx-auto"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi quod
sequi, error officia nulla dicta hic asperiores ea et provident.
</p>
<div class="grid grid-cols-1 gap-8 md:grid-cols-3 mt-[20px]">
<div
data-aos="zoom-in"
data-aos-duration="500"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="swap-vertical-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">Buy & Sell</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 1 -->
<div
data-aos="zoom-in"
data-aos-duration="1000"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="call-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">24/7 Customer Service</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 2 -->
<div
data-aos="zoom-in"
data-aos-duration="1500"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="cash-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">Flexible Financing Options</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 3 -->
<div
data-aos="zoom-in"
data-aos-duration="500"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="earth-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">Nationwild Delivery</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 4 -->
<div
data-aos="zoom-in"
data-aos-duration="1000"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="wallet-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">Transperent Pricing</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 5 -->
<div
data-aos="zoom-in"
data-aos-duration="1500"
class="bg-neutral-100 p-[10px] h-[300px] rounded-lg shadow-lg"
>
<span class="text-4xl font-bold text-yellow-600 pt-[30px] block">
<ion-icon name="checkbox-outline"></ion-icon>
</span>
<h3 class="text-2xl pt-[10px]">Certified Quality Cars</h3>
<p class="text-sm pt-[20px]">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non
quidem, accusamus soluta dolores laudantium commodi, iste quod
architecto magnam, culpa fugit. Ut facilis praesentium amet
accusamus eos? Maxime, non eum.
</p>
</div>
<!-- 6 -->
</div>
</div>
</section>
<section id="gallary" class="w-full py-[30px] bg-black">
<div class="lg:w-[95%] w-[90%] mx-auto py-[30px]">
<h2
data-aos="fade-up"
data-aos-duration="500"
class="capitalize pt-[30px] text-2xl text-center text-yellow-600 font-bold"
>
Car ready for immediate delivery
</h2>
<p
data-aos="fade-up"
data-aos-duration="1000"
class="text-sm text-center lg:w-[500px] mx-auto text-white"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi quod
sequi, error officia nulla dicta hic asperiores ea et provident.
</p>
<div
class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-5 pt-[30px]"
>
<div
data-aos="fade-up"
data-aos-duration="500"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5292.AVIF"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Lexus Lx350</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$50,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 1 -->
<div
data-aos="fade-up"
data-aos-duration="1000"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5294.JPG.jpeg"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Lexus Suv</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$55,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 2 -->
<div
data-aos="fade-up"
data-aos-duration="1500"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5293.JPG.jpeg"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Lexus Rx350</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$50,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 3 -->
<div
data-aos="fade-up"
data-aos-duration="2000"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5296.JPG.jpeg"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Mercedes Amg</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$80,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 4 -->
<div
data-aos="fade-up"
data-aos-duration="500"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5297.WEBP"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Mercedes Gle</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$40,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 5 -->
<div
data-aos="fade-up"
data-aos-duration="1000"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5298.JPG.jpeg"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Mercedes S680</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$50,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 6 -->
<div
data-aos="fade-up"
data-aos-duration="1500"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5317.JPG.jpeg"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Lexus lx350</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$70,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 7 -->
<div
data-aos="fade-up"
data-aos-duration="2000"
class="text-white h-[350px]"
>
<div class="h-[250px]">
<img
class="h-[inherit] w-full object-cover rounded-2xl object-center"
src="image/IMG_5299.AVIF"
alt=""
/>
</div>
<div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-sm font-semibold">Lexus Suv</h3>
<span class="text-xs">Lagos</span>
</div>
<div class="flex justify-between pt-[10px]">
<h3 class="text-xl font-bold">$85,000</h3>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold pl-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>View full details
<span class="text-3xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle rotate-[320d"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</div>
<!-- 8 -->
</div>
</div>
</section>
<section id="about" class="w-full py-[30px]">
<div class="lg:w-[95%] w-[90%] mx-auto py-[30px]">
<h2
data-aos="fade-up"
data-aos-duration="500"
class="capitalize pt-[30px] text-2xl text-center text-yellow-600 font-bold"
>
About SakinMota
</h2>
<p
data-aos="fade-up"
data-aos-duration="1000"
class="text-4xl text-center mx-auto capitalize"
>
Helping Others find thier dream cars
</p>
<div
data-aos="zoom-in"
data-aos-duration="1000"
class="w-full md:h-[400px] h-[230px] overflow-hidden rounded-2xl mt-[30px]"
>
<img
class="w-full h-[inherit] hover:scale-125 duration-[0.5s] object-cover object-center"
src="image/IMG_5387.GIF"
alt=""
/>
</div>
<div
data-aos="fade-up"
data-aos-duration="500"
class="mt-[30px] bg-yellow-600 w-full lg:h-[150px] h-fit py-[10px] rounded-2xl grid grid-cols-2 lg:grid-cols-6 lg:gap-2 gap-5"
>
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">15+</h3>
<span class="text-sm font-semibold">Experience</span>
</div>
<!-- 1 -->
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">500+</h3>
<span class="text-sm font-semibold">Sold vehicles</span>
</div>
<!-- 2 -->
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">500+</h3>
<span class="text-sm font-semibold">Happy Clients</span>
</div>
<!-- 3 -->
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">50+</h3>
<span class="text-sm font-semibold">Awards</span>
</div>
<!-- 4 -->
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">50+</h3>
<span class="text-sm font-semibold">Trusted Companys</span>
</div>
<!-- 5 -->
<div class="flex flex-col items-center place-content-center">
<h3 class="text-5xl font-extrabold">10+</h3>
<span class="text-sm font-semibold">Offices</span>
</div>
<!-- 6 -->
</div>
<div class="w-full pt-[30px]">
<p
data-aos="fade-up"
data-aos-duration="1000"
class="text-center text-sm"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam illo
doloribus cum accusamus a minima molestias laborum tempore, beatae
tenetur et aliquam quae ut asperiores, veritatis cupiditate sequi.
Amet ab doloremque reprehenderit labore unde. Corrupti impedit omnis
sint animi tenetur placeat, deleniti eveniet velit, atque
necessitatibus aut nihil. Itaque neque illo consectetur odit omnis
fugit rerum, quae aspernatur possimus eum perspiciatis corrupti
labore impedit cumque maiores voluptatem, atque minus at ducimus ut,
corporis recusandae ipsa? Distinctio, tempora officiis placeat aut
maxime animi blanditiis quia quisquam eum dolores voluptas nostrum
tenetur voluptates aspernatur rem velit eos architecto numquam modi
doloremque reprehenderit!
</p>
</div>
</div>
</section>
<section class="w-full bg-black flex h-[300px] lg:h-[350px] small_ban">
<div
class="w-full text-white p-[10px] h-[inherit] flex flex-col place-content-center items-center"
>
<h2
data-aos="fade-up"
data-aos-duration="500"
class="capitalize md:text-6xl text-4xl font-bold text-center"
>
Ready to drive your next car?
</h2>
<p
data-aos="fade-up"
data-aos-duration="1000"
class="lg:text-sm text-center text-xs lg:w-[500px]"
>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolores
ratione modi, officiis ut corrupti quasi atque saepe ducimus numquam
maiores!
</p>
<div
data-aos="fade-up"
data-aos-duration="1500"
class="flex gap-2 items-center pt-[30px]"
>
<button
class="hover:bg-white/20 hover:border hover:border-white/20 hover:shadow-lg duration-[0.5s] bg-yellow-600 pl-[10px] py-[0px] font-semibold rounded-3xl w-fit capitalize"
>
<a class="text-sm flex items-center" href=""
>Explore
<span class="text-4xl pl-[2px] flex align-middle"
><ion-icon
class="align-middle rotate-[320deg]"
name="arrow-forward-circle-sharp"
></ion-icon></span
></a>
</button>
<button
class="bg-white/20 border border-white/20 shadow-lg font-semibold px-[10px] py-[0px] rounded-3xl w-fit capitalize hover:bg-yellow-600 duration-[0.5s]"
>
<a class="text-sm flex items-center" href=""
>contact us
<span class="text-4xl pl-[3px] flex align-middle"
><ion-icon
class="align-middle"
name="car-sport-sharp"
></ion-icon></span
></a>
</button>
</div>
</div>
</section>
<!-- Client Review Section -->
<section id="review" class="py-[20px]">