-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathtandc.html
More file actions
751 lines (654 loc) · 25.4 KB
/
tandc.html
File metadata and controls
751 lines (654 loc) · 25.4 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
<!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" />
<title>Terms and Conditions — Vehigo</title>
<!-- Icons & Fonts -->
<link rel="icon" href="favicon.svg" />
<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;700;800&family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Styles -->
<style>
:root {
--vehigo-primary: #2563eb;
--vehigo-primary-2: #4e7fb4;
--vehigo-primary-3: #1e40af;
--vehigo-accent: #ffd700;
--vehigo-bg: #f6f8fa;
--vehigo-text: #0f172a;
--vehigo-card: #ffffff;
--vehigo-border: #e5e7eb;
--shadow-1: 0 6px 20px rgba(37, 99, 235, .18);
--shadow-2: 0 14px 40px rgba(37, 99, 235, .20);
--shadow-3: 0 -18px 50px rgba(37, 99, 235, .25);
--radius-xl: 18px;
--radius-lg: 14px;
--radius-md: 12px;
}
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: var(--vehigo-bg);
color: var(--vehigo-text);
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Dark theme */
.dark-theme {
--vehigo-bg: #0b1220;
--vehigo-text: #e6e6f0;
--vehigo-card: #101927;
--vehigo-border: #1f2a3a;
--shadow-1: 0 6px 20px rgba(0, 0, 0, .35);
--shadow-2: 0 20px 50px rgba(0, 0, 0, .45);
}
/* Animated Gradient Background */
#animated-bg {
position: fixed;
inset: 0;
background: radial-gradient(1200px 800px at 10% 10%, rgba(37, 99, 235, .15), transparent 40%),
radial-gradient(1000px 700px at 90% 20%, rgba(78, 127, 180, .2), transparent 45%),
radial-gradient(800px 600px at 30% 90%, rgba(30, 64, 175, .18), transparent 40%);
pointer-events: none;
z-index: 0;
filter: blur(0.5px);
animation: blobFloat 24s ease-in-out infinite alternate;
opacity: .9;
}
@keyframes blobFloat {
0% {
transform: translate3d(0, 0, 0) scale(1);
}
100% {
transform: translate3d(0, -20px, 0) scale(1.02);
}
}
/* Header */
.header {
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: saturate(140%) blur(8px);
background: #fff;
border-bottom: 1px solid var(--vehigo-border);
box-shadow: 0 2px 16px rgba(37, 99, 235, .08);
transition: box-shadow .2s;
padding: 5px 0px;
}
.dark-theme .header {
background: rgba(10, 15, 26, .96);
}
.navbar-nav {
display: flex;
align-items: center;
gap: 18px; /* modern and simpler */
}
.navbar .nav-link {
font-weight: 600;
letter-spacing: .2px;
color: var(--vehigo-text);
white-space: nowrap;
padding: .75rem .5rem;
line-height: 1.1;
gap: 10px;
}
.navbar .nav-link:hover {
color: var(--vehigo-primary);
}
.navbar-brand img {
height: 36px;
}
.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;
}
.dark-theme .logo img {
filter: brightness(0) invert(1);
opacity: 1;
transition: opacity 0.3s ease;
}
.dark-theme .logo:hover img {
opacity: 0.8;
}
.btn-vehigo {
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
border: none !important;
border-radius: 25px !important;
margin-right: 5px;
padding: 10px 20px !important;
font-weight: 600 !important;
color: white !important;
transition: all 0.3s ease !important;
box-shadow: 0 2px 8px rgba(37, 100, 235, 0.3) !important;
}
.btn-vehigo:hover {
transform: translateY(-2px) !important;
box-shadow: 0 4px 15px rgba(37, 100, 235, 0.4) !important;
background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
}
/* Theme switch */
.theme-switch {
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
border: none !important;
border-radius: 25px !important;
margin-right: 5px;
padding: 10px 25px !important;
font-weight: 700 !important;
color: white !important;
transition: all 0.3s ease !important;
box-shadow: 0 2px 8px rgba(37, 100, 235, 0.3) !important;
}
.theme-switch:hover {
transform: translateY(-2px) !important;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
border-color: #2563eb !important;
}
/* Main Content */
.main-content {
position: relative;
z-index: 1;
flex: 1;
padding: 2rem 0;
}
.content-container {
background: var(--vehigo-card);
border: 1px solid var(--vehigo-border);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-1);
padding: 3rem;
margin: 2rem 0;
}
.page-header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid var(--vehigo-border);
}
.page-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: .3px;
margin-bottom: 1rem;
background: linear-gradient(90deg, #4e7fb4, #2563eb);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.page-subtitle {
font-size: 1.1rem;
opacity: .85;
font-weight: 500;
}
.terms-section {
margin-bottom: 2.5rem;
padding: 1.5rem;
background: var(--vehigo-bg);
border-radius: var(--radius-lg);
border: 1px solid var(--vehigo-border);
}
.terms-section:hover{
transform: translateY(-8px) scale(1.02);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
border-color: #3b82f6;
}
.terms-section h2 {
font-size: 1.5rem;
font-weight: 700;
color: var(--vehigo-primary);
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.terms-section h2::before {
content: '';
width: 4px;
height: 24px;
background: linear-gradient(90deg, #4e7fb4, #2563eb);
border-radius: 2px;
}
.terms-section p {
line-height: 1.7;
margin-bottom: 1rem;
opacity: .9;
}
.terms-section p:last-child {
margin-bottom: 0;
}
/* Back to Home Button */
.back-to-home-btn {
position: fixed;
bottom: 30px;
right: 30px;
background: linear-gradient(90deg, #4e7fb4, #2563eb);
color: white;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: var(--shadow-2);
z-index: 999;
transition: all 0.3s ease;
font-size: 14px;
font-weight: bold;
}
.back-to-home-btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-3);
color: white;
}
/* Footer */
.footer { background: #f4f7fb; color: #111827; }
.dark-theme .footer { background: #0b0f14; color: #e5e7eb; }
.dark-theme .footer .footer-link { color: #cbd5e1; }
.dark-theme .footer .footer-link:hover { color: #60a5fa; }
.dark-theme .social-link { color: #cbd5e1; }
/* New Footer UI */
.footer {
padding: 60px 0 20px;
}
.footer .container { max-width: 1200px; margin-inline: auto; }
.footer-grid {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
gap: 32px;
align-items: start;
}
.footer-brand .logo { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand .logo img { height: 44px; }
.footer-text { margin-top: 12px; color: #475569; }
.dark-theme .footer-text { color: #94a3b8; }
.footer .social-list { display: flex; gap: 12px; margin-top: 14px; }
.footer .social-link { font-size: 22px; color: #1f2937; }
.footer .social-link:hover { color: #2563eb; }
.dark-theme .footer .social-link { color: #cbd5e1; }
.footer-list-title { font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.dark-theme .footer-list-title { color: #e2e8f0; }
.footer-link { color: #374151; font-weight: 500; text-decoration: none; }
.footer-link:hover { color: #2563eb; transform: translateX(2px); }
.newsletter { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px; }
.dark-theme .newsletter { background: #111827; border-color: #263241; }
.newsletter h4 { margin-bottom: 8px; font-weight: 800; }
.newsletter p { font-size: 0.95rem; color: #475569; margin-bottom: 12px; }
.dark-theme .newsletter p { color: #94a3b8; }
.newsletter .form { display: flex; gap: 8px; }
.newsletter input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid #e5e7eb; outline: none; }
.dark-theme .newsletter input { background: #0f1218; color: #e5e7eb; border-color: #263241; }
.newsletter button { padding: 10px 14px; border-radius: 10px; background: #2563eb; color: #fff; border: none; font-weight: 700; }
.newsletter button:hover { background: #1e40af; }
.footer-bottom { margin-top: 32px; border-top: 1px solid #e5e7eb; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.dark-theme .footer-bottom { border-color: #263241; }
.footer-bottom .mini-links { display: flex; gap: 12px; }
.footer-bottom .mini-links a { color: #475569; font-size: 0.95rem; text-decoration: none; }
.footer-bottom .mini-links a:hover { color: #2563eb; }
.social-list{list-style-type: none;}
.footer-list{list-style-type: none;}
/* Light theme overrides for footer readability */
body:not(.dark-theme) .footer-logo {
filter: none;
}
body:not(.dark-theme) .footer-column h6 {
color: var(--vehigo-text);
}
body:not(.dark-theme) .footer-description,
body:not(.dark-theme) .footer-tagline {
color: var(--vehigo-text);
opacity: 0.95;
}
body:not(.dark-theme) .footer-links a {
color: rgba(0, 0, 0, 0.9);
}
body:not(.dark-theme) .footer-links a:hover {
color: var(--vehigo-primary-3);
}
body:not(.dark-theme) .footer-top {
background: linear-gradient(360deg, #f6f8fa 0%, #e5e7eb 100%);
}
body:not(.dark-theme) .footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.12);
background: rgba(0, 0, 0, 0.03);
}
/* Light mode: ensure contact info (phone/location) is readable */
body:not(.dark-theme) .contact-text,
body:not(.dark-theme) .contact-text a {
color: #0f172a !important;
}
/* Responsive Design */
@media (max-width: 768px) {
.content-container {
padding: 2rem 1.5rem;
margin: 1rem 0;
}
.footer-links-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.footer-bottom-content {
flex-direction: column;
text-align: center;
}
}
@media (max-width: 576px) {
.footer-links-grid {
grid-template-columns: 1fr;
}
.footer-top {
padding: 2rem 0 1.5rem;
}
}
/* Button Container (Centers the button) */
.vehigo-btn-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
}
/* Button Styling */
.vehigo-btn {
display: inline-block;
background-color: var(--vehigo-primary);
color: #fff;
padding: 14px 32px;
border-radius: var(--radius-lg);
text-decoration: none;
font-weight: 600;
letter-spacing: 0.5px;
box-shadow: var(--shadow-1);
transition: all 0.3s ease;
border: 2px solid transparent;
text-align: center;
}
.vehigo-btn:hover {
background-color: var(--vehigo-primary-3);
transform: translateY(-2px);
box-shadow: var(--shadow-2);
}
.vehigo-btn:active {
transform: translateY(1px);
box-shadow: var(--shadow-1);
}
.vehigo-btn:focus {
outline: none;
border: 2px solid var(--vehigo-accent);
}
/* =====================
📱 Responsive Styling
===================== */
@media (max-width: 768px) {
.vehigo-btn {
padding: 12px 26px;
font-size: 15px;
}
}
@media (max-width: 480px) {
.vehigo-btn {
width: 80%;
font-size: 14px;
padding: 12px 0;
}
.vehigo-btn-container {
margin-top: 25px;
}
}
</style>
</head>
<body class="dark-theme">
<div id="animated-bg" aria-hidden="true"></div>
<!-- Header -->
<header class="header">
<nav class="navbar navbar-expand-xl container py-2">
<a class="navbar-brand d-flex align-items-center gap-1" href="/src/index.html" aria-label="Vehigo Home">
<img src="./assets/images/vehigologo.png" alt="Vehigo" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navMain"
aria-controls="navMain" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navMain">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="/src/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">
<button id="themeToggle" class="btn btn-outline-secondary theme-switch" type="button">
<span class="label">Light</span>
</button>
</li>
<!-- Login & Logout -->
<li class="nav-item">
<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">
<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>
</nav>
</header>
<!-- Main Content -->
<main class="main-content">
<div class="container">
<div class="content-container">
<div class="page-header">
<h1 class="page-title">Terms and Conditions</h1>
<p class="page-subtitle">Please read these terms carefully before using our services</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-file-contract"></i> Introduction</h2>
<p>Vehigo offers car leasing and hosting services, allowing individuals and businesses to lease and host vehicles
for various purposes. By accessing and using our platform, you agree to be bound by these Terms and Conditions.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-user-check"></i> Eligibility</h2>
<p>You must be at least 18 years old to use our services. If you are accessing our services on behalf of a
business entity, you represent and warrant that you have the authority to bind the entity to these Terms.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-handshake"></i> Service Agreement</h2>
<p>By using our services, you agree to comply with all applicable laws and regulations.</p>
<p>You understand that leasing and hosting vehicles may involve additional terms and agreements specific to each
vehicle, and you agree to abide by those terms.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-user-plus"></i> Account Registration</h2>
<p>You may be required to create an account to access certain features of our services. You are responsible for
maintaining the confidentiality of your account information.</p>
<p>You are responsible for all activities that occur under your account.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-credit-card"></i> Service Fees</h2>
<p>You agree to pay all fees associated with the leasing and hosting of vehicles as specified in your agreement
with Vehigo.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-undo"></i> Cancellation and Refunds</h2>
<p>Cancellation and refund policies will be outlined in your specific lease or hosting agreement.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-car"></i> Vehicle Use</h2>
<p>You agree to use the leased or hosted vehicle in accordance with all applicable laws, including traffic laws
and safety regulations.</p>
<p>You are responsible for any damage to the vehicle during the lease or hosting period, except for normal wear
and tear.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-shield-halved"></i> Insurance</h2>
<p>You must maintain appropriate insurance coverage as required by law for any vehicle you lease or host through
Vehigo.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-lock"></i> Privacy</h2>
<p>Vehigo may collect and use your personal information in accordance with our Privacy Policy.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-ban"></i> Termination</h2>
<p>Vehigo reserves the right to terminate or suspend your account and access to our services if you violate these
Terms or engage in any unlawful or fraudulent activities.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-exclamation-triangle"></i> Limitation of Liability</h2>
<p>Vehigo shall not be liable for any indirect, consequential, special, or punitive damages arising out of or
related to the use of our services.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-gavel"></i> Governing Law and Dispute Resolution</h2>
<p>These Terms are governed by the laws of India. Any disputes arising from or relating to these Terms shall be
subject to the exclusive jurisdiction of the competent courts located in Madhya Pradesh for resolution.</p>
</div>
<div class="terms-section">
<h2><i class="fa-solid fa-edit"></i> Changes to Terms</h2>
<p>Vehigo reserves the right to modify these Terms at any time. Updated Terms will be posted on our website, and
your continued use of our services constitutes acceptance of the revised Terms.</p>
</div>
</div>
</div>
<div class="vehigo-btn-container">
<a href="src/pages/login.html" class="vehigo-btn">← Back to Sign Up</a>
</div>
</main>
<!-- Back to Home Button -->
<a href="/src/index.html" class="back-to-home-btn" aria-label="Back to Home">
<i class="fa-solid fa-house"></i>
</a>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="#" class="logo">
<img src="../assets\images\vehigologo.png" alt="VehiGo logo" />
</a>
<p class="footer-text">
Seamless rentals across Bhopal, Indore and Ujjain. Reliable, affordable and convenient car rental services for every journey.
</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="src\pages\pricing.html" 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">Contact Us</a></li>
</ul>
<ul class="footer-list">
<li><p class="footer-list-title">Support</p></li>
<li><a href="src\pages\help-center.html" class="footer-link">Help center</a></li>
<li><a href="src\pages\Askaques.html" 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 class="newsletter">
<h4>Stay in the loop</h4>
<p>Subscribe to get updates about new cars and offers.</p>
<div class="form">
<input type="email" placeholder="Enter your email" aria-label="Email address" />
<button type="button">Subscribe</button>
</div>
</div>
</div>
<div class="footer-bottom">
<ul data-aos="fade-up" 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="https://github.com/vehigo" class="social-link" target="_blank" rel="noopener"><ion-icon name="logo-github"></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="about-footer-year"></span> VehiGo. All rights reserved.</p>
<div class="mini-links">
<a href="../../privacypolicy.html">Privacy</a>
<a href="tandc.html">Terms</a>
<a href="../../ContactUs.html">Contact</a>
<a href="help-center.html">Support</a>
<a href="../../sitemap.html">Sitemap</a>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<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>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Theme Toggle
const themeToggle = document.getElementById('themeToggle');
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'light') {
document.body.classList.remove('dark-theme');
themeToggle.innerHTML = 'Dark';
themeToggle.classList.remove('btn-outline-light');
themeToggle.classList.add('btn-outline-secondary');
} else {
document.body.classList.add('dark-theme');
themeToggle.innerHTML = 'Light';
themeToggle.classList.remove('btn-outline-secondary');
themeToggle.classList.add('btn-outline-light');
}
themeToggle.addEventListener('click', () => {
document.body.classList.toggle('dark-theme');
const isDark = document.body.classList.contains('dark-theme');
localStorage.setItem('theme', isDark ? 'dark' : 'light');
if (isDark) {
themeToggle.innerHTML = 'Light';
themeToggle.classList.remove('btn-outline-secondary');
themeToggle.classList.add('btn-outline-light');
} else {
themeToggle.innerHTML = 'Dark';
themeToggle.classList.remove('btn-outline-light');
themeToggle.classList.add('btn-outline-secondary');
}
});
// AOS Animation
AOS.init({
duration: 650,
easing: 'ease-in-out',
once: true
});
// Copyright Year
const yearEl = document.getElementById('copyright-year');
if (yearEl) yearEl.textContent = new Date().getFullYear();
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
});
</script>
</body>
</html>