-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
605 lines (495 loc) · 28.5 KB
/
index.html
File metadata and controls
605 lines (495 loc) · 28.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>dushyntSharmaPage</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300">
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light site-navbar-target" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">Automobile Service</a>
<button class="navbar-toggler js-fh5co-nav-toggle fh5co-nav-toggle" type="button" data-toggle="collapse" data-target="#ftco-nav" aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item"><a href="#home-section" class="nav-link"><span>HOME</span></a></li>
<li class="nav-item"><a href="#customer-section" class="nav-link"><span>Customer</span></a></li>
<li class="nav-item"><a href="#programs-section" class="nav-link"><span>Programs</span></a></li>
<li class="nav-item"><a href="#schedule-section" class="nav-link"><span>Schedule</span></a></li>
<li class="nav-item"><a href="#about-section" class="nav-link"><span>About</span></a></li>
<li class="nav-item"><a href="#contact-section" class="nav-link"><span>Contact</span></a></li>
<li class="nav-item"><a href="#admin-section" class="nav-link"><span>ADMIN PANEL</span></a></li>
</ul>
</div>
</div>
</nav>
<section id="home-section" class="hero">
<div class="home-slider js-fullheight owl-carousel">
<div class="slider-item js-fullheight">
<div class="overlay"></div>
<div class="container-fluid p-0">
<div class="row d-md-flex no-gutters slider-text js-fullheight align-items-center justify-content-end" data-scrollax-parent="true">
<div class="one-third order-md-last img js-fullheight" style="background-image:url(images/bg1.jpg);">
<h3 class="vr" style="background-image: url(images/divider.jpg);">Upgrade</h3>
</div>
<div class="one-forth d-flex js-fullheight align-items-center ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<div class="text">
<span class="subheading">Welcome to Our Service</span>
<h1 class="mb-4 mt-3">Get Your <span>Perfect</span> Dream <span>Vehicle</span></h1>
<p>Collab with our humble service and lets make your dreamed car come true.</p>
<p><a href="#" class="btn btn-primary px-5 py-3 mt-3">Your Service Is Our Happiness</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="slider-item js-fullheight">
<div class="overlay"></div>
<div class="container-fluid p-0">
<div class="row d-flex no-gutters slider-text js-fullheight align-items-center justify-content-end" data-scrollax-parent="true">
<div class="one-third order-md-last img js-fullheight" style="background-image:url(images/bg2.jpg);">
<h3 class="vr" style="background-image: url(images/divider.jpg);">Service</h3>
</div>
<div class="one-forth d-flex js-fullheight align-items-center ftco-animate" data-scrollax=" properties: { translateY: '70%' }">
<div class="text">
<span class="subheading">Welcome to Our Service</span>
<h1 class="mb-4 mt-3">Service is <span>Temporary</span> But Vehicle is <span>Forever</span></h1>
<p>We have built our wide range of service offerings to keep pace with the changing demands of the market and to meet all customer needs in a timely manner by maintaining competitiveness and quality</p>
<p><a href="#" class="btn btn-primary px-5 py-3 mt-3">Your Service Is Our Happiness</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-customer" id="customer-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h2 class="mb-4">Customer Registration</h2>
<p>Our mission - across our globally dispersed organisation – is to be passionate in anticipating and providing the best vehicles and experiences that excite our global customers.</p>
<p><a href="cust.html" class="btn btn-primary px-5 py-3 mt-3">CUSTOMER PORTAL</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-services ftco-no-pt ftco-no-pb">
<div class="container">
<div class="row no-gutters services-section">
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services text-center d-block">
<div class="icon"><span class="flaticon-aerobic"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Cars and Sports Utility Vehicles</h3>
<p>Experience our connected Cars and UV's.</p>
<!-- <p><a href="#" class="btn btn-primary">Read more</a></p> -->
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services services-2 text-center d-block">
<div class="icon"><span class="flaticon-diet"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Trucks And Buses</h3>
<p>Delivering unmatched Performance on all terrains.</p>
<!-- <p><a href="#" class="btn btn-primary">Read more</a></p> -->
</div>
</div>
</div>
<div class="col-md-4 d-flex align-self-stretch ftco-animate">
<div class="media block-6 services text-center d-block">
<div class="icon"><span class="flaticon-check-list"></span></div>
<div class="media-body">
<h3 class="heading mb-3">Free Testing</h3>
<p>On some occassion Time with the registered members only.</p>
<!-- <p><a href="#" class="btn btn-primary">Read more</a></p> -->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-no-pb ftco-no-pt ftco-program bg-light" id="programs-section">
<div class="container">
<div class="row no-gutters">
<div class="col-md-4 ftco-animate py-5 nav-link-wrap js-fullheight">
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<a class="nav-link px-4 active" id="v-pills-1-tab" data-toggle="pill" href="#v-pills-1" role="tab" aria-controls="v-pills-1" aria-selected="true"><span class="mr-3 flaticon-diet"></span> Owner Check-IN</a>
<a class="nav-link px-4" id="v-pills-2-tab" data-toggle="pill" href="#v-pills-2" role="tab" aria-controls="v-pills-2" aria-selected="false"><span class="mr-3 flaticon-treadmill-machine-with-timer"></span> Services Available</a>
<a class="nav-link px-4" id="v-pills-3-tab" data-toggle="pill" href="#v-pills-3" role="tab" aria-controls="v-pills-3" aria-selected="false"><span class="mr-3 flaticon-meditation"></span> Registration</a>
<a class="nav-link px-4" id="v-pills-4-tab" data-toggle="pill" href="#v-pills-4" role="tab" aria-controls="v-pills-4" aria-selected="false"><span class="mr-3 flaticon-gym"></span> Offers</a>
<a class="nav-link px-4" id="v-pills-5-tab" data-toggle="pill" href="#v-pills-5" role="tab" aria-controls="v-pills-5" aria-selected="false"><span class="mr-3 flaticon-running"></span> One Day Service</a>
<a class="nav-link px-4" id="v-pills-6-tab" data-toggle="pill" href="#v-pills-6" role="tab" aria-controls="v-pills-6" aria-selected="false"><span class="mr-3 flaticon-aerobic"></span> Oil Change</a>
<a class="nav-link px-4" id="v-pills-7-tab" data-toggle="pill" href="#v-pills-7" role="tab" aria-controls="v-pills-7" aria-selected="false"><span class="mr-3 flaticon-scale"></span> Moderate Service</a>
</div>
</div>
<div class="col-md-8 ftco-animate p-4 p-md-5 d-flex align-items-center js-fullheight">
<div class="tab-content pl-md-5" id="v-pills-tabContent">
<div class="tab-pane fade show active py-0" id="v-pills-1" role="tabpanel" aria-labelledby="v-pills-1-tab">
<span class="icon mb-3 d-block flaticon-diet"></span>
<h2 class="mb-4">Owner Check-IN</h2>
<p>One often hears that you should never buy a used car without having its service history.</p>
<p>VAHAN NR e-Services: The content on this portal is meant for sharing information regarding vehicles on the basis of information available on centralized VAHAN and vehicle National Register. Using content of this portal for any commercial purpose or any derivative work or misuse of any kind is strictly prohibited and may invite legal consequences.</p>
</div>
<div class="tab-pane fade py-0" id="v-pills-2" role="tabpanel" aria-labelledby="v-pills-2-tab">
<span class="icon mb-3 d-block flaticon-treadmill-machine-with-timer"></span>
<h2 class="mb-4">Services Available</h2>
<p>The service history of a car consists of any maintenance work done on a vehicle, regardless of the frequency, difficulty, or cost. Perhaps the most common maintenance performed on a vehicle is to regularly change the oil. Other typically quick and common forms of maintenance are the replacement of cabin and engine air filters, windshield wipers, and batteries. These are all typically quick, easy ways to maintain a vehicle.</p>
</div>
<div class="tab-pane fade py-0" id="v-pills-3" role="tabpanel" aria-labelledby="v-pills-3-tab">
<span class="icon mb-3 d-block flaticon-meditation"></span>
<h2 class="mb-4">Registration</h2>
<p>The Vehicle Status Enquiry Search that allows vehicle owners to check the status of a change of ownership notification.</p>
<p>If a customer has changed ownership of a vehicle, or has surrendered their vehicle to an Authorised Treatment Facility for destruction, they can check the current status of the vehicle by entering the vehicle registration details online.</p>
</div>
<div class="tab-pane fade py-0" id="v-pills-4" role="tabpanel" aria-labelledby="v-pills-4-tab">
<span class="icon mb-3 d-block flaticon-gym"></span>
<h2 class="mb-4">Offers</h2>
<p>India first hyper local car/bike service and maintenance discount coupons and deals available. Make sure to browse and find workshops around you & choose among multiple offers available. </p>
</div>
<div class="tab-pane fade py-0" id="v-pills-5" role="tabpanel" aria-labelledby="v-pills-5-tab">
<span class="icon mb-3 d-block flaticon-running"></span>
<h2 class="mb-4">One day Service</h2>
<p>This section gives you the best way deal your vehicle with the most intensed service for one day delivery</p>
<p>One day service for a vehicle includes all the best available service that are present in our companty profile</p>
</div>
<div class="tab-pane fade py-0" id="v-pills-6" role="tabpanel" aria-labelledby="v-pills-6-tab">
<span class="icon mb-3 d-block flaticon-aerobic"></span>
<h2 class="mb-4">Oil Change</h2>
<p>This section only changes the oil related contents that the vehicle is being suffering. This will increase the performance of the vehicle but still you want to try One day delivery you can access our services available.</p>
</div>
<div class="tab-pane fade py-0" id="v-pills-7" role="tabpanel" aria-labelledby="v-pills-7-tab">
<span class="icon mb-3 d-block flaticon-scale"></span>
<h2 class="mb-4">Moderate Service</h2>
<p>Moderate service for the vehicle with the Moderate prices.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-schedule" id="schedule-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Schedule</span>
<h2 class="mb-4">Service Schedule</h2>
<p>Our mission - across our globally dispersed organisation – is to be passionate in anticipating and providing the best vehicles and experiences that excite our global customers.</p>
</div>
</div>
<div class="ftco-schedule">
<div class="row">
<div class="col-md-4 nav-link-wrap">
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<a class="nav-link ftco-animate active" id="v-pills-8-tab" data-toggle="pill" href="#v-pills-8" role="tab" aria-controls="v-pills-8" aria-selected="true">Monday-Friday<span>Morning-Evening</span></a>
<a class="nav-link ftco-animate" id="v-pills-9-tab" data-toggle="pill" href="#v-pills-9" role="tab" aria-controls="v-pills-9" aria-selected="false">Saturday <span>Morning</span></a>
</div>
</div>
<div class="col-md-8 tab-wrap">
<div class="tab-content" id="v-pills-tabContent">
<div class="tab-pane fade show active" id="v-pills-8" role="tabpanel" aria-labelledby="day-8-tab">
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">08:00AM - 10:00AM</span>
<h2><a href="#">Registration</a></h2>
</div>
</div>
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">10:00AM - 1:00PM</span>
<h2><a href="#">Services</a></h2>
</div>
</div>
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">1:00PM - 2:00PM</span>
<h2><a href="#">Lunch Time</a></h2>
</div>
</div>
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">2:00PM - 6:00PM</span>
<h2><a href="#">Services</a></h2>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-9" role="tabpanel" aria-labelledby="v-pills-day-9-tab">
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">08:00AM - 10:00AM</span>
<h2><a href="#">Registration</a></h2>
</div>
</div>
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">10:00AM - 1:00PM</span>
<h2><a href="#">Services</a></h2>
</div>
</div>
<div class="coach-wrap ftco-animate d-sm-flex">
<div class="text pl-md-5">
<span class="time">1:00PM - 2:00PM</span>
<h2><a href="#">Lunch Time</a></h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-counter img ftco-section ftco-no-pt ftco-no-pb" id="about-section">
<div class="container">
<div class="row d-flex">
<div class="col-md-6 col-lg-5 d-flex">
<div class="img d-flex align-self-stretch align-items-center" style="background-image:url(images/main.jpg);">
</div>
</div>
<div class="col-md-6 col-lg-7 pl-lg-5 py-5">
<div class="py-md-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<span class="subheading">A Few Words About Us</span>
<h2 class="mb-4" style="font-size: 34px; text-transform: capitalize;">We're Functioning for Almost <span class="number" data-number="20">0</span> Years</h2>
<p>We innovate mobility solutions with passion to enhance the quality of life.</p>
<p>By the year 2024, we will become the most aspirational Indian auto brand, consistently winning, by </p><p>Delivering superior financial returns</p>
<p>Driving sustainable mobility solutions</p> <p>Exceeding customer expectations</p> <p>Creating a highly engaged work force.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section testimony-section">
<div class="container">
<div class="row justify-content-center pb-3">
<div class="col-md-7 text-center heading-section heading-section-white ftco-animate">
<span class="subheading">Evolution</span>
<h2 class="mb-4">Glimpses of an illustrious history</h2>
</div>
</div>
<div class="row ftco-animate justify-content-center">
<div class="col-md-12">
<div class="carousel-testimony owl-carousel ftco-owl">
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/1945.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Manufacturing of locomotives and other engineering products</p>
<p class="name">1945</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/1964.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">The 1210 series of vehicles are out</p>
<p class="name">1964</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/1983.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Manufacturing of heavy commercial vehicle commences</p>
<p class="name">1983</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/1995.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Introduction of 4x4 Vehicles</p>
<p class="name">1995</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/2005.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Launch of wide range of fully built buses and coaches.</p>
<p class="name">2005</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/2009.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Introduction of land rover Vehicles</p>
<p class="name">2009</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/2014.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Launch of armoured personnel Carrier Vehicles</p>
<p class="name">2014</p>
</div>
</div>
</div>
<div class="item">
<div class="testimony-wrap text-center py-4 pb-5">
<div class="user-img" style="background-image: url(images/2018.jpg)">
<span class="quote d-flex align-items-center justify-content-center">
<i class="icon-quote-left"></i>
</span>
</div>
<div class="text px-4 pb-5">
<p class="mb-4">Ultra storage and 4x4 Vehicles</p>
<p class="name">2018</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section contact-section ftco-no-pb" id="contact-section">
<div class="container">
<div class="row justify-content-center mb-5 pb-3">
<div class="col-md-7 heading-section text-center ftco-animate">
<span class="subheading">Contact</span>
<h2 class="mb-4">Contact Us</h2>
</div>
</div>
<div class="row block-9">
<div class="col-md-7 order-md-last d-flex">
<form action="#" class="bg-light p-4 p-md-5 contact-form">
<div class="one-third order-md-last img js-fullheight" style="background-image:url(images/5.jpg);">
</div>
</form>
</div>
<div class="col-md-5 d-flex">
<div class="row d-flex contact-info mb-5">
<div class="col-md-12 ftco-animate">
<div class="box p-2 px-3 bg-light d-flex">
<div class="icon mr-3">
<span class="icon-map-signs"></span>
</div>
<div>
<h3 class="mb-3">Address</h3>
<p>SVCE, Beside Woods Enclave, Vidyanagar, Bengaluru</p>
</div>
</div>
</div>
<div class="col-md-12 ftco-animate">
<div class="box p-2 px-3 bg-light d-flex">
<div class="icon mr-3">
<span class="icon-phone2"></span>
</div>
<div>
<h3 class="mb-3">Contact Number</h3>
<p><a href="tel://1234567920">9964826490</a></p>
</div>
</div>
</div>
<div class="col-md-12 ftco-animate">
<div class="box p-2 px-3 bg-light d-flex">
<div class="icon mr-3">
<span class="icon-paper-plane"></span>
</div>
<div>
<h3 class="mb-3">Email Address</h3>
<p><a href="mailto:info@yoursite.com">shreevatsa.dush@gmail.com</a></p>
</div>
</div>
</div>
<div class="col-md-12 ftco-animate">
<div class="box p-2 px-3 bg-light d-flex">
<div class="icon mr-3">
<span class="icon-globe"></span>
</div>
<div>
<h3 class="mb-3">Website</h3>
<p><a href="#">svce@engineering.com</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-admin" id="admin-section">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-md-12 heading-section text-center ftco-animate">
<h2 class="mb-4">ADMIN PANEL</h2>
<p><a href="adminlog.html" class="btn btn-primary px-5 py-3 mt-3">ADMIN SECTION</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- loader -->
<div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/scrollax.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVWaKrjvy3MaE7SQ74_uJiULgl1JY0H2s&sensor=false"></script>
<script src="js/google-map.js"></script>
<script src="js/main.js"></script>
</body>
</html>