-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathprivacypolicy.html
More file actions
999 lines (868 loc) · 34.9 KB
/
privacypolicy.html
File metadata and controls
999 lines (868 loc) · 34.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | VehiGo</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<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);
}
.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);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
background: var(--vehigo-bg);
color: var(--vehigo-text);
overflow-x: hidden;
animation: fadeInBody 1s ease-in;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Dark mode logo visibility */
.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;
}
.theme-toggle-btn {
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-toggle-btn:hover {
transform: translateY(-2px) !important;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
border-color: #2563eb !important;
}
/* Navbar Styling */
.header {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
-webkit-backdrop-filter: blur(10px) !important;
backdrop-filter: blur(10px) !important;
position: sticky;
top: 0;
z-index: 100000;
}
.dark-theme .header {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.navbar-brand img {
height: 40px !important;
transition: transform 0.3s ease !important;
margin-right: 270px;
}
.navbar-brand:hover img {
transform: scale(1.05) !important;
}
.nav-link {
color: #374151 !important;
font-weight: 500 !important;
padding: 10px 15px !important;
border-radius: 8px !important;
transition: all 0.3s ease !important;
}
.nav-link:hover {
color: #2563eb !important;
transform: translateY(-1px) !important;
text-decoration: none;
}
.dark-theme .nav-link {
color: #e5e7eb !important;
}
.dark-theme .nav-link:hover {
color: #60a5fa !important;
}
.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;
text-decoration: none;
}
/* Hero */
.hero {
position: relative;
z-index: 1;
padding: 72px 0 28px;
}
.dark-theme .header {
background: rgba(11, 18, 32, 0.92);
border-bottom: 1px solid var(--vehigo-border);
}
.navbar-brand img {
height: 40px;
transition: transform 0.3s ease;
}
.navbar-brand:hover img {
transform: scale(1.05);
}
.nav-link {
font-weight: 600;
color: var(--vehigo-text) !important;
padding: 0.5rem 1rem !important;
border-radius: 8px;
transition: all 0.3s ease;
position: relative;
white-space: nowrap;
}
.nav-link:hover {
color: var(--vehigo-primary) !important;
background: rgba(37, 99, 235, 0.08);
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--vehigo-primary);
transition: all 0.3s ease;
transform: translateX(-50%);
}
.nav-link:hover::after {
width: 80%;
}
.theme-toggle-btn {
border: none;
background: rgba(37, 99, 235, 0.1);
color: var(--vehigo-primary);
border-radius: 50px;
padding: 10px 20px;
font-weight: 600;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
}
.theme-toggle-btn:hover {
background: var(--vehigo-primary);
color: white;
transform: translateY(-2px);
box-shadow: var(--shadow-1);
}
.btn-vehigo {
background: var(--vehigo-primary);
color: white !important;
border: none;
border-radius: 50px;
padding: 10px 24px;
font-weight: 600;
transition: all 0.3s ease;
font-size: 0.9rem;
}
.btn-vehigo:hover {
background: var(--vehigo-primary-3);
transform: translateY(-2px);
box-shadow: var(--shadow-1);
}
.navbar-toggler {
border: none;
padding: 6px 10px;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(37, 99, 235, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
width: 1.2em;
height: 1.2em;
}
.dark-theme .navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Main Content */
.privacy-hero {
background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(78, 127, 180, 0.05) 100%);
padding: 100px 0 60px;
margin-bottom: 40px;
border-bottom: 1px solid var(--vehigo-border);
}
.dark-theme .privacy-hero {
background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(78, 127, 180, 0.08) 100%);
}
.privacy-title {
font-size: clamp(2.5rem, 4vw, 3.5rem);
font-weight: 800;
text-align: center;
color: var(--vehigo-text);
margin-bottom: 20px;
line-height: 1.2;
}
.privacy-subtitle {
font-size: 1.2rem;
text-align: center;
color: var(--vehigo-text);
opacity: 0.8;
max-width: 600px;
margin: 0 auto;
}
.privacy-content {
flex: 1;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px 60px;
}
.section-card {
background: var(--vehigo-card);
border-radius: 16px;
padding: 40px;
margin-bottom: 30px;
box-shadow: var(--shadow-1);
border: 1px solid var(--vehigo-border);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-2);
}
.section-title {
font-size: 1.8rem;
font-weight: 700;
color: var(--vehigo-primary);
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 3px solid var(--vehigo-primary);
display: inline-block;
}
.subsection-title {
font-size: 1.3rem;
font-weight: 600;
color: var(--vehigo-primary-2);
margin: 25px 0 15px;
}
.content-text {
font-size: 1.05rem;
line-height: 1.7;
color: var(--vehigo-text);
margin-bottom: 20px;
}
.content-list {
margin: 20px 0;
padding-left: 25px;
}
.content-list li {
margin-bottom: 12px;
line-height: 1.6;
color: var(--vehigo-text);
}
.highlight-box {
background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(78, 127, 180, 0.08) 100%);
border-left: 4px solid var(--vehigo-primary);
padding: 25px;
margin: 25px 0;
border-radius: 12px;
border: 1px solid var(--vehigo-border);
}
.highlight-box strong {
color: var(--vehigo-primary);
font-size: 1.1rem;
}
.contact-info {
background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
border: 2px solid #f59e0b;
border-radius: 16px;
padding: 30px;
margin: 30px 0;
}
.contact-info h3 {
color: #92400e;
margin-bottom: 20px;
font-size: 1.4rem;
font-weight: 600;
}
.contact-info p {
color: #92400e;
margin-bottom: 15px;
font-size: 1.05rem;
}
.contact-info a {
color: #92400e;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
}
.contact-info a:hover {
color: #7c2d12;
text-decoration: underline;
}
/* Footer Styles */
.footer {
background: var(--vehigo-card);
border-top: 1px solid var(--vehigo-border);
padding: 60px 0 30px;
margin-top: auto;
}
.footer-top {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-brand img {
height: 40px;
margin-bottom: 20px;
}
.footer-text {
color: var(--vehigo-text);
opacity: 0.8;
line-height: 1.6;
margin-bottom: 0;
}
.footer-list-title {
font-weight: 700;
color: var(--vehigo-text);
margin-bottom: 20px;
font-size: 1.1rem;
}
.footer-list {
list-style: none;
padding: 0;
}
.footer-list li {
margin-bottom: 12px;
}
.footer-link {
color: var(--vehigo-text);
opacity: 0.8;
text-decoration: none;
transition: all 0.3s ease;
}
.footer-link:hover {
color: var(--vehigo-primary);
opacity: 1;
padding-left: 5px;
}
.footer-bottom {
border-top: 1px solid var(--vehigo-border);
padding-top: 30px;
text-align: center;
}
.social-list {
display: flex;
justify-content: center;
gap: 20px;
list-style: none;
padding: 0;
margin-bottom: 20px;
}
.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
background: var(--vehigo-primary);
color: white;
border-radius: 50%;
text-decoration: none;
transition: all 0.3s ease;
font-size: 1.2rem;
}
.social-link:hover {
background: var(--vehigo-primary-3);
transform: translateY(-2px);
color: white;
}
.copyright {
color: var(--vehigo-text);
opacity: 0.7;
margin-bottom: 0;
}
.copyright a {
color: var(--vehigo-primary);
text-decoration: none;
}
.copyright a:hover {
text-decoration: underline;
}
/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
background: var(--vehigo-primary);
color: white;
border: none;
border-radius: 50%;
width: 56px;
height: 56px;
display: none;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: var(--shadow-1);
transition: all 0.3s ease;
z-index: 1000;
font-size: 1.2rem;
}
.back-to-top:hover {
background: var(--vehigo-primary-3);
transform: translateY(-2px);
box-shadow: var(--shadow-2);
}
/* Animations */
@keyframes fadeInBody {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.section-card {
animation: fadeInUp 0.6s ease-out;
}
/* Responsive Design */
@media (max-width: 1200px) {
.navbar-nav {
gap: 8px;
}
.nav-link {
padding: 0.4rem 0.8rem !important;
font-size: 0.9rem;
}
}
@media (max-width: 992px) {
.navbar-collapse {
background: var(--vehigo-card);
border-radius: 12px;
padding: 20px;
margin-top: 10px;
box-shadow: var(--shadow-2);
border: 1px solid var(--vehigo-border);
}
.nav-link {
text-align: center;
padding: 0.75rem 1rem !important;
}
.navbar-nav {
gap: 5px;
}
}
@media (max-width: 768px) {
.privacy-hero {
padding: 80px 0 40px;
}
.privacy-content {
padding: 0 15px 40px;
}
.section-card {
padding: 25px;
margin-bottom: 20px;
}
.section-title {
font-size: 1.5rem;
}
.subsection-title {
font-size: 1.2rem;
}
.content-text {
font-size: 1rem;
}
.footer-top {
grid-template-columns: 1fr;
gap: 30px;
}
.theme-toggle-btn,
.btn-vehigo {
width: 100%;
justify-content: center;
margin: 5px 0;
}
.back-to-top {
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
}
}
@media (max-width: 480px) {
.privacy-hero {
padding: 70px 0 30px;
}
.section-card {
padding: 20px;
}
.contact-info {
padding: 20px;
}
.navbar-brand img {
height: 32px;
}
}
/* 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; list-style-type: none; }
.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; }
.footer-list{list-style-type: none; }
.social-list{list-style-type: none;}
</style>
</head>
<body class="dark-theme">
<header class="header">
<nav class="navbar navbar-expand-xl container-fluid px-4 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">
<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>
<li class="nav-item">
<button id="themeToggle" class="btn btn-outline-secondary theme-toggle-btn" type="button">
<span class="label">Light</span>
</button>
</li>
<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><span></span>
</button>
</li>
</ul>
</div>
</nav>
</header>
<section class="privacy-hero">
<div class="container">
<h1 class="privacy-title">Privacy Policy</h1>
<p class="privacy-subtitle">Your privacy is important to us. Learn how we protect and handle your information.</p>
</div>
</section>
<main class="privacy-content">
<div class="container">
<div class="section-card">
<h2 class="section-title">1. Introduction</h2>
<p class="content-text">Welcome to VehiGo. We are committed to protecting your privacy and handling your data in an open and transparent manner. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website and use our car rental services.</p>
<div class="highlight-box">
<p><strong>Important:</strong> Please read this policy carefully. If you do not agree with the terms of this privacy policy, please do not access our services.</p>
</div>
</div>
<div class="section-card">
<h2 class="section-title">2. Information We Collect</h2>
<p class="content-text">We may collect information about you in a variety of ways. The information we may collect includes:</p>
<h3 class="subsection-title">Personal Data</h3>
<p class="content-text">Personally identifiable information, such as:</p>
<ul class="content-list">
<li>Your name, email address, and phone number</li>
<li>Shipping and billing addresses</li>
<li>Driver's license information</li>
<li>Payment information (credit card details, billing address)</li>
<li>Demographic information (age, gender, preferences)</li>
</ul>
<h3 class="subsection-title">Derivative Data</h3>
<p class="content-text">Information our servers automatically collect when you access our services:</p>
<ul class="content-list">
<li>IP address and browser type</li>
<li>Operating system and device information</li>
<li>Access times and pages viewed</li>
<li>Referring website addresses</li>
</ul>
<h3 class="subsection-title">Financial Data</h3>
<p class="content-text">Financial information related to your payment methods, including:</p>
<ul class="content-list">
<li>Credit card numbers and expiration dates</li>
<li>Bank account information</li>
<li>Payment history and transaction records</li>
</ul>
</div>
<div class="section-card">
<h2 class="section-title">3. How We Use Your Information</h2>
<p class="content-text">Having accurate information about you permits us to provide you with a smooth, efficient, and customized experience. Specifically, we may use information collected about you to:</p>
<ul class="content-list">
<li><strong>Account Management:</strong> Create and manage your VehiGo account</li>
<li><strong>Service Delivery:</strong> Process your car rental transactions and send related information</li>
<li><strong>Communication:</strong> Enable user-to-user communications and customer support</li>
<li><strong>Feedback:</strong> Request feedback and contact you about your use of our services</li>
<li><strong>Marketing:</strong> Deliver targeted advertising, promotions, and newsletters</li>
<li><strong>Support:</strong> Resolve disputes and troubleshoot problems</li>
<li><strong>Customer Service:</strong> Respond to product and customer service requests</li>
<li><strong>Legal Compliance:</strong> Comply with legal obligations and protect our rights</li>
</ul>
</div>
<div class="section-card">
<h2 class="section-title">4. Disclosure of Your Information</h2>
<p class="content-text">We may share information we have collected about you in certain situations:</p>
<h3 class="subsection-title">By Law or to Protect Rights</h3>
<p class="content-text">If we believe the release of information about you is necessary to respond to legal process, investigate potential violations of our policies, or protect the rights, property, and safety of others.</p>
<h3 class="subsection-title">Third-Party Service Providers</h3>
<p class="content-text">We may share your information with third parties that perform services for us, including:</p>
<ul class="content-list">
<li>Payment processing</li>
<li>Data analysis and storage</li>
<li>Email delivery services</li>
<li>Customer service support</li>
<li>Marketing assistance</li>
</ul>
<h3 class="subsection-title">Marketing Communications</h3>
<p class="content-text">With your consent, we may share your information with third parties for marketing purposes, as permitted by law.</p>
</div>
<div class="section-card">
<h2 class="section-title">5. Data Security</h2>
<p class="content-text">We implement appropriate security measures to protect your personal information against unauthorized access, alteration, disclosure, or destruction. These measures include:</p>
<ul class="content-list">
<li>SSL encryption for data transmission</li>
<li>Secure servers and databases</li>
<li>Regular security audits and updates</li>
<li>Access controls and authentication</li>
</ul>
</div>
<div class="section-card">
<h2 class="section-title">6. Your Rights</h2>
<p class="content-text">You have certain rights regarding your personal information:</p>
<ul class="content-list">
<li><strong>Access:</strong> Request access to your personal data</li>
<li><strong>Correction:</strong> Request correction of inaccurate data</li>
<li><strong>Deletion:</strong> Request deletion of your personal data</li>
<li><strong>Portability:</strong> Request transfer of your data to another service</li>
<li><strong>Objection:</strong> Object to processing of your personal data</li>
</ul>
</div>
<div class="section-card">
<h2 class="section-title">7. Contact Us</h2>
<div class="contact-info">
<h3>Privacy Questions?</h3>
<p>If you have questions or comments about this Privacy Policy, please contact us:</p>
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Phone:</strong> <a href="tel:1800100100">1800-100-100</a></p>
<p><strong>Address:</strong> VehiGo Privacy Team, Madhya Pradesh, India</p>
</div>
</div>
</div>
</main>
<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:[email protected]" 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>
<button class="back-to-top" onclick="scrollToTop()" aria-label="Back to top">
<ion-icon name="chevron-up-outline"></ion-icon>
</button>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Theme toggle sync with localStorage
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');
}
});
});
document.addEventListener('DOMContentLoaded', function() {
var yearSpan = document.getElementById('copyright-year');
if (yearSpan) {
yearSpan.textContent = new Date().getFullYear();
}
});
// Copyright year
const yearSpan = document.getElementById('copyright-year');
if (yearSpan) {
yearSpan.textContent = new Date().getFullYear();
}
// Back to top button
const backToTopBtn = document.querySelector('.back-to-top');
window.addEventListener('scroll', function() {
if (window.pageYOffset > 300) {
backToTopBtn.style.display = 'flex';
} else {
backToTopBtn.style.display = 'none';
}
});
});
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
</script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>