-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathoffline.html
More file actions
949 lines (828 loc) · 27 KB
/
offline.html
File metadata and controls
949 lines (828 loc) · 27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href=" https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="icon" href="favicon.svg" />
<link rel="stylesheet" href="preloader.css" />
<title>Vehigo Offline Centers</title>
<!-- custom css links -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/dark.css" />
<link rel="stylesheet" href="./styles/offline.css" />
<link rel="stylesheet" href="./offline-animations.css" />
<!-- Leaflet CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
/>
<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=Nunito:wght@400;600&family=Open+Sans&display=swap"
rel="stylesheet"
/>
<style>
/* Body styling for dark mode */
body {
background-color: #ffffff;
color: #333333;
transition: background-color 0.3s ease, color 0.3s ease;
margin: 0;
padding: 0;
font-family: "Nunito", sans-serif;
}
.navbar {
position: relative;
z-index: 1000;
}
.navbar-collapse {
background-color: #212529;
position: absolute;
top: 100%;
left: -25%;
width: 150%;
padding: 0.75rem 0;
z-index: 9999;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Only apply absolute positioning on mobile */
@media (min-width: 992px) {
.navbar-collapse {
position: static;
background-color: transparent;
border-top: none;
padding: 0;
}
}
/* Ensure body doesn’t shift */
body {
margin: 0;
}
/* Center text & make links look clean */
.nav-link {
color: #fff !important;
font-weight: 500;
transition: color 0.3s;
}
.nav-link:hover {
color: #0d6efd !important;
}
body.dark-theme {
background-color: #1a202c;
}
@keyframes gradientShift {
0%,
100% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
}
/* Fix for header links visibility */
.header .navbar-nav .nav-link {
color: #333 !important;
font-weight: 600;
transition: color 0.3s ease;
}
body.dark-theme .header .navbar-nav .nav-link {
color: #f8f9fa !important;
}
.header .navbar-nav .nav-link:hover {
color: #007bff !important;
}
body.dark-theme .header .navbar-nav .nav-link:hover {
color: #4da8ff !important;
}
/* Fix for card overlapping */
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
margin-top: 30px;
}
.card {
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
background: white;
border: 1px solid #e0e0e0;
}
body.dark-theme .card {
background: #2d3748;
border-color: #4a5568;
color: #e2e8f0;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
body.dark-theme .card:hover {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.card.active {
border-color: #007bff;
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
body.dark-theme .card.active {
border-color: #4da8ff;
box-shadow: 0 0 0 2px rgba(77, 168, 255, 0.25);
}
/* Fix for dark mode toggle */
.theme-toggle-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 6px;
transition: all 0.3s ease;
border: 1px solid #6c757d;
background: transparent;
cursor: pointer;
}
.theme-toggle-btn:hover {
background-color: rgba(0, 123, 255, 0.1);
}
body.dark-theme .theme-toggle-btn {
color: #e2e8f0;
border-color: #4a5568;
}
body.dark-theme .theme-toggle-btn:hover {
background-color: rgba(255, 255, 255, 0.1);
}
/* Section styling */
.offline-hero-section {
padding: 60px 0 40px;
text-align: center;
}
.hero-subtitle {
font-size: 1rem;
color: #838282;
max-width: 600px;
margin: 20px auto 0;
}
body.dark-theme .hero-subtitle {
color: #a0aec0;
}
.section-title {
text-align: center;
margin-bottom: 40px;
font-size: 2rem;
}
.centers-section {
padding: 60px 0;
background: #f8f9fa;
}
body.dark-theme .centers-section {
background: #2d3748;
}
/* Animation classes */
.animate-title {
animation: fadeInUp 0.8s ease-out;
}
.animate-subtitle {
animation: fadeInUp 0.8s ease-out 0.2s both;
}
.animate-section {
animation: fadeIn 1s ease-out 0.4s both;
}
.animate-card {
animation: fadeInUp 0.6s ease-out both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Header styling */
.header {
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}
body.dark-theme .header {
background: #1a202c;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar-brand img {
height: 40px;
}
.navbar-nav {
display: flex;
align-items: center;
gap: 15px;
list-style: none;
margin: 0;
padding: 0;
}
.nav-item {
margin: 0;
}
/* Container styling */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Footer styling */
.footer {
background: #f8f9fa;
padding: 40px 0 20px;
margin-top: 60px;
}
body.dark-theme .footer {
background: #1a202c;
color: #e2e8f0;
}
.footer-bottom {
border-top: 1px solid #e9ecef;
padding-top: 20px;
margin-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
body.dark-theme .footer-bottom {
border-top-color: #2d3748;
}
.social-list {
display: flex;
gap: 15px;
list-style: none;
padding: 0;
margin: 0;
}
.social-link {
color: #6c757d;
font-size: 1.5rem;
transition: color 0.3s ease;
}
body.dark-theme .social-link {
color: #a0aec0;
}
.social-link:hover {
color: #007bff;
}
body.dark-theme .social-link:hover {
color: #4da8ff;
}
.dark-theme .footer-brand img {
filter: brightness(0) invert(1);
opacity: 1;
transition: opacity 0.3s ease;
}
.dark-theme .footer-brand:hover img {
opacity: 0.8;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.cards-container {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}
.navbar-nav {
flex-wrap: wrap;
justify-content: center;
}
}
.dark-theme .navbar-brand img {
filter: brightness(0) invert(1);
opacity: 1;
transition: opacity 0.3s ease;
}
.dark-theme .navbar-brand:hover img {
opacity: 0.8;
}
/* Search input styling */
#searchInput {
max-width: 400px;
width: 100%;
border: 2px solid #007bff;
border-radius: 30px;
padding: 10px 18px;
font-size: 1rem;
transition: all 0.3s ease;
outline: none;
color: #333;
background-color: #fff;
box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}
/* Hover + focus effects */
#searchInput:hover,
#searchInput:focus {
box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
border-color: #0056b3;
}
/* Placeholder styling */
#searchInput::placeholder {
color: #999;
transition: color 0.3s ease;
}
#searchInput:focus::placeholder {
color: #007bff;
}
/* Dark theme compatibility */
body.dark-theme #searchInput {
background-color: #2d3748;
border-color: #4da8ff;
color: #e2e8f0;
box-shadow: 0 2px 8px rgba(77, 168, 255, 0.1);
}
body.dark-theme #searchInput:hover,
body.dark-theme #searchInput:focus {
box-shadow: 0 4px 12px rgba(77, 168, 255, 0.25);
border-color: #4da8ff;
}
body.dark-theme #searchInput::placeholder {
color: #a0aec0;
}
body.dark-theme #searchInput:focus::placeholder {
color: #4da8ff;
}
#searchInput {
opacity: 0;
transform: translateY(10px);
animation: fadeInUp 0.6s ease forwards 0.3s;
}
</style>
</head>
<body>
<div id="preloader">
<div class="spinner"></div>
</div>
<div id="app">
<header class="header">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<!-- Logo -->
<a
class="navbar-brand d-flex align-items gap-1"
href="/src/index.html"
aria-label="Vehigo Home"
>
<img
src="./assets/images/vehigologo.png"
alt="Vehigo"
height="50"
/>
</a>
<!-- Toggler button for mobile -->
<button
class="navbar-toggler bg-light"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon bg-light"></span>
</button>
<!-- Collapsible Menu -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="featured-car.html">Explore Cars</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./src/pages/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ContactUs.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="offline.html">Offline Centers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="rentcar.html">Rent Your Car</a>
</li>
<!-- Theme switch -->
<li class="nav-item d-flex align-items-center">
<button
id="themeToggle"
class="btn btn-outline-secondary theme-toggle-btn ms-lg-3"
type="button"
>
<i class="fa-solid fa-gear"></i>
<span class="label"> Light</span>
</button>
</li>
<!-- Login & Logout -->
<li class="nav-item ms-lg-3">
<a
href="./src/pages/login.html"
class="btn btn-vehigo"
id="loginBtn"
>
<i class="fa-regular fa-user"></i> <span>Login</span>
</a>
</li>
<li class="nav-item ms-lg-2">
<button
id="logoutBtn"
class="btn btn-outline-light d-none"
aria-label="Logout"
>
<i class="fa-solid fa-right-from-bracket"></i>
</button>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="offline-main-content modern-section p-0">
<div class="offline-hero-section p-3">
<div class="container">
<h1 class="gradient-text animate-title">
<i class="fas fa-map-marker-alt" style="color: rgba(255, 0, 0, 0.599);"></i> Find <span style="color: #6d28d9;">VehiGo</span> Centers, Near You!
</h1>
<p class="hero-subtitle animate-subtitle">
Discover our offline centers across India for personalized service
and support
</p>
</div>
</div>
<div class="map-section animate-section">
<div class="container">
<div id="map" class="modern-map"></div>
</div>
</div>
<h2 class="section-title gradient-text">📍 Our Service Centers</h2>
<!-- 🔍 Search Box -->
<div class="text-center mb-4">
<input
type="text"
id="searchInput"
class="form-control w-50 mx-auto shadow-sm"
placeholder="Search by city name..."
style="max-width: 400px; border-radius: 25px; padding: 10px 15px;"
/>
</div>
<div
class="cards-container mt-4 d-flex flex-wrap justify-content-center gap-4"
id="cardsContainer"
></div>
</main>
<!-- Leaflet JS and other scripts -->
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
// Offline center data
const offlineCenters = [
{
city: "Delhi",
name: "Delhi Center",
lat: 28.6139,
lng: 77.209,
contact: "+91 99999 11111",
},
{
city: "Mumbai",
name: "Mumbai Center",
lat: 19.076,
lng: 72.8777,
contact: "+91 88888 22222",
},
{
city: "Kolkata",
name: "Kolkata Center",
lat: 22.5726,
lng: 88.3639,
contact: "+91 77777 33333",
},
{
city: "Chennai",
name: "Chennai Center",
lat: 13.0827,
lng: 80.2707,
contact: "+91 66666 44444",
},
{
city: "Bangalore",
name: "Bangalore Center",
lat: 12.9716,
lng: 77.5946,
contact: "+91 55555 55555",
},
{
city: "Hyderabad",
name: "Hyderabad Center",
lat: 17.385,
lng: 78.4867,
contact: "+91 44444 66666",
},
{
city: "Pune",
name: "Pune Center",
lat: 18.5204,
lng: 73.8567,
contact: "+91 33333 77777",
},
];
// Initialize Leaflet map
const map = L.map("map").setView([22.9734, 78.6569], 5); // India center
// Add OpenStreetMap tiles
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution: "© OpenStreetMap contributors",
}).addTo(map);
// Cards container
const cardsContainer = document.getElementById("cardsContainer");
// Add markers and cards
offlineCenters.forEach((center, index) => {
const marker = L.marker([center.lat, center.lng]).addTo(map)
.bindPopup(`
<div style="text-align: center; padding: 10px;">
<strong style="color: #007bff; font-size: 16px;">${center.name}</strong><br>
<p style="margin: 8px 0; color: #666;">📍 ${center.city}</p>
<p style="margin: 0; color: #28a745; font-weight: 600;">📞 ${center.contact}</p>
</div>
`);
const card = document.createElement("div");
card.className = "card animate-card";
card.style.animationDelay = `${0.2 + index * 0.1}s`;
card.innerHTML = `
<h3>${center.city}</h3>
<p><strong>${center.name}</strong></p>
<p>Located in ${center.city}</p>
<p>📞 ${center.contact}</p>
`;
card.addEventListener("click", () => {
map.setView([center.lat, center.lng], 12);
marker.openPopup();
document
.querySelectorAll(".card")
.forEach((c) => c.classList.remove("active"));
card.classList.add("active");
});
cardsContainer.appendChild(card);
// 🔍 Search Filter Functionality
const searchInput = document.getElementById("searchInput");
searchInput.addEventListener("input", (e) => {
const query = e.target.value.toLowerCase();
const cards = document.querySelectorAll("#cardsContainer .card");
cards.forEach((card) => {
const cityName = card.querySelector("h3").textContent.toLowerCase();
card.style.display = cityName.includes(query) ? "block" : "none";
});
});
});
// Smooth map loading animation
map.whenReady(() => {
const mapElement = document.getElementById("map");
mapElement.style.opacity = "0";
mapElement.style.transform = "scale(0.95)";
setTimeout(() => {
mapElement.style.transition = "all 0.8s ease-out";
mapElement.style.opacity = "1";
mapElement.style.transform = "scale(1)";
}, 100);
});
});
</script>
<!-- Dark Mode JavaScript -->
<script>
document.addEventListener("DOMContentLoaded", function () {
// Initialize dark mode
initializeDarkMode();
});
function initializeDarkMode() {
const themeToggle = document.getElementById("themeToggle");
const body = document.body;
// Check for saved theme preference or default to light mode
const currentTheme = localStorage.getItem("theme") || "light";
// Apply the saved theme
applyTheme(currentTheme);
// Add event listener to theme toggle button
themeToggle.addEventListener("click", toggleTheme);
}
function toggleTheme() {
const body = document.body;
const themeToggle = document.getElementById("themeToggle");
const icon = themeToggle.querySelector("i");
const label = themeToggle.querySelector(".label");
// Toggle between light and dark themes
if (body.classList.contains("dark-theme")) {
body.classList.remove("dark-theme");
themeToggle.classList.remove("btn-outline-light");
icon.className = "fa-solid fa-moon";
label.textContent = " Dark";
localStorage.setItem("theme", "light");
} else {
body.classList.add("dark-theme");
themeToggle.classList.add("btn-outline-light");
icon.className = "fa-solid fa-sun";
label.textContent = " Light";
localStorage.setItem("theme", "dark");
}
}
function applyTheme(theme) {
const body = document.body;
const themeToggle = document.getElementById("themeToggle");
const icon = themeToggle.querySelector("i");
const label = themeToggle.querySelector(".label");
if (theme === "dark") {
body.classList.add("dark-theme");
themeToggle.classList.add("btn-outline-light");
icon.className = "fa-solid fa-sun";
label.textContent = " Light";
} else {
body.classList.remove("dark-theme");
themeToggle.classList.remove("btn-outline-light");
icon.className = "fa-solid fa-moon";
label.textContent = " Dark";
}
}
</script>
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>
<a
href="./offline.html"
style="
position: fixed;
bottom: 30px;
right: 30px;
background-color: #007bff;
color: white;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
z-index: 999;
transition: background-color 0.3s;
"
onmouseover="this.style.backgroundColor='#0056b3'"
onmouseout="this.style.backgroundColor='#007BFF'"
>
<ion-icon name="chevron-up-outline" style="font-size: 24px"></ion-icon>
</a>
<footer class="footer">
<div class="container">
<div class="footer-top">
<div class="footer-brand">
<a href="/src/index.html" class="logo">
<img src="./assets/images/vehigologo.png" alt="VehiGo logo" />
</a>
<p class="footer-text">
Search for cheap rental cars in Madhya Pradesh. We offer our
customers an attractive and fun selection of vehicles as well as
an opportunity to rent their cars when not in use. Experience
reliable, affordable, and convenient car rental services across
Bhopal, Indore, and Ujjain.
</p>
</div>
<ul class="footer-list">
<li>
<p class="footer-list-title">Company</p>
</li>
<li>
<a href="src/pages/about.html" class="footer-link">About us</a>
</li>
<li>
<a href="#" class="footer-link">Pricing plans</a>
</li>
<li>
<a href="blog.html" class="footer-link">Our blog</a>
</li>
<li>
<a href="ContactUs.html" class="footer-link">Contacts</a>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title">Support</p>
</li>
<li>
<a href="#" class="footer-link">Help center</a>
</li>
<li>
<a href="#" class="footer-link">Ask a question</a>
</li>
<li>
<a href="privacypolicy.html" class="footer-link"
>Privacy policy</a
>
</li>
<li>
<a href="tandc.html" class="footer-link">Terms & conditions</a>
</li>
</ul>
</div>
<div class="footer-bottom">
<ul class="social-list">
<li>
<a
href="https://facebook.com/vehigo"
class="social-link"
target="_blank"
rel="noopener"
>
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a
href="https://instagram.com/vehigo"
class="social-link"
target="_blank"
rel="noopener"
>
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a
href="https://twitter.com/vehigo"
class="social-link"
target="_blank"
rel="noopener"
>
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a
href="https://linkedin.com/company/vehigo"
class="social-link"
target="_blank"
rel="noopener"
>
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="mailto:contact@vehigo.com" class="social-link">
<ion-icon name="mail-outline"></ion-icon>
</a>
</li>
</ul>
<p class="copyright">
© <span id="copyright-year">2025</span>
<a href="/src/index.html">VehiGo</a>. All rights reserved. Contact us
at <a href="mailto:contact@vehigo.com">contact@vehigo.com</a>
</p>
</div>
</div>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"
integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI"
crossorigin="anonymous"
></script>
<script src="preloader.js"></script>
</body>
</html>