-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-us.html
More file actions
1043 lines (1025 loc) · 66.6 KB
/
contact-us.html
File metadata and controls
1043 lines (1025 loc) · 66.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
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": "Bank of India Savings Account | BOI SB Calculator for India",
"item": "https://nivesguru.in/contact-us"
}]
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "Contact Us | Investment Calculator - Plan Financial Future",
"image": [
"https://nivesguru.in/nivesguru-investment-calculator-home-page-svg.webp",
"https://nivesguru.in/nivesguru-investment-calculator-about-us.svg"
],
"telephone": "(947) 446-0058",
"email": "nivesguru@gmail.com",
"address": {
"@type": "PostalAddress",
"addressLocality": "Protapnagar, Metiari,",
"addressRegion": "West Bengal",
"addressCountry": "India",
"postalCode": "743330"
},
"url": "https://nivesguru.in/contact-us"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Contact Us | Investment Calculator - Plan Financial Future",
"description": "At Nivesguru, we value our customers and are committed to providing exceptional service. If you have any questions, concerns, or feedback, we would love to hear",
"url": "https://nivesguru.in/contact-us",
"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-home-page-svg.webp",
"https://nivesguru.in/nivesguru-investment-calculator-about-us.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>
<!-- JSON-LD markup -->
<!-- Primary Meta Tags -->
<title>Contact Us | Investment Calculator - Plan Financial Future</title>
<meta name="title" content="Contact Us | Investment Calculator - Plan Financial Future">
<meta name="description"
content="At Nivesguru, we value our customers and are committed to providing exceptional service. If you have any questions, concerns, or feedback, we would love to hear">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nivesguru.in/contact-us">
<meta property="og:title" content="Contact Us | Investment Calculator - Plan Financial Future">
<meta property="og:description"
content="At Nivesguru, we value our customers and are committed to providing exceptional service. If you have any questions, concerns, or feedback, we would love to hear">
<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/contact-us">
<meta property="twitter:title" content="Contact Us | Investment Calculator - Plan Financial Future">
<meta property="twitter:description"
content="At Nivesguru, we value our customers and are committed to providing exceptional service. If you have any questions, concerns, or feedback, we would love to hear">
<meta property="twitter:image" content="https://nivesguru.in/nivesguru.png">
<!-- Primary Meta Tags -->
<!-- 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">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="https://nivesguru.in/contact-us">
<!-- Favicon -->
<link rel="alternate" href="https://nivesguru.in/contact-us" hreflang="en" />
<link rel="alternate" href="https://nivesguru.in/bn/contact-us" hreflang="bn" />
<link rel="alternate" href="https://nivesguru.in/hi/contact-us" hreflang="hi" />
<link rel="alternate" href="https://nivesguru.in/contact-us" hreflang="x-default" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/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;
}
/* Tricolor header background with Ashoka Chakra overlay */
header {
background: linear-gradient(
165deg,
#FF9933 0%,
#FF9933 25%,
#fff 25%,
#fff 65%,
#138808 65%,
#138808 100%
);
background-attachment: fixed;
background-size: cover;
position: relative;
}
header::before {
content: "";
position: absolute;
top: 25%;
right: 5%;
width: 150px;
height: 150px;
background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Ashoka_Chakra.svg/330px-Ashoka_Chakra.svg.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
transform: translate(-50%, -50%);
opacity: 0.4;
pointer-events: none;
z-index: 0;
}
/* Section background wave */
.wave1 {
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0) 75%,
#fff 75%,
#fff 100%
);
}
.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%, rgba(0, 17, 105, 1) 80%, rgba(0, 17, 105, 1) 100%);
}
a {
text-decoration: none;
}
h2 {
color: rgba(0, 17, 105, 1);
}
ul li {
list-style: none;
}
.modal-content {
background: linear-gradient(125deg, #ffc107 0%, #ffc107 30%, #FFFFFF calc(30% + 1px), #FFFFFF 60%, #FFFFFF calc(60% + 1px), #FFFFFF 72%, #FFFFFF calc(72% + 1px), #FFFFFF 100%);
}
a small,
a svg {
display: block;
margin: 0 auto;
text-align: center;
}
a small {
font-size: .6rem;
}
a.nav-link {
transition: none;
}
</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="./">English</a></li>
<li><a class="dropdown-item" href="./hi/boi-sb-calculator">हिंदी</a></li>
<li><a class="dropdown-item" href="./bn/boi-sb-calculator">বাংলা</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="contact-us">Contact us</li>
</ol>
</nav>
<h1 class="lead fw-bold fs-3">Contact Us | Investment Calculator - Plan Financial
Future
</h1>
<hr class="w-50">
<p class="lead fs-6">At Nivesguru, we value our customers and are committed to
providing exceptional service. If you have any questions, concerns, or feedback,
we would love to hear from you. Our team of experts is available to assist
you and provide you with the information you need. Whether you are looking to
learn more about our services, need assistance with your account, or have a
general inquiry, you can contact us through our website or
by email. We will do our best to respond promptly and address your needs. Thank
you for choosing Nivesguru. We look forward to hearing from you soon.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="card border-0 mt-5">
<div class="card-body my-5">
<picture class="img-fluid d-block mx-auto my-5">
<source media="(min-width: 475px)" class="img-fluid d-block mx-auto my-5"
width="406" height="306" srcset="contact_us_investment_calculator_nivesguru.svg"
alt="Contact Us Investment Calculator Nivesguru"
title="Contact Us Investment Calculator Nivesguru">
<source media="(min-width: 320px)" class="img-fluid d-block mx-auto my-5"
width="264" height="199"
srcset="contact_us_investment_calculator_nivesguru.svg">
<img width="406" height="306" class="img-fluid d-block mx-auto my-5"
src="contact_us_investment_calculator_nivesguru.svg"
alt="Contact Us Investment Calculator Nivesguru"
title="Contact Us Investment Calculator Nivesguru">
</picture>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="my-5">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<img class="rounded mx-auto d-block" src="nivesguru-investment-calculator-home-page-svg.webp"
width="300" height="300" loading="lazy" alt="Contact us Nivesguru calculator">
</div>
<div class="col-md-6 col-12">
<div class="">
<h2 class="text-end">Simplify your<br> <span
class="display-3 text-primary fw-bold">investment</span>
</h2>
<p class="lead fs-6 text-end">planning with our investment calculator, which makes it easy to
estimate your returns and create a diversified portfolio that meets your needs. Our
investment calculator helps you plan for the future by estimating the potential
returns on your investments. With just a few simple inputs, you can calculate your gains and
make informed decisions about your financial future. Looking for a way to plan your
investments more wisely?</p>
</div>
</div>
</div>
</div>
</section>
<section class="mt-5">
<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="Nivesguru About Us svg">
</div>
</div>
</div>
</section>
<section class="mt-5">
<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>
<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">
</path>
</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">
</path>
</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="about-us#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">
</path>
</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-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="bg-nivesguru mt-5">
<div class="wave1">
<div class="container py-5">
<div class="row ">
<div class="col-md-8 col-12">
<form class="card border border-0 shadow rounded-0 mb-3 px-5 py-4 ">
<div class="row">
<div class="col-12 ">
<h2 class="h3 my-4">Contact Us</h2>
</div>
<p class="lead fs-6">At Nivesguru, we are committed to providing our clients with
exceptional digital marketing services. If you have any questions or inquiries about
our
services, feel free to contact us using the form below. Our team of experts
is ready to help you with your online marketing needs, whether you're looking to
improve
your website's ranking on search engines, increase your social media presence, or
create
engaging content that drives conversions.
You can also reach us via email at <a
href="mailto:nivesguru@gmail.com">nivesguru@gmail.com</a> or by phone at <a
href="tel:+919474460058">(947) 446-0058</a>, <a href="tel:+919382399893">(938)
239-9893</a>. We strive to respond to all inquiries within 24 hours, so you can
expect a prompt and personalized response from us. Thank you for considering
Nivesguru
for your digital marketing needs. We look forward
to hearing from you!</p>
</div>
</form>
</div>
<div class="col-md-4 col-12">
<form class="card border border-0 shadow rounded-0 mb-3 px-5 py-4 bg-black">
<div class="row">
<div class="col-12 ">
<h2 class="fs-1 display-4 text-white">Info</h2>
<hr>
</div>
<div class="col-12 ">
<h2 class="fs-5 display-4 my-3 text-white">📬 nivesguru@gmail.com</h2>
</div>
<div class="col-12 ">
<h2 class="fs-4 display-4 my-3 text-white">📞 9382399893</h2>
</div>
<div class="col-12 ">
<h2 class="fs-4 display-4 my-3 text-white">📍 Kolkata </h2>
</div>
<div class="col-12 ">
<h2 class="fs-4 display-4 my-3 text-white">🕒 24*7</h2>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<section class="mt-5" id="section3">
<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 class="mt-5">
<div class="container">
<div class="row">
<div class="col-12">
<h2>Find us on <br> <span class="display-3 text-primary fw-bold">Google Map</span></h2>
<p class="lead fs-6">Check out the ratings and reviews on Google who have providing Nivesguru
as the free financial calculator tool for Indian investors to plan the future and secure their
assets from inflation.</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-12 px-0">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3687.68943268116!2d88.51291011495721!3d22.440712185250774!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a020d742e64f2f9%3A0x1bdd170f2df2e34e!2sAnupam%20Mondal!5e0!3m2!1sen!2sin!4v1681072166114!5m2!1sen!2sin"
height="450" style="width: 100%; border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade" title="Find us on Google Map"></iframe>
</div>
</div>
</div>
</section>
<section class="mt-5">
<div class="container">
<div class="row">
<div class="col-md-6 col-12">
<h2 class="h3 my-4">Reach us 📍 </h3>
<p class="h5 mb-3">Want to visit Nivesguru :</p>
<address class="lead fs-6">
🗺️ Protapnagar, Metiari, <br />
West Bengal, 743330<br />
🇮🇳 India
<hr class="w-25">
🌎 Know more about
<a href="https://nivesguru.in/about-us"><strong>Nivesguru</strong></a>.<br />
📬 Also can email
<a href="mailto:nivesguru@gmail.com"><strong>Team Nivesguru</strong></a>.<br />
📞 Call for support <a href="tel:+919474460058">(947) 446-0058</a><br />
📞 Call for support <a href="tel:+919382399893">(938) 239-9893</a><br />
</address>
</div>
<div class="col-md-6 col-12">
<h2 class="text-end h3 my-4">🕒 Opening hours</h3>
<table class="table table-borderless text-end">
<tbody class="lead fw-bold fs-6">
<tr class="text-danger">
<td>Sunday</td>
<td>Closed</td>
</tr>
<tr>
<td>Monday</td>
<td>12pm - 8pm</td>
</tr>
<tr>
<td>Tuesday</td>
<td>12pm - 8pm</td>
</tr>
<tr>
<td>Wednesday</td>
<td>12pm - 8pm</td>
</tr>
<tr>
<td>Thursday</td>
<td>12pm - 8pm</td>
</tr>
<tr>
<td>Friday</td>
<td>12pm - 8pm</td>
</tr>
<tr class="text-danger">
<td>Saturday</td>
<td>Closed</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- <div class="container mt-5">
<div class="row">
<div class="col-12">
<div class="socializer a sr-32px sr-opacity sr-icon-white sr-pad"><span class="sr-google"><a
href="https://www.google.com/bookmarks/mark?op=edit&bkmk=https%3A%2F%2Fnivesguru.in%2Ffd-calculator&title=FD%20calculator&annotation="
target="_blank" title="Google"><i class="fab fa-google"></i></a></span><span
class="sr-linkedin"><a
href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fnivesguru.in%2Ffd-calculator&title=FD%20calculator&summary="
target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a></span><span
class="sr-facebook"><a
href="https://www.facebook.com/share.php?u=https%3A%2F%2Fnivesguru.in%2Ffd-calculator&t=FD%20calculator"
target="_blank" title="Facebook"><i class="fab fa-facebook-f"></i></a></span><span
class="sr-whatsapp"><a
href="https://api.whatsapp.com/send?text=FD%20calculator%20https%3A%2F%2Fnivesguru.in%2Ffd-calculator"
target="_blank" title="WhatsApp"><i class="fab fa-whatsapp"></i></a></span><span
class="sr-fbmessenger"><a
href="fb-messenger://share?link=https%3A%2F%2Fnivesguru.in%2Ffd-calculator"
target="_blank" title="Facebook messenger"><i class="fa fa-comment"></i></a></span><span
class="sr-snapchat"><a href="https://snapchat.com" target="_blank" title="Snapchat"><i
class="fab fa-snapchat"></i></a></span><span class="sr-twitter"><a
href="https://twitter.com/intent/tweet?text=FD%20calculator%20-%20https%3A%2F%2Fnivesguru.in%2Ffd-calculator%20"
target="_blank" title="Twitter"><i class="fab fa-twitter"></i></a></span><span
class="sr-instagram"><a href="https://instagram.com" target="_blank" title="Instagram"><i
class="fab fa-instagram"></i></a></span><span class="sr-pinterest"><a
href="https://www.pinterest.com/pin/create/button/?url=https%3A%2F%2Fnivesguru.in%2Ffd-calculator&media=&description="
target="_blank" title="Pinterest"><i class="fab fa-pinterest"></i></a></span><span
class="sr-stackoverflow"><a href="https://stackoverflow.com/" target="_blank"
title="StackOverflow"><i class="fab fa-stack-overflow"></i></a></span>
<span
class="sr-quora"><a href="https://www.quora.com" target="_blank" title="Quora"><i
class="fab fa-quora"></i></a></span><span class="sr-rss"><a href="" target="_blank"
title="RSS"><i class="fa fa-rss"></i></a></span>
<span class="sr-telegram"><a
href="https://telegram.me/share/url?url=https%3A%2F%2Fnivesguru.in%2Ffd-calculator&text=FD%20calculator"
target="_blank" title="Telegram"><i class="fab fa-telegram-plane"></i></a></span><span
class="sr-skype"><a
href="https://web.skype.com/share?url=https%3A%2F%2Fnivesguru.in%2Ffd-calculator"
target="_blank" title="Skype"><i class="fab fa-skype"></i></a></span><span
class="sr-email"><a
href="mailto:?subject=FD%20calculator&body=%20-%20https%3A%2F%2Fnivesguru.in%2Ffd-calculator"
target="_blank" title="Email"><i class="fa fa-envelope"></i></a></span><span
class="sr-more"><a href="#" target="_blank" title="More"><i class="fa fa-share-alt"></i></a>
<ul class="socializer"></ul>
</span>
</div>
</div>
</div>
</div> -->
</section>
<footer class="bg-dark">
<div class="container-fluid bg-duo">
<div class="row">
<div class="col-12">
<ul class="nav justify-content-center my-3">
<li class="nav-item">
<a class="nav-link fs-3 p-2 text-white bg-dark rounded border mx-1"
href="https://www.facebook.com/Nivesguru-118950734466440/" target="_blank">
<svg xmlns="https://www.w3.org/2000/svg" width="32" height="32" 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 fs-3 px-2 text-white bg-dark rounded border mx-1"
href="https://instagram.com/niveshguru_official?igshid=ZDdkNTZiNTM=" target="_blank">
<svg xmlns="https://www.w3.org/2000/svg" width="32" height="32" fill="currentColor"
class="bi bi-instagram" viewBox="0 0 16 16">
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z" />
</svg>
<small class="mt-1">Instagram</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-3 px-2 text-white bg-dark rounded border mx-1"
href="https://www.youtube.com/@nivesguru-india" target="_blank">
<svg xmlns="https://www.w3.org/2000/svg" width="32" height="32" fill="currentColor"
class="bi bi-youtube" viewBox="0 0 16 16">
<path
d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z" />
</svg>
<small class="mt-1">YouTube</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-3 px-2 text-white bg-dark rounded border mx-1"
href="https://twitter.com/Nivesguru" target="_blank">
<svg xmlns="https://www.w3.org/2000/svg" width="32" height="32" fill="currentColor"
class="bi bi-twitter" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg>
<small class="mt-1">Twitter</small>
</a>
</li>
<li class="nav-item">
<a class="nav-link fs-3 px-2 text-white bg-dark rounded border mx-1"
href="https://www.linkedin.com/company/nivesguru/" target="_blank">
<svg xmlns="https://www.w3.org/2000/svg" width="32" height="32" 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="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-12">
<ul class="nav flex-column text-center mt-4">
<li class="nav-item">
<a class="nav-link text-white" href="./">Homepage</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="about-us">About us</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="contact-us">Contact us</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="faq-page">FAQ page</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="privacy-policy">Privacy policy</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="terms-and-conditions">Terms & condition</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-12">
<ul class="nav flex-column text-center mt-4">
<li class="nav-item">
<a class="nav-link text-white" href="fixed-deposit-fd-calculator">FD Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="sb-calculator">SB Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="rd-calculator">RD Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="sukanya-samriddhi-yojana-ssy-calculator">SSY
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="ppf-calculator">PPF
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="national-pension-system-nps-calculator">NPS
Calculator</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-12">
<ul class="nav flex-column text-center mt-4">
<li class="nav-item">
<a class="nav-link text-white" href="apy-calculator">APY Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white"
href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator">PMJJBY Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link text-white"