-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
1027 lines (1008 loc) · 42 KB
/
service.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" />
<title>Auto Clinic Garage</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicon -->
<link href="img/favicon.ico.png" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Barlow:wght@600;700&family=Ubuntu:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- Icon Font Stylesheet -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
rel="stylesheet"
/>
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link
href="lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css"
rel="stylesheet"
/>
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<!-- Spinner Start -->
<div
id="spinner"
class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center"
>
<div
class="spinner-border text-primary"
style="width: 3rem; height: 3rem"
role="status"
>
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Spinner End -->
<!-- Topbar Start -->
<div class="container-fluid bg-dark p-0 text-white">
<div class="row gx-0 d-none d-lg-flex">
<div class="col-lg-7 px-5 text-start">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<small class="fa fa-map-marker-alt text-primary me-2"></small>
<small>Alqouz 1, First Al Khail Road, 5B Street, Dubai, UAE</small>
</div>
<div class="h-100 d-inline-flex align-items-center py-3">
<small class="far fa-clock text-primary me-2"></small>
<small>Mon - Sun : 08.00 AM - 09.00 PM</small>
</div>
</div>
<div class="col-lg-5 px-5 text-end">
<div class="h-100 d-inline-flex align-items-center py-3 me-4">
<a href="tel:+971 55824 2448" class="text-white">
<small class="fa fa-phone-alt text-primary me-2"></small>
<small>055 824 2448</small>
</a>
</div>
<div class="h-100 d-inline-flex align-items-center">
<a
class="btn btn-sm-square bg-white text-primary me-1"
href="https://www.facebook.com/people/Auto-clinic-garage/100090420062883/"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-sm-square bg-white text-primary me-1"
href="mailto:[email protected]"
><i class="fa fa-envelope"></i
></a>
<a
class="btn btn-sm-square bg-white text-primary me-1"
href="https://api.whatsapp.com/send?phone=%2B971558242448&fbclid=IwAR2AgqDPglVFFA-ywgYkG4hSFPtg1udSjz90o6kWgSuZ5QuT-abTje0337Y"
><i class="fab fa-whatsapp"></i
></a>
<a
class="btn btn-sm-square bg-white text-primary me-0"
href="https://www.instagram.com/auto.clinicgarage/"
><i class="fab fa-instagram"></i
></a>
</div>
</div>
</div>
</div>
<!-- Topbar End -->
<!-- Navbar Start -->
<nav
class="navbar navbar-expand-lg bg-white navbar-dark shadow sticky-top p-0"
>
<a
href="index.html"
class="navbar-brand d-flex align-items-center px-4 px-lg-5"
>
<!-- <h2 class="m-0 text-primary"><i class="fa fa-car me-3"></i>CarServ</h2>
-->
<img src="img/logo.png" style="width: 180px" />
</a>
<button
type="button"
class="navbar-toggler me-4"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0" style="width: 420px">
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="about.html" class="nav-item nav-link">About</a>
<a href="service.html" class="nav-item nav-link active"
>Our Services</a
>
<a href="booking.html" class="nav-item nav-link">Booking</a>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
<!-- <a href="" class="btn btn-primary py-4 px-lg-5 d-none d-lg-block"
>Get A Quote<i class="fa fa-arrow-right ms-3"></i
></a>-->
</div>
</nav>
<!-- Navbar End -->
<!-- Page Header Start -->
<div
class="container-fluid page-header mb-5 p-0"
style="background-image: url(img/service-banner.jpg)"
>
<div class="container-fluid page-header-inner py-5">
<div class="container text-center">
<h1 class="display-3 text-white mb-3 animated slideInDown">
Explore Our Services
</h1>
</div>
</div>
</div>
<!-- Page Header End -->
<!-- Service Start -->
<div class="container-xxl service py-5">
<div class="container">
<div class="row g-4 wow fadeInUp" data-wow-delay="0.3s">
<div class="col-lg-4">
<div class="nav w-100 nav-pills me-4">
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4 active"
data-bs-toggle="pill"
data-bs-target="#tab-pane-1"
type="button"
>
<i class="fa fa-car-on fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Denting & Painting</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-2"
type="button"
>
<i class="fa fa-car fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Engine Services</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-3"
type="button"
>
<i class="fa fa-cog fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Gear Box Services</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-4"
type="button"
>
<i class="fa fa-car-burst fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Interior & Exterior Detailing</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-5"
type="button"
>
<i class="fa fa-snowflake fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Car Ac Repair & Services</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-6"
type="button"
>
<i class="fa fa-car-tunnel fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Ceramic Coating</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-7"
type="button"
>
<i class="fa fa-radiation fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Radiator Services</h4>
</button>
<button
class="nav-link w-100 d-flex align-items-center text-start p-3 mb-4"
data-bs-toggle="pill"
data-bs-target="#tab-pane-8"
type="button"
>
<i class="fa fa-laptop-medical fa-2x me-3"></i>
<h4 class="m-0 h4-fnt-25">Electric & Computer Checking</h4>
</button>
</div>
</div>
<div class="col-lg-8">
<div class="tab-content w-100">
<div class="tab-pane fade show active" id="tab-pane-1">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-1.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-2">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-2.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-3">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-3.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-4">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-4.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-5">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-5.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-6">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-6.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-7">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-7.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-pane-8">
<div class="row g-4">
<div class="col-md-6" style="min-height: 680px">
<div class="position-relative h-100">
<img
class="position-absolute img-fluid w-100 h-100"
src="img/service-8.jpg"
style="object-fit: cover"
alt=""
/>
</div>
</div>
<div class="col-md-6">
<h3 class="mb-3">5 Years Of Experience In Auto Services</h3>
<p class="mb-4">
Our reputation is built on our unwavering commitment to
delivering services of uncompromised quality. We take
pride in our work and are passionate about what we do. We
know that our clients expect nothing less than the best
from us, and we are dedicated to meeting and exceeding
those expectations.Auto Clinic Garage has earned a
reputation for providing exceptional car care services in
town, which are widely acknowledged owing to their
top-notch maintenance practices and use of modern
equipment and techniques to repair vehicles similar to
mine.
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Quality
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Expert
Workers
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Modern
Equipment
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Pick & Drop
Service
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Comprehensive
Services
</p>
<p>
<i class="fa fa-check text-success me-3"></i>Competetive
Pricing
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Booking Start -->
<div
class="container-fluid bg-secondary booking my-5 wow fadeInUp"
data-wow-delay="0.1s"
>
<div class="container">
<div class="row gx-5">
<div class="col-lg-6 py-5">
<div class="py-5">
<h1 class="text-white mb-4">
Authorized and Experienced Auto Repair Service Provider
</h1>
<p class="text-white mb-0">
At our Auto Clinic Garage, we believe that our clients deserve
nothing but the best. That's why we are committed to upholding
our principles and delivering services that are unmatched in
quality and value. Contact us today to experience the difference
that our commitment to excellence can make for you.
</p>
</div>
</div>
<div class="col-lg-6">
<div
class="bg-primary h-100 d-flex flex-column justify-content-center text-center p-5 wow zoomIn"
data-wow-delay="0.6s"
>
<h1 class="text-white mb-4">Book For A Service</h1>
<form>
<div class="row g-3">
<div class="col-12 col-sm-6">
<input
type="text"
id="name"
class="form-control border-0"
placeholder="Your Name"
style="height: 55px"
/>
</div>
<div class="col-12 col-sm-6">
<input
type="email"
id="email"
class="form-control border-0"
placeholder="Your Email"
style="height: 55px"
/>
</div>
<div class="col-12 col-sm-6">
<select
class="form-select border-0"
style="height: 55px"
id="service"
>
<option selected>Select A Service</option>
<option value="Denting_and_Painting">
Denting & Painting
</option>
<option value="Engine_Services">Engine Services</option>
<option value="Gear_Box_Services">
Gear Box Services
</option>
<option value="Interior_And_Exterior_Detailing">
Interior & Exterior Detailing
</option>
<option value="Car_Ac_Repair_And_Services">
Car Ac Repair & Services
</option>
<option value="Ceramic_Coating">Ceramic Coating</option>
<option value="Radiator_Services">
Radiator Services
</option>
<option value="Electric_And_Computer_Checking">
Electric & Computer Checking
</option>
</select>
</div>
<div class="col-12 col-sm-6">
<div class="date" id="date1" data-target-input="nearest">
<input
type="text"
id="date"
class="form-control border-0 datetimepicker-input"
placeholder="Service Date"
data-target="#date1"
data-toggle="datetimepicker"
style="height: 55px"
/>
</div>
</div>
<div class="col-12">
<textarea
class="form-control border-0"
placeholder="Your message"
id="message"
></textarea>
</div>
<div class="col-12">
<button
class="btn btn-secondary w-100 py-3"
type="button"
onclick="whatsapp2()"
>
Book Now
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Booking End -->
<!-- Testimonial Start -->
<div class="container-xxl py-5 wow fadeInUp" data-wow-delay="0.1s">
<div class="container">
<div class="text-center">
<h1 class="mb-5">Our Clients Say!</h1>
</div>
<div class="owl-carousel testimonial-carousel position-relative">
<div class="testimonial-item text-center">
<img
class="bg-light rounded-circle p-2 mx-auto mb-3"
src="img/testimonial-1.jpg"
style="width: 80px; height: 80px"
/>
<h5 class="mb-0">Bernila</h5>
<p>Doctor</p>
<div class="testimonial-text bg-light text-center p-4">
<p class="mb-0">
Auto Clinic Garage is renowned in the Dubai for their
exceptional car care services, which include top-notch
maintenance and utilization of modern equipment and techniques
for repairs on my vehicle.
</p>
</div>
</div>
<div class="testimonial-item text-center">
<img
class="bg-light rounded-circle p-2 mx-auto mb-3"
src="img/testimonial-2.jpg"
style="width: 80px; height: 80px"
/>
<h5 class="mb-0">Ishan</h5>
<p>Mechnical Engineer</p>
<div class="testimonial-text bg-light text-center p-4">
<p class="mb-0">
Auto clinic garage is the best in the town and they do take care
of my car and maintain it in well manner and they use modern
equipment and techniques to repair
</p>
</div>
</div>
<div class="testimonial-item text-center">
<img
class="bg-light rounded-circle p-2 mx-auto mb-3"
src="img/testimonial-3.jpg"
style="width: 80px; height: 80px"
/>
<h5 class="mb-0">Ahmad</h5>
<p>Visual Artist</p>
<div class="testimonial-text bg-light text-center p-4">
<p class="mb-0">
The exceptional car care services offered by Auto Clinic Garage
in Al Khail are widely recognized, thanks to their top-notch
maintenance and the use of modern equipment and techniques for
repairing vehicles like mine.
</p>
</div>
</div>
<div class="testimonial-item text-center">
<img
class="bg-light rounded-circle p-2 mx-auto mb-3"
src="img/testimonial-4.jpg"
style="width: 80px; height: 80px"
/>
<h5 class="mb-0">Alina</h5>
<p>Sales Manager</p>
<div class="testimonial-text bg-light text-center p-4">
<p class="mb-0">
Auto Clinic Garage has earned a reputation for providing
exceptional car care services in Al Khail, which are widely
acknowledged owing to their top-notch maintenance practices and
use of modern equipment and techniques to repair vehicles
similar to mine.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Footer Start -->
<div
class="container-fluid bg-dark text-light footer pt-5 mt-5 wow fadeIn"
data-wow-delay="0.1s"
>
<div class="container py-5">
<div class="row g-3">
<div class="col-lg-5 col-md-6">
<h4 class="text-light mb-4">Address</h4>
<p class="mb-2">
<i class="fa fa-map-marker-alt me-3"></i>Alqouz 1, First Al Khail
Road, 5B Street, Dubai, UAE
</p>
<p class="mb-2"><i class="fa fa-phone-alt me-3"></i>055 824 2448</p>
<p class="mb-2">
<i class="fa fa-envelope me-3"></i>[email protected]
</p>
<div class="d-flex pt-2">
<a
class="btn btn-outline-light btn-social"
href="https://api.whatsapp.com/send?phone=%2B971558242448&fbclid=IwAR2AgqDPglVFFA-ywgYkG4hSFPtg1udSjz90o6kWgSuZ5QuT-abTje0337Y"
><i class="fab fa-whatsapp"></i
></a>
<a
class="btn btn-outline-light btn-social"
href="https://www.facebook.com/people/Auto-clinic-garage/100090420062883/"
><i class="fab fa-facebook-f"></i
></a>
<a
class="btn btn-outline-light btn-social"
href="https://www.instagram.com/auto.clinicgarage/"
><i class="fab fa-instagram"></i
></a>
<a
class="btn btn-outline-light btn-social"
href="https://vm.tiktok.com/ZS8HpBaFN/"
><i class="fab fa-tiktok"></i
></a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<h4 class="text-light mb-4">Opening Hours</h4>
<h6 class="text-light">Monday - Sunday:</h6>
<p class="mb-4">08.00 AM - 09.00 PM</p>
</div>
<div class="col-lg-3 col-md-6">
<h4 class="text-light mb-4">Services</h4>
<a class="btn btn-link" href="service.html#tab-pane-1"
>Denting & Painting</a
>
<a class="btn btn-link" href="service.html#tab-pane-2"
>Engine Services</a
>
<a class="btn btn-link" href="service.html#tab-pane-3"
>Gear Box Services</a
>
<a class="btn btn-link" href="service.html#tab-pane-4"
>Interior & Exterior Detailing</a
>
<a class="btn btn-link" href="service.html#tab-pane-5"
>Car Ac Repair & Services</a
>
<a class="btn btn-link" href="service.html#tab-pane-6"
>Ceramic Coating</a
>
<a class="btn btn-link" href="service.html#tab-pane-7"
>Radiator Services</a
>
<a class="btn btn-link" href="service.html#tab-pane-8"
>Engine & Computer Checking</a
>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
<div class="row">
<div class="col-md-6 text-center text-md-start mb-3 mb-md-0">
© 2023 Auto Clinic Garage , Powered By Speedy Tech
</div>
<div class="col-md-6 text-center text-md-end">
<div class="footer-menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="booking.html">Booking</a>
<a href="service.html">Services</a>
<a href="contact.html">Contact</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-lg btn-primary btn-lg-square back-to-top"
><i class="bi bi-arrow-up"></i
></a>
<script>
function whatsapp2() {
var name = document.getElementById('name').value;
var email = document.getElementById('email').value;
var service = document.getElementById('service').value;
var date = document.getElementById('date').value;
var message = document.getElementById('message').value;
var url =
'https://wa.me/971558242448?text=' +
'*Name :* ' +
name +
'%0a' +
'*Email :* ' +
email +
'%0a' +