forked from ayush-that/FinVeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
careers.html
1647 lines (1471 loc) · 55.2 KB
/
careers.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
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
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>Carrers - FinVeda</title>
<meta name="description"
content="Explore engaging quizzes on finance and economics at Fin Veda. Test your knowledge and learn with interactive quizzes covering various topics." />
<meta name="author" content="Ayush Singh">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="./assets/images/favicon2.png" type="image/png" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/magnific-popup.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/LineIcons.css" />
<link rel="stylesheet" href="assets/css/font-awesome.min.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/default.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/quiz.css" />
<link rel="stylesheet" href="assets/css/popup.css" />
<link rel="stylesheet" href="./assets/css/index.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" />
<!-- Added the navbar.css file here so that the navbar looks nice and uniform in all pages -->
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="careers.css"> <!-- Link to careers.css -->
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #f76b45;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
main {
padding: 20px;
}
.job-posting {
border: 1px solid #ddd;
padding: 15px;
margin-bottom: 15px;
border-radius: 5px;
background-color: #fff;
}
button {
background: #f76b45;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background: #e65c39;
}
/* footer {
text-align: center;
padding: 20px;
background: #333;
color: white;
position: relative;
bottom: 0;
width: 100%;
} */
#progressBar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 8px;
background-color: #f76b45;
z-index: 9999;
}
* {
cursor: url('/assets/images/ads_click_24dp_000000_FILL0_wght400_GRAD0_opsz24.svg'), auto;
}
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(73, 232, 247, 0.466), rgba(141, 38, 172, 0.5));
transition: transform 0.1s, left 0.1s, top 0.1s;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999;
}
@media (max-width: 720px) {
.circle-container {
display: none;
}
}
.unique-popup-message {
position: fixed;
/* Change to fixed positioning */
top: 30px;
/* Adjust this value to be below the navbar */
right: 2px;
/* Adjust this value for the desired distance from the right edge */
width: 300px;
/* Adjust width as needed */
transform: translateX(0);
/* Center the popup horizontally */
background-color: #a4d8ff;
color: #131722;
padding: 11px;
border-radius: 5px;
text-align: center;
z-index: 1000;
box-sizing: border-box;
overflow: hidden;
/* Hide the expanding border animation */
position: relative;
}
.border-animation {
position: absolute;
bottom: 0;
left: 0;
height: 7px;
/* Same height as the border */
background-color: rgb(4, 0, 128);
width: 100%;
transform-origin: right;
/* Start shrinking from the right */
}
@keyframes borderAnimation {
from {
transform: scaleX(0);
/* Full width initially */
}
to {
transform: scaleX(1);
/* Shrink to zero width */
}
}
.social-icons {
text-align: left;
}
.social-icons a {
display: inline-flex;
justify-content: center;
align-items: center;
width: 2.1rem;
height: 2.1rem;
background-color: transparent;
border: 0.2rem solid #0890ff;
font-size: 1.1rem;
border-radius: 50%;
margin: 1rem 0.5rem 0.5rem 0;
transition: 0.3s ease;
color: #55ff00;
text-align: left;
}
.social-icons a:hover {
color: rgb(139, 249, 12);
transform: scale(1.3) translateY(-5px);
background-color: #0048ff;
box-shadow: 0 0 25px #03133c;
}
.or-sign-in-with {
margin: 20px 0;
font-size: 14px;
font-weight: bold;
color: #666;
text-align: center;
position: relative;
}
.or-sign-in-with::before {
content: "";
position: absolute;
top: 50%;
left: 0;
width: 35%;
border-top: 1px solid #ccc;
transform: translateX(-2%);
}
.or-sign-in-with::after {
content: "";
position: absolute;
top: 50%;
right: 0;
width: 35%;
border-top: 1px solid #ccc;
transform: translateX(2%);
}
.form-check {
display: flex;
align-items: center;
}
.form-check a {
margin-left: auto;
}
</style>
<body class="quizpage">
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function () {
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
circles.forEach(function (circle) {
circle.x = 0;
circle.y = 0;
});
window.addEventListener("mousemove", function (e) {
coords.x = e.pageX;
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = `${x - 12}px`;
circle.style.top = `${y - 12}px`;
circle.style.transform = `scale(${(circles.length - index) / circles.length})`;
const nextCircle = circles[index + 1] || circles[0];
circle.x = x;
circle.y = y;
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
});
</script>
<div id="progressBar"></div>
<script>
window.onscroll = function () {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("progressBar").style.width = scrolled + "%";
};
</script>
<div class="preloader">
<div class="loader">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<header class="header-area">
<div style="display: flex; justify-content: center;" class="navbar-area">
<div style="display: flex; justify-content: center;" class="container">
<div class="row">
<div style="display: flex; justify-content: center;;" class="">
<nav class="navbar navbar-expand-lg " style="display: flex;">
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button> -->
<div class="collapse navbar-collapse sub-menu-bar" id="navbarSupportedContent" style="margin: auto; margin-left: -5px;">
<div class="icon1">
<a href="./index.html">
<img src="assets/images/icon.webp" alt="icon.png">
</a>
</div>
<ul id="nav" class="navbar-nav ml-auto" style="margin: auto;">
<li class="nav-item">
<a class="page-scroll" href="./index.html" style="color: rgb(237, 242, 244);">Home 🏡</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./about.html" style="color: rgb(237, 242, 244);">About Us 📖</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./trends.html" style="color: rgb(237, 242, 244);">Trends 📈</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./tools/sip.html" style="color: rgb(237, 242, 244);">Tools 🔧</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./blog.html" style="color: rgb(237, 242, 244);">Blogs 📰</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./quiz.html" style="color: rgb(237, 242, 244);">Quiz 🤔</a>
</li>
<li class="nav-item">
<a class="page-scroll active-link" href="./careers.html" style="color: rgb(237, 242, 244);">Career 👔</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./contact.html" style="color: rgb(237, 242, 244);">Contact📞</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="./faq.html" style="color: rgb(237, 242, 244);">Help 🙋♂️</a>
</li>
<li class="nav-item no-underline">
<a class="main-btn navbar-btn"
style="padding: 2px 20px; color: rgb(237, 242, 244);animation-duration: 0.4s;animation-name: ease;"
data-scroll-nav="0" href="./loginPage.html">Login/Register 💻</a>
</li>
<li class="nav-item no-underline">
<button id="theme-toggle" class="theme-toggle" style="margin-right: 2px;">
🌙
</button>
</li>
</ul>
</div>
<script>
const toggleButton = document.getElementById('theme-toggle');
const body = document.body;
const currentTheme = localStorage.getItem('theme');
if (currentTheme === 'dark') {
body.classList.add('dark-mode');
toggleButton.classList.add('dark');
toggleButton.textContent = '🌞';
}
toggleButton.addEventListener('click', function () {
body.classList.toggle('dark-mode');
toggleButton.classList.toggle('dark');
// Update button icon based on mode
if (body.classList.contains('dark-mode')) {
toggleButton.textContent = '🌞'; // Light mode icon
localStorage.setItem('theme', 'dark');
} else {
toggleButton.textContent = '🌙'; // Dark mode icon
localStorage.setItem('theme', 'light');
}
});
</script>
</div>
<div class="">
<!-- Login Modal -->
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close" style="display: flex; justify-content: right;">×</span>
<div class="mt-3">
<h3 class="join"><i class="fa-solid fa-right-to-bracket"></i> Login to join us....</h3>
<form class="px-3 py-4" id="loginForm">
<div class="form-group">
<label class="d-flex">Username</label>
<input type="text" placeholder="Username" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Password</label>
<input type="password" placeholder="Password" class="form-control" required>
<button type="button" class="toggle-password-btn"><i class="fa-solid fa-eye"></i></button>
</div>
<div class="form-check d-flex">
<input type="checkbox" class="form-check-input me-1" style="margin-top: 0;">
<label class="form-check-label" style="margin-bottom: 0;">Remember me</label>
<a href="#" id="forgot-password" style="margin-left: 120px;">Forget Password?</a>
</div>
<div style="height: 20px;"></div>
<button class="main-btn w-100 mb-3" onclick="submitForm('loginForm')">Sign in</button>
<p class="text-center">Don't have an account? <a href="#" id="registerLink">Register</a></p>
<div class="or-sign-in-with text-center">
<p>Or sign in with</p>
</div>
<div class="social-icons mt-3">
<ul class="list-inline">
<li><a href="#" class="google" id="google-login"><i class="fa-brands fa-google"></i></a></li>
<li><a href="#" class="facebook" id="facebook-login"><i class="fa-brands fa-facebook-f"></i></a>
</li>
<li><a href="#" class="twitter" id="twitter-login"><i class="fa-brands fa-x-twitter"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<script>
// Add event listeners to the social media icons
document.getElementById('google-login').addEventListener('click', function () {
window.location.href = 'https://accounts.google.com/o/oauth2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=profile email';
});
document.getElementById('facebook-login').addEventListener('click', function () {
window.location.href = 'https://www.facebook.com/v13.0/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=public_profile email';
});
document.getElementById('twitter-login').addEventListener('click', function () {
window.location.href = 'https://twitter.com/i/oauth2/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=users.read';
});
</script>
<!-- Register Modal -->
<div id="registerModal" class="modal">
<div class="modal-content">
<span class="close" style="display: flex; justify-content: right;">×</span>
<div class="mt-3">
<h3 class="join"><i class="fa-solid fa-user"></i> Register to join us....</h3>
<form class="px-3 py-4" id="registerForm">
<div class="form-group">
<label class="d-flex">Email</label>
<input type="email" placeholder="Email" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Username</label>
<input type="text" placeholder="Username" class="form-control" required />
</div>
<div class="form-group">
<label class="d-flex">Password</label>
<input type="password" placeholder="Password" class="form-control" id="register-password" required
oninput="checkPasswordStrength()">
<button type="button" class="toggle-password-btn"
onclick="togglePasswordVisibility('register-password')">
<i class="fa-solid fa-eye"></i>
<i class="fa-solid fa-eye-slash" style="display: none;"></i>
</button>
</div>
<div id="password-meter" style="display: none; margin-top: 5px;">
<div id="meter"
style="height: 10px; background-color: #ccc; border-radius: 5px; transition: width 0.3s;"></div>
<div id="strength-text" style="margin-top: 5px; font-weight: bold;"></div>
</div>
</form>
<!-- Import zxcvbn library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/zxcvbn/4.4.2/zxcvbn.js"></script>
<script>
function checkPasswordStrength() {
const password = document.getElementById('register-password').value;
const meter = document.getElementById('meter');
const meterContainer = document.getElementById('password-meter');
const strengthText = document.getElementById('strength-text');
if (password) {
meterContainer.style.display = 'block'; // Show the meter when typing
const result = zxcvbn(password);
const score = result.score; // Score ranges from 0 to 4
// Set meter width and color based on score
meter.style.width = (score + 1) * 20 + '%'; // Convert score to percentage
meter.style.backgroundColor = getMeterColor(score);
strengthText.innerText = getStrengthText(score); // Update strength text
} else {
meterContainer.style.display = 'none'; // Hide the meter if no password
strengthText.innerText = ''; // Clear strength text
}
}
function getMeterColor(score) {
switch (score) {
case 0: return 'red'; // Weak
case 1: return 'orange'; // Fair
case 2: return 'yellow'; // Good
case 3: return 'blue'; // Strong
case 4: return 'green'; // Very Strong
default: return 'gray';
}
}
function getStrengthText(score) {
switch (score) {
case 0: return 'Very Weak';
case 1: return 'Weak';
case 2: return 'Fair';
case 3: return 'Strong';
case 4: return 'Very Strong';
default: return '';
}
}
function togglePasswordVisibility(id) {
const passwordInput = document.getElementById(id);
const eyeIcon = passwordInput.nextElementSibling;
if (passwordInput.type === 'password') {
passwordInput.type = 'text';
eyeIcon.children[0].style.display = 'none';
eyeIcon.children[1].style.display = 'inline';
} else {
passwordInput.type = 'password';
eyeIcon.children[0].style.display = 'inline';
eyeIcon.children[1].style.display = 'none';
}
}
</script>
<button class="main-btn mt-2 w-100 mb-3" onclick="submitForm('registerForm')">Register</button>
<p class="text-center">Already have an account? <a href="#" id="loginLink">Login</a></p>
<div class="or-sign-in-with text-center">
<p>Or sign up with</p>
</div>
<div class="social-icons mt-3">
<ul class="list-inline">
<li><a href="#" class="google" id="google-signup"><i class="fa-brands fa-google"></i></a></li>
<li><a href="#" class="facebook" id="facebook-signup"><i class="fa-brands fa-facebook-f"></i></a>
</li>
<li><a href="#" class="twitter" id="twitter-signup"><i class="fa-brands fa-twitter"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<script>
// Add event listeners to the social media icons
document.getElementById('google-signup').addEventListener('click', function () {
window.location.href = 'https://accounts.google.com/o/oauth2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=profile email';
});
document.getElementById('facebook-signup').addEventListener('click', function () {
window.location.href = 'https://www.facebook.com/v13.0/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=public_profile email';
});
document.getElementById('twitter-signup').addEventListener('click', function () {
window.location.href = 'https://twitter.com/i/oauth2/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT_URI&response_type=code&scope=users.read';
});
</script>
</div>
</nav>
<nav class="mobile-menu ">
<a class="page-scroll" href="./index.html">Home 🏡</a>
<a class="page-scroll" href="./about.html">About Us 📖</a>
<a class="page-scroll" href="./trends.html">Trends 📈</a>
<a class="page-scroll" href="./tools/sip.html">Tools 🔧</a>
<a class="page-scroll" href="./blog.html">Blogs 📰</a>
<a class="page-scroll active-link" href="./quiz.html">Quiz 🤔</a>
<a class="page-scroll main-btn" href="#" onclick="openModal()"
onmouseout="this.style.color='white'">Login/Register 💻</a>
<div class="mobile-menu__trigger" onclick="toggleMobileMenu()">
<span></span>
</div>
</nav>
<link href="./navbar.css" rel="stylesheet">
<script type="text/javascript" src="./navbar.js"></script>
</div>
</div>
</div>
</div>
<!-- removing intro section -->
<!-- <div id="home" class="header-hero bg_cover" style="background-image: url(../assets/images/banner-bg.svg)"> -->
<!-- <div class="container"> -->
<!-- <div class="row justify-content-center">
<div class="col-lg-8">
<div class="header-hero-content text-center">
<h3 class="header-sub-title wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="0.2s">
Say 👋🏼 to FinVeda
</h3>
<h2 class="header-title wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="0.5s">
your savvy financial companion
</h2>
<p class="text wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="0.8s">
Wanna learn how to grow your money to become rich? We have
made becoming a stock market Guru easy with our AI
powered finance advisor - <b>Arth Sathi 🤵🏻</b>
</p>
<a href="#" class="main-btn wow fadeInUp" data-wow-duration="1.3s" data-wow-delay="1.1s"
onclick="window.botpressWebChat.sendEvent({ type: 'show' }); return false;">
Chat with ArthaSathi 💬
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="header-hero-image text-center wow fadeIn" data-wow-duration="1.3s" data-wow-delay="1.4s">
<img src="../assets/images/header-hero.webp" alt="hero" />
</div>
</div>
</div>
</div>
<div id="particles-1" class="particles"></div>
</div> -->
</header>
<main>
<section><br><br>
<h2>Jobs in Finance</h2>
<!-- Search Bar -->
<div class="search-container">
<input type="text" id="jobSearch" placeholder="Search for jobs by title or keyword">
</div>
<div class="table-container">
<table class="jobs-table">
<thead>
<tr>
<th>Job Title</th>
<th>Salary</th>
<th>Qualification</th>
</tr>
</thead>
<tbody>
<tr onclick="openModal('Financial Analyst')">
<td data-label="Job Title">Financial Analyst</td>
<td data-label="Salary">$60,000 - $80,000</td>
<td data-label="Qualification">Bachelor's in Finance</td>
</tr>
<tr onclick="openModal('Investment Banker')">
<td data-label="Job Title">Investment Banker</td>
<td data-label="Salary">$100,000 - $200,000</td>
<td data-label="Qualification">Bachelor's in Finance, Economics, or Business</td>
</tr>
<tr onclick="openModal('Accountant')">
<td data-label="Job Title">Accountant</td>
<td data-label="Salary">$50,000 - $70,000</td>
<td data-label="Qualification">Bachelor's in Accounting</td>
</tr>
<tr onclick="openModal('Risk Manager')">
<td data-label="Job Title">Risk Manager</td>
<td data-label="Salary">$70,000 - $110,000</td>
<td data-label="Qualification">Bachelor's in Finance or Risk Management</td>
</tr>
<tr onclick="openModal('Financial Planner')">
<td data-label="Job Title">Financial Planner</td>
<td data-label="Salary">$60,000 - $90,000</td>
<td data-label="Qualification">Bachelor's in Finance or Business</td>
</tr>
<tr onclick="openModal('Compliance Officer')">
<td data-label="Job Title">Compliance Officer</td>
<td data-label="Salary">$55,000 - $85,000</td>
<td data-label="Qualification">Bachelor's in Finance, Business, or Law</td>
</tr>
<tr onclick="openModal('Portfolio Manager')">
<td data-label="Job Title">Portfolio Manager</td>
<td data-label="Salary">$80,000 - $150,000</td>
<td data-label="Qualification">Bachelor's in Finance or related field</td>
</tr>
<tr onclick="openModal('Market Research Analyst')">
<td data-label="Job Title">Market Research Analyst</td>
<td data-label="Salary">$50,000 - $70,000</td>
<td data-label="Qualification">Bachelor's in Marketing or Business</td>
</tr>
<tr onclick="openModal('Loan Officer')">
<td data-label="Job Title">Loan Officer</td>
<td data-label="Salary">$50,000 - $75,000</td>
<td data-label="Qualification">Bachelor's in Finance or Business</td>
</tr>
<tr onclick="openModal('Treasurer')">
<td data-label="Job Title">Treasurer</td>
<td data-label="Salary">$90,000 - $130,000</td>
<td data-label="Qualification">Bachelor's in Finance, Accounting, or Business</td>
</tr>
</tbody>
</table>
</div>
</section>
<main>
<section class="roadmap">
<h2 class="h2">Career Roadmap 🛣️</h2>
<div class="roadmap-step">
<div class="roadmap-title">Step 1: Pursue a Relevant Degree</div>
<p>Consider obtaining a degree in finance, accounting, economics, or business administration.</p>
</div>
<div class="roadmap-step">
<div class="roadmap-title">Step 2: Gain Experience</div>
<p>Look for internships or entry-level positions in finance to gain practical experience.</p>
</div>
<div class="roadmap-step">
<div class="roadmap-title">Step 3: Network</div>
<p>Attend finance-related events, workshops, and seminars to connect with professionals in the field.</p>
</div>
<div class="roadmap-step">
<div class="roadmap-title">Step 4: Get Certified</div>
<p>Consider pursuing professional certifications like CFA, CPA, or CFP to enhance your qualifications.</p>
</div>
<div class="roadmap-step">
<div class="roadmap-title">Step 5: Stay Informed</div>
<p>Keep up with the latest trends and developments in the finance industry through articles and news.</p>
</div>
</section>
<style>
.roadmap {
border: 10px solid white;
background: linear-gradient(135deg, #a492c5, #b39ddb); /* Gradient background for parent */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: background 0.5s ease;
}
.h2 {
font-weight: bolder;
font-size: 2.5rem;
text-align: center;
color: #fefeff; /* Dark purple color for main heading */
margin: 40px 0;
}
.roadmap-step {
background: linear-gradient(135deg, #98d1e3, #eeedeb); /* Light orange gradient */
border-radius: 8px;
padding: 15px;
margin: 10px 0;
position: relative;
overflow: hidden;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.roadmap-step:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.roadmap-title {
font-weight: bold;
color: #090909; /* Attractive orange-red color for headings */
font-size: 1.5em;
position: relative;
}
.roadmap-title::after {
content: "";
display: block;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #eac6bc, #fffaf5); /* Gradient underline */
position: absolute;
bottom: -8px;
left: 0;
transition: width 0.4s;
}
.roadmap-title:hover::after {
width: 100%;
}
.roadmap-step p {
color: #555; /* Dark gray for text */
margin: 10px 0 0;
transition: color 0.3s;
}
.roadmap-step:hover p {
color: #4b464a; /* Darker gray on hover */
}
/* Optional media query for responsiveness */
@media (max-width: 600px) {
.roadmap {
padding: 15px;
}
.roadmap-step {
padding: 10px;
}
}
</style>
</main>
<section class="books-section">
<h2>Recommended Books on Finance</h2>
<img style="position: absolute;left: 0px; mix-blend-mode:multiply;top: 2400px;" src="./assets/images/book-careers2.png" alt="photo">
<ul class="books-list">
<li>
<div class="book-info">
<div class="book-title" style="background-image: url('./assets/images/RICH-POOR.jpeg');">
<!-- <strong>"Rich Dad Poor Dad" by Robert Kiyosaki</strong> -->
</div>
<div class="book-description">
A classic on financial education and investing.
</div>
</div>
</li>
<li>
<div class="book-info">
<div class="book-title" style="background-image: url('./assets/images/The\ Intelligent\ Investor.jpeg');">
<!-- <strong>"The Intelligent Investor" by Benjamin Graham</strong> -->
</div>
<div class="book-description">
A must-read for aspiring investors.
</div>
</div>
</li>
<li>
<div class="book-info">
<div class="book-title" style="background-image: url('./assets/images/The\ Total\ Money\ Makeover.jpeg');">
<!-- <strong>"The Total Money Makeover" by Dave Ramsey</strong> -->
</div>
<div class="book-description">
A guide to personal finance and debt elimination.
</div>
</div>
</li>
<li>
<div class="book-info">
<div class="book-title" style="background-image: url('./assets/images/A\ Random\ Walk\ Down\ Wall\ Street.jpeg');">
<!-- <strong>"A Random Walk Down Wall Street" by Burton Malkiel</strong> -->
</div>
<div class="book-description">
Insights into market trends and investment strategies.
</div>
</div>
</li>
<li>
<div class="book-info">
<div class="book-title" style="background-image: url('./assets/images/The\ Millionaire\ Next\ Door.jpg');">
<!-- <strong>"The Millionaire Next Door" by Thomas J. Stanley</strong> -->
</div>
<div class="book-description">
Profiles habits and traits of wealthy individuals.
</div>
</div>
</li>
</ul>
</section>
</main>
<style>
/* start for books section */
/* Books Section */
.book-info{
display: flex;
justify-content: space-between;
}
/* Books Section */
.books-section {
padding: 2rem;
background-color: #e6f2ff; /* Light blue background */
border-radius: 12px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
max-width: 600px;
margin: 0 auto;
text-align: center;
transition: background-color 0.3s ease; /* Smooth background transition */
}
.books-section:hover {
background-color: #d0e8ff; /* Slightly darker blue on hover */
}
.books-section h2 {
font-family: 'Georgia', serif;
font-size: 1.8rem;
color: #333;
margin-bottom: 1.5rem;
}
/* Adjusted books-list for Flexbox */
.books-list {
display: flex; /* Enable flexbox */
flex-direction: column; /* Arrange items in a column */
align-items: center; /* Center items horizontally */
padding: 0;
margin: 0;
}
.books-list li {
display: flex; /* Use flex for each book item */
flex-direction: column; /* Align book title and description vertically */
align-items: center; /* Center items horizontally */
margin-bottom: 3rem; /* Increased spacing */
position: relative;
padding-bottom: 1rem;
transition: transform 0.3s ease; /* Smooth transition for scaling */
}
.books-list li:hover {
transform: scale(1.05); /* Slight scale up on hover */
}
/* Book Shape */
.book-title {
background-position-x: right;
background-size: contain;
background-repeat: no-repeat;
width: 140px;
height: 200px;
position: relative;
background-color: #f5e0c7;
padding: 1rem;
border-radius: 4px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
color: #2d2d2d;
font-family: 'Georgia', serif;
font-weight: bold;
margin-bottom: 1.5rem; /* Added space below the book */
text-align: left;
transform: rotate(-2deg);
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition effects */
}
.book-title:hover {
transform: rotate(-2deg) scale(1.05); /* Slight scale up on hover */
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
.book-title::before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 10px;
background-color: #d4a26d;
border-radius: 4px 0 0 4px;
}