forked from Ojas-Arora/SCD-Profile-Score
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
841 lines (773 loc) · 29.3 KB
/
faq.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FAQ - Ajivika</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="styles.css" /><link rel="stylesheet" href="navbar.css" />
<style>
:root {
--body-bg: antiquewhite;
--primary-color: #fff;
--heading-color: #d6a52b;
--text-color: #2c3e50;
--card-bg: #ffffff;
--card-shadow: rgba(0, 0, 0, 0.1);
--answer-text: #666;
}
body.dark {
--body-bg: #1a1a1a;
--primary-color: #262525;
--heading-color: rgb(229, 229, 61);
--text-color: #e0e0e0;
--card-bg: #2d2d2d;
--card-shadow: rgba(255, 255, 255, 0.1);
--answer-text: #b0b0b0;
}
/* Styles for floating image button */
.image-button {
position: fixed;
bottom: 20px;
left: 20px; /* Aligns the button to the left side */
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-button:hover {
transform: scale(1.1);
}
body {
background: var(--body-bg);
min-height: 100vh;
margin: 0;
font-family: 'Raleway', sans-serif;
color: var(--text-color);
}
/* FAQ Section Styling */
.faq-section {
max-width: 800px;
margin: 40px auto;
padding: 30px;
background: var(--primary-color);
border-radius: 15px;
box-shadow: 0 10px 30px var(--card-shadow);
backdrop-filter: blur(10px);
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}
.faq-section h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 30px;
color: var(--heading-color);
font-family: 'Montserrat', sans-serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
position: relative;
}
.faq-section h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: var(--heading-color);
border-radius: 2px;
}
.faq-item {
margin-bottom: 15px;
border: none;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
animation-delay: calc(0.2s * var(--i));
}
.faq-question {
font-family: 'Poppins', sans-serif;
padding: 20px;
cursor: pointer;
background: var(--card-bg);
color: var(--text-color);
font-size: 18px;
font-weight: 500;
border-radius: 8px;
box-shadow: 0 4px 15px var(--card-shadow);
transition: all 0.3s ease;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question::after {
content: '+';
font-size: 24px;
transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after {
transform: rotate(45deg);
}
.faq-question:hover {
background: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 6px 20px var(--card-shadow);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
background: var(--card-bg);
margin-top: 5px;
border-radius: 8px;
}
.faq-answer p {
margin: 0;
padding: 20px;
color: var(--answer-text);
line-height: 1.6;
}
.faq-item.open .faq-answer {
max-height: 300px;
box-shadow: 0 4px 15px var(--card-shadow);
}
.back-button {
display: flex;
align-items: center;
gap: 10px;
font-size: 16px;
color: var(--card-bg);
background: var(--heading-color);
border: none;
padding: 12px 25px;
cursor: pointer;
border-radius: 25px;
margin: 20px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px var(--card-shadow);
}
.back-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px var(--card-shadow);
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Parallax effect for background */
@media (hover: hover) {
body {
background-attachment: fixed;
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
}
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.image-icon {
width: 110px;
height: 110px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
.image-button1 {
background-color: transparent; /* Transparent background */
border: none;
border-radius: 50%;
padding: 0; /* No padding for image button */
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.image-button1:hover {
transform: scale(1.1);
}
.image-icon1 {
width: 68px;
height: 68px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 2;
position: relative;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2b2b28;
text-align: center;
padding: 10px 20px;
position: sticky;
height: 80px;
top: 0;
z-index: 1;
}
.navbar .logo {
gap: 13px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.navbar .logo h2 {
margin-top: 10px;
}
.navbar li span {
display: none;
opacity: 0;
transition: opacity 1.2s ease-in-out;
}
.navbar li {
display: flex;
}
.nav-links li a i {
color: #000;
}
.navbar li:hover span {
opacity: 1;
display: inline;
}
.theme-switch {
--toggle-size: 15px;
/* the size is adjusted using font-size,
this is not transform scale,
so you can choose any size */
--container-width: 5.625em;
--container-height: 2.5em;
--container-radius: 6.25em;
/* radius 0 - minecraft mode :) */
--container-light-bg: #3d7eae;
--container-night-bg: #1d1f2c;
--circle-container-diameter: 3.375em;
--sun-moon-diameter: 2.125em;
--sun-bg: #ecca2f;
--moon-bg: #c4c9d1;
--spot-color: #959db1;
--circle-container-offset: calc(
(var(--circle-container-diameter) - var(--container-height)) / 2 * -1
);
--stars-color: #fff;
--clouds-color: #f3fdff;
--back-clouds-color: #aacadf;
--transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
--circle-transition: 0.3s cubic-bezier(0, -0.02, 0.35, 1.17);
}
.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: var(--toggle-size);
}
.theme-switch__container {
width: var(--container-width);
height: var(--container-height);
background-color: var(--container-light-bg);
border-radius: var(--container-radius);
overflow: hidden;
cursor: pointer;
-webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
-webkit-transition: var(--transition);
-o-transition: var(--transition);
transition: var(--transition);
position: relative;
}
.theme-switch__container::before {
content: "";
position: absolute;
z-index: 1;
inset: 0;
-webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
border-radius: var(--container-radius);
}
.theme-switch__checkbox {
display: none;
}
.theme-switch__circle-container {
width: var(--circle-container-diameter);
height: var(--circle-container-diameter);
background-color: rgba(255, 255, 255, 0.1);
position: absolute;
left: var(--circle-container-offset);
top: var(--circle-container-offset);
border-radius: var(--container-radius);
-webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
0 0 0 0.625em rgba(255, 255, 255, 0.1),
0 0 0 1.25em rgba(255, 255, 255, 0.1);
box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
0 0 0 0.625em rgba(255, 255, 255, 0.1),
0 0 0 1.25em rgba(255, 255, 255, 0.1);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-transition: var(--circle-transition);
-o-transition: var(--circle-transition);
transition: var(--circle-transition);
pointer-events: none;
}
.theme-switch__sun-moon-container {
pointer-events: auto;
position: relative;
z-index: 2;
width: var(--sun-moon-diameter);
height: var(--sun-moon-diameter);
margin: auto;
border-radius: var(--container-radius);
background-color: var(--sun-bg);
-webkit-box-shadow: 0.062em 0.062em 0.062em 0em
rgba(254, 255, 239, 0.61) inset,
0em -0.062em 0.062em 0em #a1872a inset;
box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
0em -0.062em 0.062em 0em #a1872a inset;
-webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
overflow: hidden;
-webkit-transition: var(--transition);
-o-transition: var(--transition);
transition: var(--transition);
}
.theme-switch__moon {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
width: 100%;
height: 100%;
background-color: var(--moon-bg);
border-radius: inherit;
-webkit-box-shadow: 0.062em 0.062em 0.062em 0em
rgba(254, 255, 239, 0.61) inset,
0em -0.062em 0.062em 0em #969696 inset;
box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
0em -0.062em 0.062em 0em #969696 inset;
-webkit-transition: var(--transition);
-o-transition: var(--transition);
transition: var(--transition);
position: relative;
}
.theme-switch__spot {
position: absolute;
top: 0.75em;
left: 0.312em;
width: 0.75em;
height: 0.75em;
border-radius: var(--container-radius);
background-color: var(--spot-color);
-webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}
.theme-switch__spot:nth-of-type(2) {
width: 0.375em;
height: 0.375em;
top: 0.937em;
left: 1.375em;
}
.theme-switch__spot:nth-last-of-type(3) {
width: 0.25em;
height: 0.25em;
top: 0.312em;
left: 0.812em;
}
.theme-switch__clouds {
width: 1.25em;
height: 1.25em;
background-color: var(--clouds-color);
border-radius: var(--container-radius);
position: absolute;
bottom: -0.625em;
left: 0.312em;
-webkit-box-shadow: 0.937em 0.312em var(--clouds-color),
-0.312em -0.312em var(--back-clouds-color),
1.437em 0.375em var(--clouds-color),
0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color),
1.25em -0.062em var(--back-clouds-color),
2.937em 0.312em var(--clouds-color),
2em -0.312em var(--back-clouds-color),
3.625em -0.062em var(--clouds-color),
2.625em 0em var(--back-clouds-color),
4.5em -0.312em var(--clouds-color),
3.375em -0.437em var(--back-clouds-color),
4.625em -1.75em 0 0.437em var(--clouds-color),
4em -0.625em var(--back-clouds-color),
4.125em -2.125em 0 0.437em var(--back-clouds-color);
box-shadow: 0.937em 0.312em var(--clouds-color),
-0.312em -0.312em var(--back-clouds-color),
1.437em 0.375em var(--clouds-color),
0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color),
1.25em -0.062em var(--back-clouds-color),
2.937em 0.312em var(--clouds-color),
2em -0.312em var(--back-clouds-color),
3.625em -0.062em var(--clouds-color),
2.625em 0em var(--back-clouds-color),
4.5em -0.312em var(--clouds-color),
3.375em -0.437em var(--back-clouds-color),
4.625em -1.75em 0 0.437em var(--clouds-color),
4em -0.625em var(--back-clouds-color),
4.125em -2.125em 0 0.437em var(--back-clouds-color);
-webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
-o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}
.theme-switch__stars-container {
position: absolute;
color: var(--stars-color);
top: -100%;
left: 0.312em;
width: 2.75em;
height: auto;
-webkit-transition: var(--transition);
-o-transition: var(--transition);
transition: var(--transition);
}
/* actions */
.theme-switch__checkbox:checked + .theme-switch__container {
background-color: var(--container-night-bg);
}
.theme-switch__checkbox:checked
+ .theme-switch__container
.theme-switch__circle-container {
left: calc(
100% - var(--circle-container-offset) -
var(--circle-container-diameter)
);
}
.theme-switch__checkbox:checked
+ .theme-switch__container
.theme-switch__circle-container:hover {
left: calc(
100% - var(--circle-container-offset) -
var(--circle-container-diameter) - 0.187em
);
}
.theme-switch__circle-container:hover {
left: calc(var(--circle-container-offset) + 0.187em);
}
.theme-switch__checkbox:checked
+ .theme-switch__container
.theme-switch__moon {
-webkit-transform: translate(0);
-ms-transform: translate(0);
transform: translate(0);
}
.theme-switch__checkbox:checked
+ .theme-switch__container
.theme-switch__clouds {
bottom: -4.062em;
}
.theme-switch__checkbox:checked
+ .theme-switch__container
.theme-switch__stars-container {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
</style>
</head>
<body>
<div id="cursor"></div>
<!-- Navigation -->
<nav class="navbar">
<div class="logo">
<button class="image-button1" onclick="window.location.href='./index.html'">
<img src="./image.png" alt="Image Button1" class="image-icon1" />
</button>
<h2>Ajivika</h2>
</div>
<!-- Floating Image Button -->
<!-- hamburger menu -->
<button class="hamburger" onclick="toggleMenu()">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<!-- Navigation Links -->
<ul class="nav-links">
<li>
<a href="./index.html"
><i class="fas fa-home"></i><span>Home</span></a
>
</li>
<li>
<a href="./about.html"
><i class="fas fa-address-card"></i> <span>About Us</span></a
>
</li>
<li>
<a href="./contact.html"
><i class="fas fa-envelope"></i> <span>Contact Us</span></a
>
</li>
<li>
<a href="./pricing.html"
><i class="fas fa-comments"></i><span>Go Pro</span></a
>
</li>
<li>
<a href="./contributors/contributor.html"
><i class="fas fa-users"></i><span>Contributors</span></a
>
</li>
<!-- <li><a href="./login.html"><i class="fas fa-sign-in-alt"></i><span>Log In</span></a></li> -->
<li>
<a href="./register.html"
><i class="fas fa-user-plus"></i> <span>Register</span></a
>
</li>
<li>
<button class="translate-button" onclick="toggleTranslate()">
🌐
</button>
<div id="google_translate_element"></div>
</li>
<li>
<label class="theme-switch">
<input type="checkbox" class="theme-switch__checkbox" />
<div class="theme-switch__container">
<div class="theme-switch__clouds"></div>
<div class="theme-switch__stars-container">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 144 55"
fill="none"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M135.831 3.00688C135.055 3.85027 134.111 4.29946 133 4.35447C134.111 4.40947 135.055 4.85867 135.831 5.71123C136.607 6.55462 136.996 7.56303 136.996 8.72727C136.996 7.95722 137.172 7.25134 137.525 6.59129C137.886 5.93124 138.372 5.39954 138.98 5.00535C139.598 4.60199 140.268 4.39114 141 4.35447C139.88 4.2903 138.936 3.85027 138.16 3.00688C137.384 2.16348 136.996 1.16425 136.996 0C136.996 1.16425 136.607 2.16348 135.831 3.00688ZM31 23.3545C32.1114 23.2995 33.0551 22.8503 33.8313 22.0069C34.6075 21.1635 34.9956 20.1642 34.9956 19C34.9956 20.1642 35.3837 21.1635 36.1599 22.0069C36.9361 22.8503 37.8798 23.2903 39 23.3545C38.2679 23.3911 37.5976 23.602 36.9802 24.0053C36.3716 24.3995 35.8864 24.9312 35.5248 25.5913C35.172 26.2513 34.9956 26.9572 34.9956 27.7273C34.9956 26.563 34.6075 25.5546 33.8313 24.7112C33.0551 23.8587 32.1114 23.4095 31 23.3545ZM0 36.3545C1.11136 36.2995 2.05513 35.8503 2.83131 35.0069C3.6075 34.1635 3.99559 33.1642 3.99559 32C3.99559 33.1642 4.38368 34.1635 5.15987 35.0069C5.93605 35.8503 6.87982 36.2903 8 36.3545C7.26792 36.3911 6.59757 36.602 5.98015 37.0053C5.37155 37.3995 4.88644 37.9312 4.52481 38.5913C4.172 39.2513 3.99559 39.9572 3.99559 40.7273C3.99559 39.563 3.6075 38.5546 2.83131 37.7112C2.05513 36.8587 1.11136 36.4095 0 36.3545ZM56.8313 24.0069C56.0551 24.8503 55.1114 25.2995 54 25.3545C55.1114 25.4095 56.0551 25.8587 56.8313 26.7112C57.6075 27.5546 57.9956 28.563 57.9956 29.7273C57.9956 28.9572 58.172 28.2513 58.5248 27.5913C58.8864 26.9312 59.3716 26.3995 59.9802 26.0053C60.5976 25.602 61.2679 25.3911 62 25.3545C60.8798 25.2903 59.9361 24.8503 59.1599 24.0069C58.3837 23.1635 57.9956 22.1642 57.9956 21C57.9956 22.1642 57.6075 23.1635 56.8313 24.0069ZM81 25.3545C82.1114 25.2995 83.0551 24.8503 83.8313 24.0069C84.6075 23.1635 84.9956 22.1642 84.9956 21C84.9956 22.1642 85.3837 23.1635 86.1599 24.0069C86.9361 24.8503 87.8798 25.2903 89 25.3545C88.2679 25.3911 87.5976 25.602 86.9802 26.0053C86.3716 26.3995 85.8864 26.9312 85.5248 27.5913C85.172 28.2513 84.9956 28.9572 84.9956 29.7273C84.9956 28.563 84.6075 27.5546 83.8313 26.7112C83.0551 25.8587 82.1114 25.4095 81 25.3545ZM136 36.3545C137.111 36.2995 138.055 35.8503 138.831 35.0069C139.607 34.1635 139.996 33.1642 139.996 32C139.996 33.1642 140.384 34.1635 141.16 35.0069C141.936 35.8503 142.88 36.2903 144 36.3545C143.268 36.3911 142.598 36.602 141.98 37.0053C141.372 37.3995 140.886 37.9312 140.525 38.5913C140.172 39.2513 139.996 39.9572 139.996 40.7273C139.996 39.563 139.607 38.5546 138.831 37.7112C138.055 36.8587 137.111 36.4095 136 36.3545ZM101.831 49.0069C101.055 49.8503 100.111 50.2995 99 50.3545C100.111 50.4095 101.055 50.8587 101.831 51.7112C102.607 52.5546 102.996 53.563 102.996 54.7273C102.996 53.9572 103.172 53.2513 103.525 52.5913C103.886 51.9312 104.372 51.3995 104.98 51.0053C105.598 50.602 106.268 50.3911 107 50.3545C105.88 50.2903 104.936 49.8503 104.16 49.0069C103.384 48.1635 102.996 47.1642 102.996 46C102.996 47.1642 102.607 48.1635 101.831 49.0069Z"
fill="currentColor"
></path>
</svg>
</div>
<div class="theme-switch__circle-container">
<div class="theme-switch__sun-moon-container">
<div class="theme-switch__moon">
<div class="theme-switch__spot"></div>
<div class="theme-switch__spot"></div>
<div class="theme-switch__spot"></div>
</div>
</div>
</div>
</div>
</label>
</li>
</ul>
</nav>
<!-- Home Page Content -->
<script>
// hamburger menu js
function toggleMenu() {
const navLinks = document.querySelector(".nav-links");
navLinks.classList.toggle("active");
}
</script>
<button class="back-button" onclick="window.history.back();">
<i class="fas fa-arrow-left"></i>
</button>
<section class="faq-section">
<h2>Frequently Asked Questions</h2>
<div class="faq-item">
<div class="faq-question">What is Ajivika, and how can it help me?</div>
<div class="faq-answer">
<p>
Ajivika is a smart job recommendation portal designed to help job
seekers. It lets you create professional resumes, get personalized
job suggestions, find skill-boosting courses, and track your career
progress easily.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How does Ajivika recommend jobs?</div>
<div class="faq-answer">
<p>
Ajivika analyzes your profile, skills, and preferences to suggest
jobs that match your qualifications and interests. It ensures you
get relevant and personalized job recommendations.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can Ajivika help me improve my skills?</div>
<div class="faq-answer">
<p>
Yes! Ajivika suggests courses based on your goals and job interests.
You can also take skill assessments to validate your abilities and
earn certificates.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
Is there support if I have career-related questions?
</div>
<div class="faq-answer">
<p>
Absolutely! Ajivika has a chatbot to provide instant help for any
career-related queries, making your journey smoother.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
Does Ajivika only focus on big cities for job opportunities?
</div>
<div class="faq-answer">
<p>
No! Ajivika also highlights jobs in smaller towns and regions,
ensuring job seekers from all areas can find opportunities close to
home.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How can I create a professional resume using Ajivika?</div>
<div class="faq-answer">
<p>
Ajivika offers an intuitive resume builder with professional templates. Simply fill in your details,
select a template, and our AI-powered system will help optimize your resume with industry-specific
keywords and formatting.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">What types of skill assessments are available?</div>
<div class="faq-answer">
<p>
We offer technical assessments for programming languages, soft skills evaluations,
domain-specific tests for various industries, and personality assessments to help you
find the perfect career fit.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">How does Ajivika ensure job recommendations are relevant?</div>
<div class="faq-answer">
<p>
Our AI algorithm analyzes multiple factors including your skills, experience, location preferences,
and career goals. We also consider market trends and employer requirements to provide the most
relevant job matches.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Are the courses on Ajivika free?</div>
<div class="faq-answer">
<p>
Ajivika offers both free and premium courses. While many basic courses are available for free,
premium courses offer additional features like certificates, mentor support, and detailed assessments.
</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">Can employers post jobs on Ajivika?</div>
<div class="faq-answer">
<p>
Yes! Employers can create accounts to post job openings, search for candidates, and use our
AI-powered matching system to find the best talent for their organizations.
</p>
</div>
</div>
</section>
<script>
const faqItems = document.querySelectorAll(".faq-item");
faqItems.forEach((item) => {
item.querySelector(".faq-question").addEventListener("click", () => {
item.classList.toggle("open");
faqItems.forEach((otherItem) => {
if (otherItem !== item) {
otherItem.classList.remove("open");
}
});
});
});
</script>
<script>
// Hamburger menu toggle
function toggleMenu() {
const navLinks = document.querySelector(".nav-links");
navLinks.classList.toggle("active");
}
// Custom cursor movement
const cursor = document.getElementById("cursor");
document.addEventListener("mousemove", (e) => {
cursor.style.left = e.clientX + "px";
cursor.style.top = e.clientY + "px";
});
// Theme toggle
document.addEventListener('DOMContentLoaded', () => {
const themeToggle = document.querySelector('.theme-switch__checkbox');
const currentTheme = localStorage.getItem('theme');
if (currentTheme === 'dark') {
document.body.classList.add('dark');
document.body.classList.remove('light');
themeToggle.checked = true;
} else {
document.body.classList.add('light');
document.body.classList.remove('dark');
}
themeToggle.addEventListener('change', () => {
if (themeToggle.checked) {
document.body.classList.add('dark');
document.body.classList.remove('light');
localStorage.setItem('theme', 'dark');
} else {
document.body.classList.remove('dark');
document.body.classList.add('light');
localStorage.setItem('theme', 'light');
}
});
});
</script>
<script src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script>
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{
pageLanguage: 'en',
includedLanguages: 'en,hi,es,fr,de,it,ja,zh-CN',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE,
autoDisplay: false,
},
'google_translate_element'
);
}
function toggleTranslate() {
const translateElement = document.getElementById('google_translate_element');
if (translateElement.style.display === 'none' || translateElement.style.display === '') {
translateElement.style.display = 'block';
} else {
translateElement.style.display = 'none';
}
}
</script>
</body>
</html>