-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
990 lines (885 loc) · 33.2 KB
/
index.html
File metadata and controls
990 lines (885 loc) · 33.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./assets/images/logo.png" />
<title>Vitraag Vigyaan Aashray - Download Now</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont,
'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
:root {
--primary-color: #6366f1;
--primary-light: #818cf8;
--text-dark: #1f2937;
--text-light: #6b7280;
--background-light: #f9fafb;
--background-white: #ffffff;
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
body {
color: var(--text-dark);
line-height: 1.6;
background-color: var(--background-light);
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
padding: 2rem 0;
background-color: var(--background-white);
box-shadow: var(--shadow);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 7rem 0 4rem;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}
.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.hero-text {
flex: 1;
}
.hero-text h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
background: linear-gradient(
to right,
var(--primary-color),
var(--primary-light)
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-text p {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
max-width: 600px;
}
.hero-image {
flex: 1;
display: flex;
justify-content: center;
position: relative;
}
.phone-mockup {
max-width: 300px;
filter: drop-shadow(0 20px 25px -5px rgba(0, 0, 0, 0.1))
drop-shadow(0 10px 10px -5px rgba(0, 0, 0, 0.04));
transform: rotate(-5deg);
}
.download-buttons {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
.download-btn {
display: inline-flex;
align-items: center;
background-color: var(--text-dark);
color: white;
padding: 0.875rem 1.5rem;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid var(--text-dark);
}
.download-btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
}
.download-btn.primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
}
.download-btn.primary:hover {
background-color: var(--primary-light);
border-color: var(--primary-light);
}
.download-btn.secondary {
background-color: transparent;
color: var(--text-dark);
}
.download-btn.secondary:hover {
background-color: var(--text-dark);
color: white;
}
.download-btn img {
height: 24px;
margin-right: 10px;
}
.legal {
padding: 5rem 0;
background-color: var(--background-white);
}
.legal h2 {
text-align: center;
margin-bottom: 3rem;
font-size: 2rem;
color: var(--text-dark);
}
/* Desktop tabs style */
.legal-tabs {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
position: sticky;
top: 90px;
background-color: var(--background-white);
padding: 1rem 0;
z-index: 100;
border-radius: 8px;
box-shadow: var(--shadow);
}
.legal-tab {
color: var(--text-light);
text-decoration: none;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 500;
transition: all 0.2s;
border: 1px solid transparent;
}
.legal-tab:hover,
.legal-tab.active {
color: var(--primary-color);
background-color: rgba(99, 102, 241, 0.1);
border-color: rgba(99, 102, 241, 0.2);
}
/* Mobile dropdown style */
.legal-dropdown {
display: none;
position: sticky;
top: 90px;
z-index: 100;
margin-bottom: 2rem;
}
.dropdown-btn {
width: 100%;
padding: 0.875rem 1.5rem;
background-color: var(--background-white);
color: var(--text-dark);
border: none;
border-radius: 8px;
font-weight: 600;
text-align: left;
cursor: pointer;
box-shadow: var(--shadow);
display: flex;
justify-content: space-between;
align-items: center;
}
.dropdown-btn:after {
content: '▼';
font-size: 0.8rem;
margin-left: 0.5rem;
}
.dropdown-btn.active:after {
content: '▲';
}
.dropdown-content {
display: none;
background-color: var(--background-white);
border-radius: 0 0 8px 8px;
box-shadow: var(--shadow);
overflow: hidden;
}
.dropdown-content a {
display: block;
padding: 0.75rem 1.5rem;
color: var(--text-light);
text-decoration: none;
transition: all 0.2s;
}
.dropdown-content a:hover,
.dropdown-content a.active {
background-color: rgba(99, 102, 241, 0.1);
color: var(--primary-color);
}
.legal-content {
max-width: 800px;
margin: 0 auto;
background: var(--background-white);
border-radius: 12px;
padding: 2rem;
box-shadow: var(--shadow);
}
.legal-section {
display: none;
padding: 1rem 0;
}
.legal-section.active {
display: block;
}
.legal-section h3 {
font-size: 1.5rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}
.legal-section h4 {
font-size: 1.25rem;
margin: 1.5rem 0 0.75rem;
color: var(--text-dark);
}
.legal-section p,
.legal-section ul {
margin-bottom: 1rem;
color: var(--text-light);
}
.legal-section ul {
padding-left: 1.5rem;
}
.legal-section ul li {
margin-bottom: 0.5rem;
}
footer {
background-color: var(--text-dark);
color: white;
text-align: center;
padding: 2rem 0;
}
.social-links {
margin: 1rem 0;
}
.social-links a {
color: white;
margin: 0 10px;
font-size: 1.2rem;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.2s;
}
.social-links a:hover {
opacity: 1;
}
.contact-list {
list-style: none; /* Remove bullets */
padding: 0;
margin: 0;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
/* Style for list items */
.contact-list li {
margin-bottom: 10px;
}
/* Style for address */
.contact-list .address {
display: flex;
align-items: flex-start;
}
.contact-list .address strong {
white-space: nowrap;
margin-right: 10px;
font-weight: bold;
}
.contact-list .address div {
max-width: 400px; /* Prevents text from stretching too wide */
}
@media (max-width: 992px) {
.hero-text h1 {
font-size: 3rem;
}
}
@media (max-width: 768px) {
.hero-content {
flex-direction: column-reverse;
text-align: center;
}
.hero-text h1 {
font-size: 2.5rem;
}
.hero-text p {
font-size: 1.1rem;
margin-left: auto;
margin-right: auto;
}
.download-buttons {
justify-content: center;
}
.phone-mockup {
transform: rotate(0);
max-width: 250px;
}
/* Hide tabs and show dropdown on mobile */
.legal-tabs {
display: none;
}
.legal-dropdown {
display: block;
}
}
@media (max-width: 576px) {
.hero-text h1 {
font-size: 2rem;
}
.hero {
padding-top: 6rem;
}
.download-buttons {
flex-direction: column;
width: 100%;
}
.download-btn {
width: 100%;
justify-content: center;
}
.legal-content {
padding: 1.5rem;
}
.legal h2 {
font-size: 1.75rem;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<img
src="./assets/images/logo.png"
alt="App Logo"
style="height: 45px; width: 82px"
/>
</div>
</div>
</header>
<section class="hero" id="download">
<div class="container">
<div class="hero-content">
<div class="hero-text">
<h1>Vitraag Vigyaan Aashray</h1>
<p>Download our app today. Available on iOS and Android.</p>
<div class="download-buttons">
<a
href="https://play.google.com/store/apps/details?id=org.vitraagvigyaan.aashray"
target="_blank"
class="download-btn"
>
<img
src="./assets/images/googleplay.png"
alt="Google Play icon"
/>
Google Play
</a>
<a
href="https://apps.apple.com/in/app/vitraag-vigyaan-aashray/id6743924565"
target="_blank"
class="download-btn"
>
<img src="./assets/images/appstore.webp" alt="App Store icon" />
App Store
</a>
</div>
</div>
<div class="hero-image">
<img
src="./assets/images/image.png"
alt="App Preview"
class="phone-mockup"
/>
</div>
</div>
</div>
</section>
<section class="legal" id="legal">
<div class="container">
<h2>Legal Information</h2>
<!-- Desktop tabs -->
<div class="legal-tabs">
<a
href="#privacy"
class="legal-tab active"
data-target="privacy-section"
>Privacy Policy</a
>
<!-- <a href="#terms" class="legal-tab" data-target="terms-section">Terms of Service</a> -->
<a href="#contact" class="legal-tab" data-target="contact-section"
>Contact Us</a
>
</div>
<!-- Mobile dropdown -->
<div class="legal-dropdown">
<button class="dropdown-btn">Privacy Policy</button>
<div class="dropdown-content">
<a href="#privacy" class="active" data-target="privacy-section"
>Privacy Policy</a
>
<!-- <a href="#terms" data-target="terms-section">Terms of Service</a> -->
<a href="#contact" data-target="contact-section">Contact Us</a>
</div>
</div>
<div class="legal-content">
<div id="privacy-section" class="legal-section active">
<div class="container">
<h1>Privacy Policy</h1>
<p><strong>Last Updated:</strong> 28th March, 2025</p>
<p>
At <b>Shrimad Rajchandra Aatma Tatva Research Centre</b>, we are
committed to ensure that the data collected from everyone who
are associated with us—including volunteers, members, Guest and
event attendees is protected. The Organisation understands the
importance of and prioritizes the protection of sensitive
personal data or information. This Privacy Policy specifies the
manner in which sensitive personal data or information is
collected, received, stored, processed, disclosed, transferred,
dealt with, and handled by the organisation in relation to your
use of the datachef website (the “Website”), aashray website
(the "website") and software application platform for mobile
devices (the “App”) and related services.
</p>
<h2>1. Information We Collect</h2>
<p>We collect the following types of personal information:</p>
<ul>
<li>
<strong>Personal Identification Information:</strong> Name,
email address, phone number, postal address, PAN card details
and other similar details.
</li>
<li>
<strong>Donation Information:</strong> Details related to your
donations, including transaction history, amounts, and payment
information.
</li>
<li>
<strong>Interaction Information:</strong> Data related to your
interactions with our website, Mobile Application, emails,
events, or any other communications.
</li>
<li>
<strong>Non-Personal Information:</strong> We may
automatically collect non-personal information when you visit
our website, such as IP addresses, browser type, operating
system, and usage data (e.g., pages visited, time spent on the
site).
</li>
</ul>
<h2>2. How We Use Your Information</h2>
<p>
We use your personal information for the following purposes:
</p>
<ul>
<li>
<strong>To Provide Services:</strong> To enable us to
facilitate seamless services to Mumukshu’s, Guest and Visitors
with respect to Ashram Visit/ Stay and Meal services, Event
registrations, arrangement of transportation, donations or
community services or fund-raising campaign or any other
information sharing activity as may be required while using
the application/ website.
</li>
<li>
<strong>To Communicate with You:</strong> To send updates
about our activities, events, newsletters, and other
communications relevant to our mission.
</li>
<li>
<strong>To Process Donations:</strong> To process financial
contributions and provide receipts for donations.
</li>
<li>
<strong>To Improve Our Website and Services:</strong> To
analyse how users interact with our website and enhance your
user experience.
</li>
<li>
<strong>Legal and Regulatory Compliance:</strong> To comply
with legal obligations, resolve disputes, and enforce
agreements.
</li>
</ul>
<p>
Shrimad Rajchandra Aatma Tatva Research Centre will require the
export of your personal information to other Shrimad Rajchandra
Aatma Tatva Research Centre syndicate members or sister
Trust/entities in India and Worldwide in accordance with this
Statement to satisfy your request. Such export is a requirement
of providing the information to Shrimad Rajchandra Aatma Tatva
Research Centre.
</p>
<p>
Except as described in this Statement, Shrimad Rajchandra Aatma
Tatva Research Centre will not share the personal information
you provide to Shrimad Rajchandra Aatma Tatva Research Centre
with third parties not associated with-the Shrimad Rajchandra
Aatma Tatva Research Centre third parties without your
permission, unless to
</p>
<ul style="list-style-type: lower-roman">
<li>
respond to duly authorized information requests of police and
governmental authorities;
</li>
<li>
comply with any law, regulation, subpoena, or court order;
</li>
<li>
help prevent fraud or to enforce or protect the rights and
properties of Shrimad Rajchandra Aatma Tatva Research Centre
or its associated trust; or
</li>
<li>
protect the personal safety of Shrimad Rajchandra Aatma Tatva
Research Centre Devotees, followers, employees and third
parties on Shrimad Rajchandra Aatma Tatva Research Centre
property.
</li>
</ul>
<h2>3. Sharing Your Information</h2>
<p>
We respect your privacy and do not share, sell, or rent your
personal information to third parties for marketing purposes.
However, we may share your information in the following cases:
</p>
<ul>
<li>
<strong>With Service Providers:</strong> We may share your
information with trusted third-party service providers who
assist in conducting our operations, such as payment
processors, event organizers, for Community Service or fund
raising campaign by - Smilestones or email marketing
services.<br /><br />
When collecting or transferring sensitive information such as
credit card/ debit card/ UPI payments information we use a
variety of security technologies and procedures to help
protect your personal information from unauthorized access,
use, or disclosure. The personal information you provide us is
stored on computer systems located in controlled facilities
which have limited access. When we transmit highly
confidential information (such as credit card number or
password) over the internet, we protect it through the use of
encryption, such as the Secure Socket Layer (SSL) protocol.<br /><br />
Credit card/ debit card/ UPI payments numbers/ IDs are used
only for processing payments through Payment collecting
Gateways and are not used for other purposes. As part of
real-time payment processing, Shrimad Rajchandra Aatma Tatva
Research Centre subscribes to a fraud management service. This
service gives you and Shrimad Rajchandra Aatma Tatva Research
Centre an extra level of security to guard against credit card
fraud and to protect your financial data.
</li>
</ul>
<h2>4. Your Choices and Rights</h2>
<p>You have right to:</p>
<ul>
<li>
<strong>Access Your Information:</strong> You can request a
copy of the personal information we hold about you.
</li>
<li>
<strong>Correct or Update Your Information:</strong> If any of
your personal information is inaccurate or incomplete, you may
request to correct it.
</li>
<li>
<strong>Delete Your Information:</strong> You can request the
deletion of your personal data, subject to applicable laws and
regulations.
</li>
<li>
<strong>Opt-out of Communications:</strong> You may
unsubscribe from our newsletters or other marketing
communications at any time by following the opt-out
instructions in the email or contacting us directly.
</li>
</ul>
<h2>5. Consent</h2>
<p>
<strong>5.1</strong> By installing or accessing the Website/App
and registering for and using the Website/App, you agree to be
bound by and expressly consent to the terms and conditions of
this Privacy Policy. In the event that you do not agree with
and/or consent to the terms and conditions set out herein,
please do not install, use, or access the Website/App. You
hereby acknowledge and agree that by mere installation and use
of the Website/App, you expressly consent to the organisation’s
collection, receipt, storage, processing, disclosure, transfer,
dealing with and handling of the Customer Data in accordance
with this Privacy Policy.
</p>
<p>
<strong>5.2</strong> In the event that you wish to withdraw your
consent to the organisations collection, receipt, storage,
processing, disclosure, transfer, dealing with and handling of
the Customer Data, you may contact the the organisation at
<a href="mailto:tech@vitraagvigyaan.org"
>tech@vitraagvigyaan.org</a
>, informing the organisation of your withdrawal of consent to
its use as aforesaid of your Customer Data. You hereby
acknowledge and agree that in case you withdraw your consent to
the Organisation’s use and disclosure of your Data as provided
for in this Privacy Policy, the Organisation hereby expressly
reserves the right to discontinue provision of access to the
Website/App at its own sole discretion.
</p>
<h2>6. How We Protect Your Information</h2>
<p>
We implement a variety of security measures to maintain the
safety of your personal information when you donate or enter
personal data. These security measures include encryption,
access controls, and secure servers. However, no method of
transmission over the internet or electronic storage is 100%
secure, so while we strive to use commercially acceptable means
to protect your information, we cannot guarantee its absolute
security.
</p>
<h2>7. External Links</h2>
<p>
You hereby acknowledge and agree that when you use the
Website/App, there may be certain links which may direct you to
other websites or applications not maintained by the
Organisation (the “Third Party Website”). The manner in which
your Customer Data is collected, received, stored, processed,
disclosed, transferred, dealt with, and handled by such
Third-Party Websites is governed by the terms and conditions and
privacy policy of the respective Third-Party Website. You hereby
further acknowledge and agree that the Organisation has no
control over the Customer Data in such an event.
</p>
<p>
The Organisataion urges you to acquaint yourself with the terms
and conditions and privacy policy of every such Third Party
Website and in this regard, the Organisation hereby expressly
disclaims all liabilities with respect to the manner in which
the Third Party Website collects and/or uses the Customer Data.
</p>
<h2>8. Children's Privacy</h2>
<p>
Our services are not directed to children under the age of 13,
and we do not knowingly collect personal information from
children. If we learn that we have inadvertently collected
personal information from a child under 13, we will take steps
to delete such information. We encourage parents and guardians
to take an active role in their children’s online activities and
interests. Shrimad Rajchandra Aatma Tatva Research Centre
however takes no liability or responsibility for any mishap or
untoward incident of any nature whatsoever that may arise inter
alia from the use / activities and interests of children below
the age of 13 years.
</p>
<h2>9. Changes to This Privacy Policy</h2>
<p>
We may update this Privacy Policy from time to time. We will
notify you of any significant changes by posting the new policy
on our website with the effective date. We encourage you to
review this policy periodically for any updates.
</p>
<h2>10. Redressal of Grievances</h2>
<p>
If at any time you have questions or concerns with respect to
the Privacy Policy, please feel free to e-mail us at
<a href="mailto:tech@vitraagvigyaan.org"
>tech@vitraagvigyaan.org</a
>. If at any time you have grievances or complaints with regard
to the collection, receipt, storage, processing, disclosure,
transfer, dealing with and handling of Customer Data in a time
bound manner or otherwise, you may contact us at the above
mentioned email ID and designated person shall redress your
grievance/complaint within one (1) month from the date of
receipt of the grievance/complaint. While registering a
grievance/complaint, you are kindly requested to quote your
personal details for our reference to enable us to effectively
resolve your grievance/complaint.
</p>
<h2>11. Contact Us</h2>
<p>
If you have any questions or concerns about this Privacy Policy
or wish to exercise any of your rights, please contact us at:
</p>
<div class="contact-info">
<p>
<strong
>Shrimad Rajchandra Aatma Tatva Research Centre</strong
>
</p>
<p>
<strong>Address:</strong>
<a href="https://maps.app.goo.gl/uvCqXqVG4t9m1YQs7"
>Shrimad Rajchandra Aatma Tatva Research Center Rajnagar,
Parli , Post gothavade, Taluka Sudhagadh PALI - 410205,
MAHARASHTRA, India</a
>
</p>
<p>
<strong>Email:</strong>
<a href="mailto:tech@vitraagvigyaan.org"
>tech@vitraagvigyaan.org</a
>
</p>
<p>
<strong>Phone:</strong>
<a href="tel:+919820656510">+91 98206 56510</a>
</p>
</div>
</div>
</div>
<div id="contact-section" class="legal-section">
<h3>Contact Us</h3>
<p>
If you have any questions or concerns about our app or these legal
documents, please contact us:
</p>
<ul class="contact-list">
<li>
<strong>Email:</strong>
<a href="mailto:tech@vitraagvigyaan.org" target="_blank"
>tech@vitraagvigyaan.org</a
>
</li>
<li>
<strong>Phone:</strong>
<a href="tel:+919820656510" target="_blank">+91 9820656510</a>
</li>
<li class="address">
<strong>Address:</strong>
<div>
Shrimad Rajchandra Aatma Tatva Research Center<br />
Rajnagar, Parli, Post Gothavade,<br />
Taluka Sudhagadh<br />
PALI, MAHARASHTRA 410205<br />
India
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Vitraag Vigyaan. All rights reserved.</p>
<div class="social-links">
<a href="https://www.instagram.com/vitraag.vigyaan" target="_blank"
>Instagram</a
>
<a
href="https://www.linkedin.com/company/researchcentre-global"
target="_blank"
>LinkedIn</a
>
</div>
</div>
</footer>
<script>
// Handle tab and dropdown navigation
const tabs = document.querySelectorAll('.legal-tab, .dropdown-content a');
const sections = document.querySelectorAll('.legal-section');
const dropdownBtn = document.querySelector('.dropdown-btn');
const dropdownContent = document.querySelector('.dropdown-content');
// Function to set active tab and section
function setActiveTab(targetId) {
// Remove active class from all tabs and sections
tabs.forEach((t) => t.classList.remove('active'));
sections.forEach((s) => s.classList.remove('active'));
// Add active class to clicked tab
document
.querySelectorAll(`[data-target="${targetId}"]`)
.forEach((tab) => {
tab.classList.add('active');
});
// Update dropdown button text for mobile
const activeText = document.querySelector(
`.dropdown-content a[data-target="${targetId}"]`
).textContent;
dropdownBtn.textContent = activeText;
// Show corresponding section
document.getElementById(targetId).classList.add('active');
}
tabs.forEach((tab) => {
tab.addEventListener('click', (e) => {
e.preventDefault();
const targetId = tab.getAttribute('data-target');
setActiveTab(targetId);
// Update URL hash without scrolling
history.pushState(null, null, tab.getAttribute('href'));
// Hide dropdown menu after selection on mobile
dropdownContent.style.display = 'none';
dropdownBtn.classList.remove('active');
});
});
// Toggle dropdown menu on mobile
dropdownBtn.addEventListener('click', () => {
if (dropdownContent.style.display === 'block') {
dropdownContent.style.display = 'none';
dropdownBtn.classList.remove('active');
} else {
dropdownContent.style.display = 'block';
dropdownBtn.classList.add('active');
}
});
// Close dropdown when clicking outside
document.addEventListener('click', (e) => {
if (!e.target.closest('.legal-dropdown')) {
dropdownContent.style.display = 'none';
dropdownBtn.classList.remove('active');
}
});
// Check for hash on page load
function checkHash() {
const hash = window.location.hash;
if (hash) {
const targetTab = document.querySelector(`[href="${hash}"]`);
if (targetTab) {
const targetId = targetTab.getAttribute('data-target');
setActiveTab(targetId);
}
}
}
window.addEventListener('load', checkHash);
window.addEventListener('hashchange', checkHash);
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener('click', function (e) {
if (
this.getAttribute('href').length > 1 &&
!this.closest('.legal-tabs, .dropdown-content')
) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 100,
behavior: 'smooth'
});
}
}
});
});
</script>
</body>
</html>