-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.html
1188 lines (1164 loc) · 91.5 KB
/
about-us.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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHX88MXWW4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-YHX88MXWW4');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1195438021979002"
crossorigin="anonymous"></script>
<script async src="https://fundingchoicesmessages.google.com/i/pub-1195438021979002?ers=1"
nonce="BjSR2tWXwNhufsw9vylkYQ"></script>
<script
nonce="BjSR2tWXwNhufsw9vylkYQ">(function () { function signalGooglefcPresent() { if (!window.frames['googlefcPresent']) { if (document.body) { const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe); } else { setTimeout(signalGooglefcPresent, 0); } } } signalGooglefcPresent(); })();</script>
<!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://nivesguru.in"
},{
"@type": "ListItem",
"position": 2,
"name": "About Us | Nivesguru | Free Investment Calculator for India",
"item": "https://nivesguru.in/about-us"
}]
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Nivesguru | Investment Calculator - Plan Financial Future",
"image": [
"https://nivesguru.in/nivesguru-investment-calculator-about-us-1st.svg",
"https://nivesguru.in/nivesguru-investment-calculator-about-us.svg",
"https://nivesguru.in/nivesguru-investment-calculator-about-us-2nd.svg",
"https://nivesguru.in/hritick.webp",
"https://nivesguru.in/anupam.webp"
],
"priceRange": "$$$",
"telephone": "(947) 446-0058",
"email": "[email protected]",
"address": {
"@type": "PostalAddress",
"streetAddress": "Metiari",
"addressLocality": "Protapnagar",
"addressRegion": "West Bengal",
"addressCountry": "IN",
"postalCode": "743330"
},
"url": "https://nivesguru.in/about-us"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"headline": "About Us | Nivesguru | Free Investment Calculator for India",
"url": "https://nivesguru.in/about-us",
"author": {
"@type": "Person",
"name": "Nivesguru",
"url": "https://anupammondal.in"
},
"image": "https://nivesguru.in/nivesguru-investment-calculator1.svg",
"articleSection": "Welcome to Nivesguru a website dedicated to providing expert financial advice and resources for individuals and businesses alike. Our team of experienced financial professionals is committed to helping you achieve your financial goals through a personalized and holistic approach. At Nivesguru, we understand that each person's financial situation is unique. That's why we offer a range of services, including financial planning, investment management, tax planning, and retirement planning, among others. Our team works closely with each client to develop a customized financial plan that takes into account their unique goals, risk tolerance, and financial situation",
"articleBody": "What are we Provide? Our web development services are tailored to meet the needs of businesses looking to establish or enhance their online presence. Our team of experienced developers works with the latest technologies and best practices to create high-performance, responsive, and user-friendly websites that attract and engage visitors. Search Engine Optimization (SEO) is critical to the success of any online business. Our SEO services are designed to help businesses improve their online visibility and search engine rankings, resulting in increased website traffic and revenue. Our digital marketing services are designed to help businesses reach their target audience and achieve their marketing goals through a variety of online channels",
"publisher": {
"@type": "Organization",
"name": "Nivesguru"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "APY Calculator online for Atal Pension Yojana by Nivesguru",
"url": "https://nivesguru.in/apy-calculator",
"logo": "https://nivesguru.in/maskable_icon_x192.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+91-938-239-9893",
"contactType": "customer service",
"areaServed": "IN"
}],
"image": [
"https://nivesguru.in/nivesguru-investment-calculator.svg"
],
"sameAs": [
"https://nivesguru.in",
"https://www.facebook.com/nivesguru",
"https://instagram.com/niveshguru_official",
"https://www.youtube.com/@nivesguru-india",
"https://twitter.com/Nivesguru",
"https://www.linkedin.com/company/nivesguru"
]
}
</script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="manifest" href="manifest.json">
<link rel="canonical" href="https://nivesguru.in/about-us">
<!-- Favicon -->
<link rel="alternate" href="https://nivesguru.in/about-us" hreflang="en" />
<link rel="alternate" href="https://nivesguru.in/bn/about-us" hreflang="bn" />
<link rel="alternate" href="https://nivesguru.in/hi/about-us" hreflang="hi" />
<link rel="alternate" href="https://nivesguru.in/about-us" hreflang="x-default" />
<!-- Primary Meta Tags -->
<title>About Us | Nivesguru | Free Investment Calculator for India</title>
<meta name="title" content="About Us | Nivesguru | Free Investment Calculator for India">
<meta name="description"
content="Indian Government started Digital India initiative and on the 75th Anniversary of Indian Independence, Team Nivesguru celebrating Azadi Ka Amrit Mahotsav">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nivesguru.in/about-us">
<meta property="og:title" content="About Us | Nivesguru | Free Investment Calculator for India">
<meta property="og:description"
content="Indian Government started Digital India initiative and on the 75th Anniversary of Indian Independence, Team Nivesguru celebrating Azadi Ka Amrit Mahotsav">
<meta property="og:image" content="https://nivesguru.in/nivesguru.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Nivesguru">
<meta property="twitter:url" content="https://nivesguru.in/about-us">
<meta property="twitter:title" content="About Us | Nivesguru | Free Investment Calculator for India">
<meta property="twitter:description"
content="Indian Government started Digital India initiative and on the 75th Anniversary of Indian Independence, Team Nivesguru celebrating Azadi Ka Amrit Mahotsav">
<meta property="twitter:image" content="https://nivesguru.in/nivesguru.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
nav.navbar {
background-color: #00000077;
}
a.navbar-brand img {
margin-top: -5px;
}
nav.navbar {
background-color: #00000077;
}
.text-justify {
text-align: justify;
}
header,
.bg-nivesguru {
background-image: url("data:image/svg+xml,%3Csvg id='visual' viewBox='0 0 960 540' width='960' height='540' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Crect x='0' y='0' width='960' height='540' fill='%23ffffff'%3E%3C/rect%3E%3Cdefs%3E%3ClinearGradient id='grad1_0' x1='43.8%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad1_1' x1='43.8%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%237858d0' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad1_2' x1='43.8%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%23a98de1' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%237858d0' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad1_3' x1='43.8%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%23a98de1' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%23d5c5f1' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad1_4' x1='43.8%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%23ffffff' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%23d5c5f1' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad2_0' x1='0%25' y1='100%25' x2='56.3%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad2_1' x1='0%25' y1='100%25' x2='56.3%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%237858d0' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%233421bf' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad2_2' x1='0%25' y1='100%25' x2='56.3%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%237858d0' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%23a98de1' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad2_3' x1='0%25' y1='100%25' x2='56.3%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%23d5c5f1' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%23a98de1' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cdefs%3E%3ClinearGradient id='grad2_4' x1='0%25' y1='100%25' x2='56.3%25' y2='0%25'%3E%3Cstop offset='14.444444444444446%25' stop-color='%23d5c5f1' stop-opacity='1'%3E%3C/stop%3E%3Cstop offset='85.55555555555554%25' stop-color='%23ffffff' stop-opacity='1'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg transform='translate(960, 540)'%3E%3Cpath d='M-351 0C-342.3 -20.7 -333.6 -41.4 -332.5 -66.1C-331.4 -90.9 -337.9 -119.7 -310.4 -128.6C-283 -137.4 -221.6 -126.3 -192.1 -128.3C-162.6 -130.4 -164.9 -145.7 -166.9 -166.9C-168.9 -188.1 -170.5 -215.3 -167.2 -250.3C-164 -285.3 -155.9 -328.1 -134.3 -324.3C-112.7 -320.5 -77.7 -270.1 -53.1 -266.8C-28.4 -263.5 -14.2 -307.2 0 -351L0 0Z' fill='%23eae2f8'%3E%3C/path%3E%3Cpath d='M-280.8 0C-273.8 -16.5 -266.9 -33.1 -266 -52.9C-265.1 -72.7 -270.3 -95.8 -248.3 -102.9C-226.4 -109.9 -177.3 -101 -153.7 -102.7C-130 -104.3 -131.9 -116.5 -133.5 -133.5C-135.1 -150.5 -136.4 -172.2 -133.8 -200.2C-131.2 -228.2 -124.7 -262.5 -107.5 -259.4C-90.2 -256.4 -62.2 -216.1 -42.5 -213.4C-22.7 -210.8 -11.4 -245.8 0 -280.8L0 0Z' fill='%23bfa9e9'%3E%3C/path%3E%3Cpath d='M-210.6 0C-205.4 -12.4 -200.2 -24.8 -199.5 -39.7C-198.8 -54.5 -202.7 -71.8 -186.3 -77.1C-169.8 -82.5 -133 -75.8 -115.2 -77C-97.5 -78.2 -98.9 -87.4 -100.1 -100.1C-101.3 -112.9 -102.3 -129.2 -100.3 -150.2C-98.4 -171.2 -93.5 -196.8 -80.6 -194.6C-67.6 -192.3 -46.6 -162.1 -31.8 -160.1C-17.1 -158.1 -8.5 -184.3 0 -210.6L0 0Z' fill='%239172d9'%3E%3C/path%3E%3Cpath d='M-140.4 0C-136.9 -8.3 -133.4 -16.5 -133 -26.5C-132.6 -36.4 -135.1 -47.9 -124.2 -51.4C-113.2 -55 -88.6 -50.5 -76.8 -51.3C-65 -52.2 -66 -58.3 -66.8 -66.8C-67.5 -75.2 -68.2 -86.1 -66.9 -100.1C-65.6 -114.1 -62.4 -131.2 -53.7 -129.7C-45.1 -128.2 -31.1 -108 -21.2 -106.7C-11.4 -105.4 -5.7 -122.9 0 -140.4L0 0Z' fill='%235b3dc8'%3E%3C/path%3E%3Cpath d='M-70.2 0C-68.5 -4.1 -66.7 -8.3 -66.5 -13.2C-66.3 -18.2 -67.6 -23.9 -62.1 -25.7C-56.6 -27.5 -44.3 -25.3 -38.4 -25.7C-32.5 -26.1 -33 -29.1 -33.4 -33.4C-33.8 -37.6 -34.1 -43.1 -33.4 -50.1C-32.8 -57.1 -31.2 -65.6 -26.9 -64.9C-22.5 -64.1 -15.5 -54 -10.6 -53.4C-5.7 -52.7 -2.8 -61.4 0 -70.2L0 0Z' fill='%233421bf'%3E%3C/path%3E%3C/g%3E%3Cg transform='translate(0, 0)'%3E%3Cpath d='M351 0C291.2 12.2 231.4 24.3 226.6 45.1C221.7 65.8 271.8 95.2 290.1 120.2C308.4 145.2 295 165.9 286.9 191.7C278.7 217.5 275.9 248.4 248.2 248.2C220.5 247.9 168 216.5 137.8 206.2C107.6 195.9 99.7 206.8 89.2 215.3C78.6 223.7 65.4 229.8 50.1 252.1C34.8 274.3 17.4 312.6 0 351L0 0Z' fill='%23eae2f8'%3E%3C/path%3E%3Cpath d='M280.8 0C233 9.7 185.1 19.5 181.2 36.1C177.4 52.7 217.4 76.1 232.1 96.1C246.7 116.1 236 132.7 229.5 153.3C223 174 220.7 198.8 198.6 198.6C176.4 198.4 134.4 173.2 110.2 165C86.1 156.7 79.8 165.4 71.3 172.2C62.9 179 52.4 183.9 40.1 201.6C27.9 219.4 13.9 250.1 0 280.8L0 0Z' fill='%23bfa9e9'%3E%3C/path%3E%3Cpath d='M210.6 0C174.7 7.3 138.9 14.6 135.9 27C133 39.5 163.1 57.1 174.1 72.1C185.1 87.1 177 99.5 172.1 115C167.2 130.5 165.5 149.1 148.9 148.9C132.3 148.8 100.8 129.9 82.7 123.7C64.5 117.5 59.8 124.1 53.5 129.2C47.2 134.2 39.3 137.9 30.1 151.2C20.9 164.6 10.5 187.6 0 210.6L0 0Z' fill='%239172d9'%3E%3C/path%3E%3Cpath d='M140.4 0C116.5 4.9 92.6 9.7 90.6 18C88.7 26.3 108.7 38.1 116 48.1C123.4 58.1 118 66.3 114.7 76.7C111.5 87 110.4 99.4 99.3 99.3C88.2 99.2 67.2 86.6 55.1 82.5C43 78.4 39.9 82.7 35.7 86.1C31.5 89.5 26.2 91.9 20.1 100.8C13.9 109.7 7 125.1 0 140.4L0 0Z' fill='%235b3dc8'%3E%3C/path%3E%3Cpath d='M70.2 0C58.2 2.4 46.3 4.9 45.3 9C44.3 13.2 54.4 19 58 24C61.7 29 59 33.2 57.4 38.3C55.7 43.5 55.2 49.7 49.6 49.6C44.1 49.6 33.6 43.3 27.6 41.2C21.5 39.2 19.9 41.4 17.8 43.1C15.7 44.7 13.1 46 10 50.4C7 54.9 3.5 62.5 0 70.2L0 0Z' fill='%233421bf'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}
.wave1 {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0 224L24 234.7C48 245 96 267 144 256C192 245 240 203 288 165.3C336 128 384 96 432 90.7C480 85 528 107 576 128C624 149 672 171 720 186.7C768 203 816 213 864 234.7C912 256 960 288 1008 266.7C1056 245 1104 171 1152 165.3C1200 160 1248 224 1296 224C1344 224 1392 160 1416 128L1440 96L1440 320L1416 320C1392 320 1344 320 1296 320C1248 320 1200 320 1152 320C1104 320 1056 320 1008 320C960 320 912 320 864 320C816 320 768 320 720 320C672 320 624 320 576 320C528 320 480 320 432 320C384 320 336 320 288 320C240 320 192 320 144 320C96 320 48 320 24 320L0 320Z'%3E%3C/path%3E%3C/svg%3E");
background-position: bottom center;
background-repeat: no-repeat;
}
.bg-duo {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
.right-dark-strip-bg {
background: rgb(255, 255, 255);
background: linear-gradient(225deg, rgba(255, 255, 255, 1) 80%, rgb(8 85 102) 80%, rgb(19 67 100) 100%);
}
a {
text-decoration: none;
}
h1,
h2,
ul li a {
color: rgba(0, 17, 105, 1);
}
ul li {
list-style: none;
}
a small,
a svg {
display: block;
margin: 0 auto;
text-align: center;
}
a small {
font-size: .6rem;
}
a.nav-link {
transition: none;
}
#myChart {
display: block;
margin: auto;
width: 100%;
max-width: 340px
}
.card div.ico-flip svg {
transition: 0.5s;
padding: 10px;
border-radius: 50%;
}
.card:hover div.ico-flip svg {
transform: rotateY(180deg);
/* color: #ffffff; */
background-color: #ffc107;
}
html {
scroll-behavior: smooth;
}
#section1 {
padding: 10px;
}
#section2 {
padding: 10px;
}
#section3 {
padding: 10px;
}
</style>
</head>
<body>
<header>
<div class="wave1">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand text-white fw-bold" href="./" title="Nivesguru">
<img src="favicon-32x32.png" width="32" height="32"
class="d-inline-block align-text-top rounded-circle" alt="Nivesguru Logo"
title="Nivesguru Logo">
<p class="d-inline-block h4">Nivesguru</p>
</a>
<button class="navbar-toggler shadow-none border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-grid-fill" viewBox="0 0 16 16">
<path
d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3z" />
</svg>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto fw-bold mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Investment Calculators
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item"
href="senior-citizens-savings-scheme-scss-calculator">SCSS Calculator</a>
</li>
<li><a class="dropdown-item"
href="post-office-monthly-income-scheme-mis-calculator">MIS Calculator</a>
</li>
<li><a class="dropdown-item"
href="mahila-samman-savings-certificate-mssc-calculator">MSSC Calculator</a>
</li>
<li><a class="dropdown-item" href="post-office-time-deposit-td-calculator">TD
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="sgb-calculator">SGB Calculator</a></li>
<li><a class="dropdown-item" href="kvp-calculator">KVP
Calculator</a></li>
<li><a class="dropdown-item" href="national-savings-certificate-nsc-calculator">NSC
Calculator</a></li>
<li><a class="dropdown-item" href="sukanya-samriddhi-yojana-ssy-calculator">SSY
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="apy-calculator">APY
Calculator</a></li>
<li><a class="dropdown-item" href="national-pension-system-nps-calculator">NPS
Calculator</a></li>
<li><a class="dropdown-item" href="ppf-calculator">PPF
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item"
href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator">PMJJBY
Calculator</a></li>
<li><a class="dropdown-item"
href="pradhan-mantri-suraksha-bima-yojana-pmsby-calculator">PMSBY
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Finance Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="income-tax-calculator">Income Tax Calculator</a>
</li>
<li><a class="dropdown-item" href="gst-calculator">GST Calculator</a></li>
<li><a class="dropdown-item" href="simple-interest-calculator">Simple Interest
Calculator</a></li>
<li><a class="dropdown-item" href="service-tax-calculator">Service Tax Calculator</a>
</li>
<li><a class="dropdown-item" href="capital-gain-tax-calculator">Capital Gain Tax
Calculator</a></li>
<li><a class="dropdown-item" href="tds-calculator">TDS Calculator</a></li>
<li><a class="dropdown-item" href="vat-calculator">VAT Calculator</a></li>
<li><a class="dropdown-item"
href="systematic-investment-plan-sip-return-calculator">SIP
Calculator</a></li>
<li><a class="dropdown-item" href="inflation-calculator-india">Inflation
Calculator</a></li>
<li><a class="dropdown-item" href="emi-calculator-online">EMI Calculator</a></li>
<li><a class="dropdown-item" href="swp-calculator-online">SWP Calculator</a></li>
<li><a class="dropdown-item" href="compound-interest-calculator">Compound Interest
Calculator</a></li>
<li><a class="dropdown-item" href="lumpsum-calculator-online">Lumpsum
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Savings Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="fixed-deposit-fd-calculator">FD Calculator</a></li>
<li><a class="dropdown-item" href="bob-fd-calculator">BOB FD Calculator</a></li>
<li><a class="dropdown-item" href="boi-fd-calculator">BOI FD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-fd-calculator">PNB FD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-fd-calculator">SBI FD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-fd-calculator">UBI FD Calculator</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="rd-calculator">RD Calculator</a></li>
<li><a class="dropdown-item" href="bob-rd-calculator">BOB RD Calculator</a></li>
<li><a class="dropdown-item" href="boi-rd-calculator">BOI RD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-rd-calculator">PNB RD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-rd-calculator">SBI RD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-rd-calculator">UBI RD Calculator</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="sb-calculator">SB Calculator</a></li>
<li><a class="dropdown-item" href="bob-sb-calculator">BOB SB Calculator</a></li>
<li><a class="dropdown-item" href="boi-sb-calculator">BOI SB Calculator</a></li>
<li><a class="dropdown-item" href="pnb-sb-calculator">PNB SB Calculator</a></li>
<li><a class="dropdown-item" href="sbi-sb-calculator">SBI SB Calculator</a></li>
<li><a class="dropdown-item" href="ubi-sb-calculator">UBI SB Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
About
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="about-us">About us</a></li>
<li><a class="dropdown-item" href="contact-us">Contact us</a></li>
<li><a class="dropdown-item" href="faq-page">FAQ</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<span class="d-inline-block">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-translate" viewBox="0 0 16 16">
<path
d="M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286zm1.634-.736L5.5 3.956h-.049l-.679 2.022z">
</path>
<path
d="M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm7.138 9.995q.289.451.63.846c-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6 6 0 0 1-.415-.492 2 2 0 0 1-.94.31">
</path>
</svg>
</span>
</a>
<ul class="dropdown-menu" data-bs-popper="static">
<li><a class="dropdown-item" href="./about-us">English</a></li>
<li><a class="dropdown-item" href="./hi/about-us">हिंदी</a></li>
<li><a class="dropdown-item" href="./bn/about-us">বাংলা</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-6 col-12">
<div class="card shadow border-0 mt-5">
<div class="card-body">
<div class="p-5">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">Home</a></li>
<li class="breadcrumb-item active" aria-current="about-us">About us</li>
</ol>
</nav>
<h1 class="h2">About Us | Investment Calculator - Plan Financial
Future
</h1>
<p class="lead fs-6"><strong>Indian Government</strong> started <strong>Digital
India</strong> initiative and on the <strong>75th Anniversary of Indian
Independence</strong>, Team Nivesguru celebrating <strong>Azadi Ka Amrit
Mahotsav</strong> through this free investment calculator. Nivesguru is
dedicated for India to updates about investment and secure a good retirement
period for every Indians. We are providing <strong>free investmrnt
calculator</strong> and information about various types of investments which
returns best benifit with less investments. Nivesguru will try to reach every
Indian who want to secure their future but don't have sufficient information how
to insure their life to protect from accident and get benifitted by us. We're
also promoting all type of financial plan / aid are available by the Government
of India. Like <strong>Bima Yojana</strong>, Yojana for Girls, <strong>Pension
Plan</strong>, <strong>Government Bonds</strong> and many other.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="">
<div class="float-end">
<img class="img-fluid shadow-none my-5 py-5" width="400" height="400" loading="lazy"
class="my-5" src="nivesguru-investment-calculator-about-us-1st.svg"
alt="About Nivesguru free Investment Calculator"
title="About Nivesguru free Investment Calculator">
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="mt-5" id="welcome">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<div class="">
<h2 class="text-start">Welcome to<br> <span
class="display-3 text-primary fw-bold">Nivesguru</span>
</h2>
<p class="lead fs-6 text-start">A website dedicated to providing expert financial advice and
resources for individuals and businesses alike. Our team of experienced financial
professionals is committed to helping you achieve your financial goals through a
personalized and holistic approach. At Nivesguru, we understand that each person's financial
situation is
unique. That's why we offer a range of services, including financial planning, investment
management, tax planning, and retirement
planning, among others. Our team works closely with each client to develop a customized
financial plan that takes into account their unique goals, risk tolerance, and financial
situation.
</p>
</div>
</div>
<div class="col-md-2 col-12">
</div>
<div class="col-md-4 col-12 float-end">
<img src="nivesguru-investment-calculator-about-us.svg" width="400" height="400"
alt="Nives Guru About Us svg">
</div>
</div>
</div>
</section>
<section class="mt-5" id="mission-vission">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h2 mb-5 text-center">Mission | Vission of Nivesguru</h2>
<p class="lead fs-6 mb-5">We are committed to transform India with empowred family with empowered
economy as a mission and a vision of Har Ghar Khushali as Mission. We need support to reach
every person
who have a smart phone with internet connection. We're upgrading our web app to progressive web
app (PWA) so our user can access the tool without internet also and will soon launch our mobile
app for better user experience. Have a plan to reach more than half of our population within
next few years. Also our Vision for Atmanirbhar Bharat Abhiyaan or Self-reliant India. Team
Nivesguru also have the capability to help entrepreneurs, startup those are contributing India
to get the new heights. We're really happy to help or able to provide extended support for
website design, web development, Search Engine optimisation[SEO], Digital Marketing, SAAS based
Application, Website Management, Optimisation, Security and also Consultation if required. Here
are some of our services where our team have extended skill and serving over the globe for last
7 years. Please let us know so we can reach you and sort out things for ASAP. </p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-12">
<div class="card shadow-sm border-0 mb-3">
<div class="text-center text-primary ico-flip mt-4">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="currentColor"
class="bi bi-calculator" viewBox="0 0 16 16">
<path
d="M12 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h8zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H4z" />
<path
d="M4 2.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-2zm0 4a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm3-6a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1zm0 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-4z" />
</svg>
</div>
<div class="card-body">
<p class="h5 mb-3">Free <br /><span class="text-primary h2">Calculators</span></p>
<p class="lead fs-6">Free calculator for India, illustrating investment and return
in a very simple way. Encouraging, Educating and updating all people those are not so
much intrested for new investment plans and schemes are very lucrative along with good
returns.</p>
<a href="#section3" class="stretched-link">Find out all</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="card bg-dark shadow-sm border-0 mb-3">
<div class="text-center text-white ico-flip mt-4">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="currentColor"
class="bi bi-people-fill" viewBox="0 0 16 16">
<path
d="M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7Zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216ZM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" />
</svg>
</div>
<div class="card-body">
<p class="text-white h5 mb-3">Our <br /><span class="text-warning h2">Skilled Team</span>
</p>
<p class="text-white lead fs-6">Team Nivesguru, having vast experience to handle
international clients
and projects. Always provided the best result and earned 5 start ratings and reviews
from United States, European Union, Asia, Africa and also from Gulf Countries.</p>
<a href="#section2" class="stretched-link text-warning">Team members</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="card shadow-sm border-0 mb-3">
<div class="text-center text-primary ico-flip mt-4">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" fill="currentColor"
class="bi bi-headset" viewBox="0 0 16 16">
<path
d="M8 1a5 5 0 0 0-5 5v1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a6 6 0 1 1 12 0v6a2.5 2.5 0 0 1-2.5 2.5H9.366a1 1 0 0 1-.866.5h-1a1 1 0 1 1 0-2h1a1 1 0 0 1 .866.5H11.5A1.5 1.5 0 0 0 13 12h-1a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h1V6a5 5 0 0 0-5-5z" />
</svg>
</div>
<div class="card-body">
<p class="h5 mb-3">Best <br /><span class="text-primary h2">Support 24x7</span></p>
<!-- <p class="card-title text-center h2">Support</p> -->
<p class="card-text lead fs-6">We've professional and decated support team available 24x7
for your quiaries. We're serving PAN India and International clients over the Globe. Our
expert panel always looking forward to hear from you about your precious project.</p>
<a href="contact-us" class="stretched-link">Connect now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mt-5" id="we-provide">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<img src="nivesguru-investment-calculator-about-us-2nd.svg" class="my-5" width="400" height="400"
loading="lazy" alt="About us - Nivesguru | Investment Calculator"
title="About us - Nivesguru | Investment Calculator">
</div>
<div class="col-md-6 col-12">
<div class="">
<h2 class="text-end">What are<br> <span class="display-3 text-primary fw-bold">we Provide
?</span>
</h2>
<p class="lead text-end fs-6">Team Nivesguru have an extended team of skilled professionals and
provide services like Web / Graphics Design, Website / SAAS based application development,
Search Engine Optimisation (SEO), Digital Marketing / Social Media Marketing (SMM) and are
also able to provide offshore outsourcing if required. Our web development services are
tailored to meet the needs of businesses looking to establish or enhance their online
presence. Our team of experienced developers works with the latest technologies and best
practices to create high-performance, responsive, and user-friendly websites that attract
and engage visitors. Search Engine Optimization (SEO) is critical to the success of any
online business. Our SEO services are designed to help businesses improve their online
visibility and search engine rankings, resulting in increased website traffic and revenue.
Our digital marketing services are designed to help businesses reach their target audience
and achieve their marketing goals through a variety of online channels.</p>
</div>
</div>
</div>
</div>
</section>
<section id="section3" class="mt-5" id="calculators">
<div class="container">
<div class="row">
<div class="col-12 mb-3">
<h2 class="text-center mb-3">Nivesguru Calculators</h2>
<p class="lead fs-6">Our free, optimised and user friendly simulation web tool as a investment
calculator can bring awareness to investment and its benifits. With it, you can easily estimate
your potential returns andable to take the decisions about how to invest your money. It will
show your investment amount along with it's matured value after the investment period through
the numbers, charts and graphs. Check here some categories of investment done through Bank, Post
Office, Insurance, Pension plans and Government Bonds, Digital Gold investment and other.</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-12">
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="fixed-deposit-fd-calculator"><span class="fs-5">🪙</span> FD
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="sb-calculator"><span class="fs-5">🪙</span> SB
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="rd-calculator"><span class="fs-5">🪙</span> RD
Calculator</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-12">
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="sukanya-samriddhi-yojana-ssy-calculator"><span class="fs-5">🪙</span> SSY
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="ppf-calculator"><span class="fs-5">🪙</span> PPF
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="national-pension-system-nps-calculator"><span class="fs-5">🪙</span> NPS
Calculator</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-12">
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="apy-calculator"><span class="fs-5">🪙</span> APY Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator"><span
class="fs-5">🪙</span> PMJJBY
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="pradhan-mantri-suraksha-bima-yojana-pmsby-calculator"><span class="fs-5">🪙</span>
PMSBY
Calculator</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-4 col-12">
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="kvp-calculator"><span class="fs-5">🪙</span> KVP
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="national-savings-certificate-nsc-calculator"><span class="fs-5">🪙</span> NSC
Calculator</a>
</li>
</ul>
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="sgb-calculator"><span class="fs-5">🪙</span> SGB
Calculator</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="section2" class="mt-5" id="team">
<div class="container my-5">
<div class="row">
<div class="col-12">
<h2 class="text-center mb-3">Team Nivesguru</h2>
<p class="lead fs-6">Our team of experienced developers works with the latest technologies and best
practices to create high-performance, responsive, and user-friendly websites / Web Application
or SAAS based online tool that's need for managing your business / organisation, for growth to
outreach or for any custom requirements. that attract and
engage visitors. Our web development services are tailored to meet the needs of businesses
looking to establish or enhance their online presence. Also have dedicated HR Team to provide
you the best resource for your requirements if you want help, we're glad to support for the
process of Recruitment, Outsourcing, Offshore engagement. Experienced stack of professionals are
waiting to respond on your needs for Digital Marketing, Search Engine Optimisation.</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 col-12">
<div class="card border-0">
<img src="hritick.webp" width="200" height="200"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://bhritick.github.io/site" target="_blank"
class="text-center text-dark h4">Hritick B</a>
</p>
<p class="card-text text-center mb-2">Co-Founder | Developer</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/Nivesguru-118950734466440/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/company/nivesguru/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
<small class="mt-1">Linkedin</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-12">
<div class="card border-0">
<img src="nivesguru-team-sylvia-b.webp" width="205" height="205"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://anupammo.github.io/rahulc" target="_blank"
class="text-center text-dark h4">Silvia B</a>
</p>
<p class="card-text text-center mb-2">Digital / Social Media</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/Nivesguru-118950734466440/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/company/nivesguru/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
<small class="mt-1">Linkedin</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-12">
<div class="card border-0">
<img src="nivesguru-team-mrinal-d.jpg" width="200" height="200"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://anupammo.github.io/rahulc" target="_blank"
class="text-center text-dark h4">Mrinal D</a>
</p>
<p class="card-text text-center mb-2">Lead Developer | Co-ordinator</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/profile.php?id=100008351852388" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/in/mrinal-das-794b85192/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
<small class="mt-1">Linkedin</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-12">
<div class="card border-0">
<img src="rahul.jpeg" width="205" height="205"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://anupammo.github.io/rahulc" target="_blank"
class="text-center text-dark h4">Rahul C</a>
</p>
<p class="card-text text-center mb-2">Co-Founder | UI/UX | Media</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/Nivesguru-118950734466440/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/company/nivesguru/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
<small class="mt-1">Linkedin</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="card border-0">
<img src="shubhankar-das.webp" width="200" height="200"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="#" target="_blank" class="text-center text-dark h4">Shubhankar
D</a>
</p>
<p class="card-text text-center mb-2">Consultant | Brand Advocate | PM</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/subhankar.das.79656" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2" href="https://nbpstechsolutions.in/"
target="_blank" nofollow>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-globe2" viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7 0 0 1 .597-.933A7.01 7.01 0 0 0 3.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9.124 9.124 0 0 1-1.565-.667A6.964 6.964 0 0 0 1.018 7.5h2.49zm1.4-2.741a12.344 12.344 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612 0 0 1 7.5 10.91V8.5H4.51zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696 0 0 1-.598-.933 8.853 8.853 0 0 1-.481-1.079 8.38 8.38 0 0 0-1.198.49 7.01 7.01 0 0 0 2.276 1.522zm-1.383-2.964A13.36 13.36 0 0 1 3.508 8.5h-2.49a6.963 6.963 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009 0 0 0 2.275-1.521 8.376 8.376 0 0 0-1.197-.49 8.853 8.853 0 0 1-.481 1.078 6.688 6.688 0 0 1-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963 0 0 0 14.982 8.5h-2.49a13.36 13.36 0 0 1-.437 3.008zM14.982 7.5a6.963 6.963 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368 0 0 0 1.196-.49 7.01 7.01 0 0 0-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z" />
</svg>
<small class="mt-1">website</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="card border-0">
<img src="nivesguru-team-priyankar-g.webp" width="200" height="200"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="hritick-b-web-developer-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://anupammo.github.io/rahulc" target="_blank"
class="text-center text-dark h4">Priyankar G</a>
</p>
<p class="card-text text-center mb-2">Accounts | HRM | Finance | Tax</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/Nivesguru-118950734466440/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/company/nivesguru/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
<small class="mt-1">Linkedin</small>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-12">
<div class="card text-white border-0">
<img src="anupam.webp" width="200" height="200"
class="img-fluid rounded-circle d-block mx-auto mt-4"
alt="anupam-mondal-developer-founder-nivesguru">
<div class="card-body">
<p class="text-center">
<a href="https://anupammondal.in" target="_blank"
class="text-center text-dark h4">Anupam M</a>
</p>
<p class="card-text text-center text-dark mb-2">Founder | PM | Developer</p>
<ul class="nav nav-fill mt-3">
<li class="nav-item float-start">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.facebook.com/anupammondal.in" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg>
<small class="mt-1">Facebook</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2" href="https://anupammondal.in/"
target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
fill="currentColor" class="bi bi-globe2" viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7 0 0 1 .597-.933A7.01 7.01 0 0 0 3.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9.124 9.124 0 0 1-1.565-.667A6.964 6.964 0 0 0 1.018 7.5h2.49zm1.4-2.741a12.344 12.344 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612 0 0 1 7.5 10.91V8.5H4.51zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696 0 0 1-.598-.933 8.853 8.853 0 0 1-.481-1.079 8.38 8.38 0 0 0-1.198.49 7.01 7.01 0 0 0 2.276 1.522zm-1.383-2.964A13.36 13.36 0 0 1 3.508 8.5h-2.49a6.963 6.963 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009 0 0 0 2.275-1.521 8.376 8.376 0 0 0-1.197-.49 8.853 8.853 0 0 1-.481 1.078 6.688 6.688 0 0 1-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963 0 0 0 14.982 8.5h-2.49a13.36 13.36 0 0 1-.437 3.008zM14.982 7.5a6.963 6.963 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368 0 0 0 1.196-.49 7.01 7.01 0 0 0-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z" />
</svg>
<small class="mt-1">Website</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fs-3 px-2"
href="https://www.linkedin.com/company/anupammondal" target="_blank">