-
Notifications
You must be signed in to change notification settings - Fork 205
/
index.html
1301 lines (1186 loc) · 48.4 KB
/
index.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.0" />
<title>Shree Krishna: My Strength</title>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<style>
.chatbot-container {
position: fixed;
bottom: 20px; /* Adjust as needed */
right: 90px; /* Adjust as needed */
z-index: 1000; /* Ensure it appears above other elements */
}
.chatbot-button {
border: none;
border-radius: 50%;
padding: 5px; /* Smaller padding */
cursor: pointer;
position: relative;
width: 50px; /* Adjusted size */
height: 50px; /* Adjusted size */
}
.chatbot-button img {
width: 30px; /* Adjusted image size */
height: 30px; /* Adjusted image size */
}
.tooltip-text {
display: none; /* Hide by default */
position: absolute;
bottom: 100%; /* Position above the button */
right: 50%;
transform: translateX(50%);
background-color: #333; /* Background color for tooltip */
color: #fff; /* Tooltip text color */
padding: 5px;
border-radius: 5px;
white-space: nowrap; /* Prevent text from wrapping */
}
.chatbot-button:hover .tooltip-text {
display: block; /* Show on hover */
}
body {
background-image: var(--bg-color);
font-family: Arial, sans-serif;
padding: 0;
margin: 0;
overflow-x: hidden;
}
.scroll-top-btn {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #330867;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
display: none;
z-index: 1000;
}
.scroll-top-btn:hover {
background-color: #330867;
}
.scroll-top-btn:hover {
background-color: #330867;
}
.content h1::selection,
p::selection,
h2::selection {
background-color: rgb(237, 204, 133);
color: #000;
}
.header {
text-align: center;
background-image: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
padding: 10px 20px;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0px 6px 10px #ccc;
}
.indexMain .headDiv h1 {
margin-top: 40px;
text-align: center;
font-size: 36px;
font-weight: 900;
background: linear-gradient(to right, #30cfd0 20%, #330867 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.content {
max-width: 900px;
margin: 100px auto;
padding: 20px 40px;
background-color: var(--primary-color);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#translateBtnDiv {
position: relative;
top: 70px;
left: 270px;
}
#translateBtn {
border: 0;
padding: 15px 25px;
color: #ffffff;
background-image: linear-gradient(
to right,
#314755 0%,
#26a0da 51%,
#314755 100%
);
background-size: 200% auto;
font-size: 16px;
cursor: pointer;
}
#translateBtn:hover {
background-position: right center;
}
.krishna-image {
margin: 10px 0px 10px 450px;
width: 27%;
height: 450px;
border-radius: 20px;
transition: opacity 5s ease-in-out;
}
.krishna-image.fade {
opacity: 0;
}
.indexMain p {
font-size: 16px;
line-height: 1.6;
color: #444;
}
h1,
h2 {
color: #ab9353;
}
@media (max-width: 768px) {
.header {
padding: 10px;
}
.indexMain .headDiv h1 {
font-size: 20px;
}
.content {
width: 90%;
margin: 80px auto;
padding: 10px 15px;
}
#translateBtnDiv {
left: 3px;
width: 200px;
}
#translateBtn {
padding: 12px 20px;
font-size: 14px;
margin: 10px;
}
.krishna-image {
margin: 10px 0px 0px 22px;
width: 85%;
height: 300px;
}
.content p {
font-size: 14px;
}
h1 {
font-size: 22px;
}
h2 {
font-size: 20px;
}
}
.navigation {
display: flex;
justify-content: space-between;
align-items: center;
justify-content: center;
}
.navigation .homeDiv #homeBtn {
align-items: center;
background-image: linear-gradient(
144deg,
#af40ff,
#5b42f3 50%,
#00ddeb
);
border: 0;
border-radius: 8px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
box-sizing: border-box;
color: #ffffff;
display: flex;
font-family: Phantomsans, sans-serif;
justify-content: center;
line-height: 0.8em;
max-width: 100%;
min-width: 110px;
padding: 3px;
text-decoration: none;
cursor: pointer;
}
.navigation .homeDiv #homeBtn:active,
.navigation .homeDiv #homeBtn:hover {
outline: 0;
}
.navigation .homeDiv #homeBtn a {
background-color: rgb(5, 6, 45);
color: #fff;
font-size: 16px;
padding: 16px 24px;
border-radius: 6px;
width: 100%;
height: 100%;
transition: 300ms;
text-decoration: none;
}
.navigation .homeDiv #homeBtn:hover a {
background: none;
}
.navigation {
justify-content: space-between;
}
.navigation .navbar {
display: flex;
/* margin-right: 350px !important; */
}
.navigation .navbar a {
color: #fff;
text-decoration: none;
margin: 0 5px;
font-size: 16px;
font-weight: 500;
transition: ease-in 0.3s;
border: 2px solid #fff;
padding: 10px 15px;
border-radius: 20px;
}
.navigation .navbar a:hover {
color: rgb(250, 219, 153);
border: 2px solid rgb(250, 219, 153);
}
.searchInput {
box-sizing: border-box;
width: 280px;
height: 35px;
padding: 5px 20px;
border-radius: 50px;
border: 0;
}
.searchInput:focus {
outline: 0;
}
.searchForm button {
padding: 0;
border: 0;
background-color: transparent;
position: relative;
top: 2px;
right: 55px;
}
.searchForm button i {
color: #555;
padding: 9px 15px;
font-size: 16px;
cursor: pointer;
transition: linear 0.16s;
}
.searchForm button i:hover {
color: #23d1c8;
}
footer {
background-color: #1c3d5a;
color: #ffffff;
padding: 40px 0; /* Increased padding for more space */
font-family: "Poppins", sans-serif;
position: relative;
width: 100%;
}
.footer-content {
display: flex;
justify-content: space-between; /* Spread items evenly across the footer */
align-items: flex-start;
flex-wrap: wrap; /* Ensure responsiveness */
padding: 0 50px;
max-width: 1200px; /* Limit max width to keep it centered */
margin: 0 auto;
}
.footer-section {
flex: 1;
margin: 20px; /* Add margin for spacing between sections */
min-width: 220px; /* Minimum width for smaller screens */
}
.footer-section h3 {
font-size: 24px; /* Increased the heading size */
margin-bottom: 15px;
color: #f0c43f; /* Gold color */
}
/* Quick Links Styling */
.footer-links {
list-style-type: none;
padding: 0;
}
.footer-links li {
margin-bottom: 12px; /* Spacing between links */
}
.footer-links a {
text-decoration: none;
color: #ffffff;
font-size: 18px; /* Increased font size for better readability */
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #fce4a6; /* Lighter gold on hover */
}
/* Faith Statement Section */
.statement .faith-statement {
line-height: 1.6;
margin-bottom: 10px;
color: #fff;
max-height: 70px;
overflow: hidden;
text-overflow: ellipsis;
transition: max-height 0.3s ease-in-out;
}
.read-more {
color: #f4d35e;
cursor: pointer;
text-decoration: underline;
}
/* Social Icons Styling */
.social-icons {
display: flex;
}
.social-icons a {
color: #ffffff;
font-size: 26px; /* Increased icon size */
margin-right: 15px; /* Spacing between icons */
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #f0c43f;
}
/* Footer Bottom Section */
.creatorDiv {
text-align: center;
margin-top: 30px;
font-size: 14px;
padding: 10px;
border-top: 1px solid #ffffff44; /* Subtle border for separation */
}
.creatorDiv p {
margin: 0;
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
align-items: center;
padding: 0 20px;
}
.footer-section {
text-align: center;
margin: 15px 0;
}
}
.social-icons a {
display: inline-flex;
justify-content: center;
align-items: center;
width: 2.1rem;
height: 2.1rem;
background-color: transparent;
border: 0.2rem solid #000000;
font-size: 1.2rem;
border-radius: 50%;
margin: 0.1rem 0.2rem 0.1rem 0;
transition: 0.3s ease;
color: #ffffff;
text-decoration: none;
}
.social-icons a:hover {
color: rgb(255, 255, 255);
transform: scale(1.3) translateY(-5px);
background-color: #ac905c;
box-shadow: 0 0 25px #f0eaea;
}
.creatorDiv {
margin-top: 10px;
}
.creatorDiv p {
margin-top: 0;
margin-bottom: 0;
font-size: 14px;
}
/* tablet Responsive Styles */
@media (max-width: 1100px) {
.header {
position: unset;
}
.navigation {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.navigation .navbar {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-top: 20px;
margin-right: 0 !important;
}
.navbar .navbar-up {
gap: 20px;
display: flex;
}
.navigation .navbar a {
margin: 10px 0;
font-size: 12px;
}
.navigation .homeDiv #homeBtn {
min-width: 30px;
}
.navigation .homeDiv #homeBtn a {
font-size: 14px;
}
.footer-content {
flex-direction: column;
align-items: center;
margin: 0px 40px 0px 0px;
}
.footer-section p {
font-size: 14px;
}
.social-icons a i {
font-size: 22px;
margin: 5px;
}
.footer-section {
margin-bottom: 0;
}
.creatorDiv {
margin-top: 20px;
margin-right: 30px;
}
.creatorDiv p {
font-size: 12px;
}
.searchForm {
display: flex;
margin: 20px 0px -10px 35px;
}
.searchInput {
width: 180px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
font-size: 12px;
margin-bottom: 20px;
}
.searchForm button {
top: 0px;
right: 45px;
margin-bottom: 20px;
}
.searchForm button i {
padding: 9px 15px;
font-size: 15px;
}
}
/* Mobile Responsive Styles */
@media (max-width: 668px) {
.header {
position: unset;
}
.navigation {
display: flex;
flex-direction: column;
align-items: center;
}
.navigation .navbar {
display: flex;
flex-direction: column;
margin-top: 20px;
}
.navigation .navbar a {
margin: 0;
font-size: 12px;
}
.navbar .navbar-up {
display: flex;
flex-direction: column;
}
.navigation .homeDiv #homeBtn {
min-width: 80px;
}
.navigation .homeDiv #homeBtn a {
font-size: 14px;
}
.footer-content {
flex-direction: column;
align-items: center;
margin: 0px 0px 0px 0px;
}
.footer-section p {
font-size: 14px;
}
.social-icons a i {
font-size: 22px;
margin: 5px;
}
.footer-section {
margin-bottom: 0;
}
.creatorDiv {
margin-top: 20px;
margin-right: 30px;
}
.creatorDiv p {
font-size: 12px;
}
.searchForm {
display: flex;
margin: 20px 0px -10px 35px;
}
.searchInput {
width: 280px;
height: 30px;
padding: 5px 12px;
border-radius: 50px;
border: 0;
font-size: 12px;
}
.searchForm button {
top: 0px;
right: 45px;
}
.searchForm button i {
padding: 9px 15px;
font-size: 15px;
}
}
/* FAQ seciton css */
/* faq section */
.faq-section {
max-width: 900px;
margin: 50px auto;
padding: 20px;
background-color: var(--primary-color);
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.faq-heading {
font-size: 24px;
text-align: center;
margin-bottom: 20px;
color: #ab9353;
}
.faq-container {
width: 100%;
}
.faq-item {
margin-bottom: 15px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 10px;
text-align: left;
background-color: var(--ternary-color);
border: none;
font-size: 18px;
font-weight: bold;
color: var(--secondary-color);
cursor: pointer;
outline: none;
transition: background-color 0.3s ease;
}
.arrow {
width: 12px;
height: 12px;
border: solid black;
border-width: 0 3px 3px 0;
transform: rotate(45deg);
transition: transform 0.3s ease;
}
[aria-expanded="true"] .arrow {
transform: rotate(-135deg); /* Rotation when expanded */
}
.faq-question:hover {
background-color: #e6e6e6;
}
.faq-answer {
padding: 10px 15px;
font-size: 16px;
color: #555;
}
.faq-answer p {
line-height: 1.6;
}
.hidden {
display: none;
}
/* Responsive Design */
@media (max-width: 600px) {
.faq-question {
font-size: 16px;
}
.faq-answer {
font-size: 14px;
}
.faq-heading {
font-size: 20px;
}
}
/* faq css end */
#content-english p {
color: var(--secondary-color);
}
#content-hindi p {
color: var(--secondary-color);
}
#icon {
width: 30px;
cursor: pointer;
position: absolute;
right: 50px;
top: 50px;
}
:root {
--bg-color: url(https://www.hitaambrish.com/stat/img/home/quotes-bg.jpg);
--primary-color: #fff;
--secondary-color: #0e0e0e;
--ternary-color: #f7f7f7;
}
.dark-theme {
--bg-color: url(https://www.hitaambrish.com/stat/img/home/Gallery_Bg.jpg);
--primary-color: #0e0e0e;
--secondary-color: #fff;
--ternary-color: rgba(32, 26, 26, 0.785);
}
</style>
</head>
<body>
<button id="scrollTopBtn" class="scroll-top-btn">
<i class="fas fa-arrow-up"></i>
</button>
<div class="header">
<div class="navigation">
<div class="homeDiv">
<button id="homeBtn"><a href="./index.html">Home</a></button>
</div>
<div class="navbar">
<div class="navbar-up">
<a href="scriptures.html">Scriptures</a>
<a href="gallery.html">Gallery</a>
<a href="#" onclick="showLoginForm()">Discussion Forum</a>
<a href="devotional-resources.html">Devotional Resources</a>
<a href="avatars.html">Avatars</a>
<a href="quiz.html">Quiz</a>
<a href="DIgital.html">DigitalResources</a>
<a href="Personalized.html">ToDoList</a>
<a href="Feedback.html">Feedbackform</a>
<a href="partner.html">Partner</a>
<a href="avatars.html">Avatars</a>
<a href="prasadam.html">Prasadam Section</a>
<img src="images/moon.png" id="icon" />
</div>
</div>
<form class="searchForm">
<input
type="text"
class="searchInput"
placeholder="Search all the content"
/>
<button>
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
</div>
</div>
<div class="indexMain">
<div class="headDiv">
<h1>Shree Krishna - My Strength</h1>
<img
src="./images/krishna-home-image.jpg"
id="krishnaImage"
class="krishna-image"
alt="Shree Krishna"
/>
</div>
<div id="translateBtnDiv">
<button onclick="toggleLanguage()" id="translateBtn">
हिंदी में पढ़ें
</button>
</div>
<div class="content">
<div id="content-english">
<h1>The Divine Essence of Lord Shree Krishna</h1>
<p>
Lord Shree Krishna, the divine avatar of Lord Vishnu, is the
embodiment of love, compassion, and wisdom. His teachings in the
Bhagavad Gita are a source of eternal inspiration for humanity.
Shree Krishna is the guiding light in our lives, showing us the path
of righteousness and devotion.
</p>
<p>
His enchanting presence brings solace to the troubled hearts and
uplifts the spirit. Shree Krishna's divine grace is the strength
that carries us through the storms of life and illuminates our
darkest hours. His divine flute enchants all living beings, and his
smile is like the sun that dispels darkness.
</p>
<p>
Let us immerse ourselves in the devotion and love for Shree Krishna,
seeking His blessings and guidance in our journey towards spiritual
enlightenment and inner peace. His divine Leelas (playful
activities) continue to inspire and remind us of the path of Dharma
and devotion.
</p>
<h2>The Birth and Childhood</h2>
<p>
Shree Krishna was born in the prison of Mathura to Devaki and
Vasudeva. His divine childhood was marked by playful escapades, such
as stealing butter and engaging in pranks, which endeared him to the
residents of Vrindavan.
</p>
<p>
His childhood also included miraculous feats, such as lifting the
Govardhan Hill to protect the people from torrential rains. These
stories of his early life reflect his divine nature and his role as
a protector and source of joy for all.
</p>
<h2>The Govardhan Leela</h2>
<p>
One of the most cherished episodes in Lord Krishna's life is the
Govardhan Leela. When the people of Vrindavan were preparing to
offer their annual worship to Lord Indra, Krishna questioned the
need to worship Indra. Instead, he proposed that they worship
Govardhan Hill, which provided them with resources.
</p>
<p>
In response, Lord Krishna lifted Govardhan Hill with his little
finger to protect the people from the wrath of Lord Indra's rain.
This act of love and devotion to his devotees is a testament to his
divine power and the importance of simple faith and surrender.
</p>
<h2>The Ras Leela</h2>
<p>
The Ras Leela is a profound and mystical dance of love and devotion.
Lord Krishna's dance with the Gopis under the moonlit sky of
Vrindavan symbolizes the union of the individual soul with the
divine.
</p>
<p>
The Ras Leela serves as a spiritual metaphor, emphasizing the
importance of selfless devotion and surrender to the divine. It is a
reminder of the eternal love between Lord Krishna and his devotees.
</p>
<h2>The Flute of Krishna</h2>
<p>
The divine flute playing of Lord Krishna is legendary. His melodious
tunes enchanted the entire creation, including humans, animals, and
even the celestial beings. When he played the flute, the Gopis would
be drawn to him, leaving everything behind to be in his divine
presence.
</p>
<p>
The music of his flute symbolizes the call of the divine, the
yearning of the soul to unite with the Supreme, and the eternal love
of Lord Krishna for his devotees. It's a reminder of the bliss that
comes from surrendering to the divine and being in harmony with the
universe.
</p>
<h2>Divine Love of Radha-Krishna</h2>
<p>
At the heart of Lord Krishna's divine journey lies the sublime love
story of Radha and Krishna. Radha, often referred to as "Radha
Rani," is regarded as the eternal and supreme devotee of Lord
Krishna. Their love transcends the mundane and embodies the divine
union of the soul with the Supreme Being.
</p>
<p>
Their love story, celebrated in songs, poetry, and art, represents
the divine connection between the individual soul (jivatma) and the
ultimate reality (paramatma). The love of Radha and Krishna
symbolizes the profound and selfless devotion one should have for
the divine.
</p>
<p>
Radha-Krishna's love story inspires devotees to seek the highest
form of love and surrender to the Lord with unwavering faith and
devotion. It is a reminder that true love, both earthly and divine,
is the path to spiritual realization and eternal bliss.
</p>
<h2>The Departure</h2>
<p>
After fulfilling his earthly mission and guiding humanity, Lord
Krishna, often referred to as the "Yogeshwara," left for his divine
abode, Dwarka. His departure marked the end of his physical presence
on Earth.
</p>
<p>
However, his spiritual presence and teachings continue to be a
guiding light for all who seek wisdom, love, and inner peace.
Devotees remember his departure as an opportunity to deepen their
spiritual connection through devotion and prayer.
</p>
<p>
While his physical form may have departed, Lord Krishna's divine
influence and love remain eternal and ever-present in the hearts of
his devotees.
</p>
<h2>My Dedication to Krishna</h2>
<p>
As a devotee of Lord Shree Krishna, I am inspired by his divine
presence, teachings, and the enchanting stories of his life. My
dedication to Krishna is a heartfelt commitment to walk the path of
righteousness, love, and devotion that he has shown us.
</p>
<p>
Lord Krishna's teachings, especially those in the Bhagavad Gita, are
a guiding light in my life, offering wisdom in times of doubt and
clarity in times of confusion. His divine Leelas and the enchanting
sound of his flute resonate in my heart, reminding me of the eternal
love and joy that can be found in his presence.
</p>
<p>
My dedication to Lord Krishna is a promise to strive for a life
filled with love, compassion, and selfless service. His grace is my
strength, and his love is my inspiration. In the company of Shree
Krishna, I find solace, guidance, and boundless joy.
</p>
<p>
May my devotion to Lord Krishna continue to deepen, and may his
divine blessings illuminate my path as I journey through life,
seeking spiritual enlightenment and inner peace.
</p>
</div>
<div id="content-hindi" style="display: none">
<h1>भगवान श्री कृष्ण का दिव्य सार</h1>
<p>
भगवान श्री कृष्ण, भगवान विष्णु के दिव्य अवतार, प्रेम, करुणा और ज्ञान
के अवतार हैं। भगवद गीता में उनकी शिक्षाएं मानवता के लिए शाश्वत
प्रेरणा का स्रोत हैं। श्री कृष्ण हमारे जीवन में मार्गदर्शक प्रकाश
हैं, जो हमें धर्म और भक्ति का मार्ग दिखाते हैं।
</p>
<p>
उनकी मनमोहक उपस्थिति परेशान दिलों को सांत्वना देती है और आत्मा को
ऊपर उठाती है। श्री कृष्ण की दिव्य कृपा वह शक्ति है जो हमें जीवन के
तूफानों से पार ले जाती है और हमारे सबसे अंधेरे घंटों को रोशन करती
है। उनकी दिव्य बांसुरी सभी जीवित प्राणियों को मंत्रमुग्ध कर देती है,
और उनकी मुस्कान सूर्य की तरह है जो अंधकार को दूर कर देती है।
</p>
<p>
आइए हम आध्यात्मिक ज्ञान और आंतरिक शांति की दिशा में अपनी यात्रा में
उनका आशीर्वाद और मार्गदर्शन प्राप्त करते हुए, श्री कृष्ण के प्रति
भक्ति और प्रेम में डूब जाएं। उनकी दिव्य लीलाएँ हमें धर्म और भक्ति के
मार्ग की प्रेरणा और याद दिलाती रहती हैं।
</p>
<h2>जन्म एवं बालपन</h2>
<p>
श्री कृष्ण का जन्म मथुरा की जेल में देवकी और वासुदेव के यहाँ हुआ था।
उनका दिव्य बचपन मक्खन चुराने और शरारतों में शामिल होने जैसी चंचल
गतिविधियों से चिह्नित था, जिसने उन्हें वृन्दावन के निवासियों का
प्रिय बना दिया।
</p>
<p>
उनके बचपन में लोगों को मूसलाधार बारिश से बचाने के लिए गोवर्धन पहाड़ी
को उठाने जैसे चमत्कारी कारनामे भी शामिल थे। उनके प्रारंभिक जीवन की
ये कहानियाँ उनके दिव्य स्वभाव और सभी के लिए एक रक्षक और खुशी के
स्रोत के रूप में उनकी भूमिका को दर्शाती हैं।
</p>
<h2>गोवर्धन लीला</h2>
<p>
भगवान कृष्ण के जीवन के सबसे प्रिय प्रसंगों में से एक है गोवर्धन
लीला। जब वृन्दावन के लोग भगवान इंद्र की वार्षिक पूजा करने की तैयारी
कर रहे थे, तो कृष्ण ने इंद्र की पूजा करने की आवश्यकता पर सवाल उठाया।
इसके बजाय, उन्होंने प्रस्ताव दिया कि वे गोवर्धन पहाड़ी की पूजा करें,
जिससे उन्हें संसाधन उपलब्ध हुए।
</p>
<p>
जवाब में, भगवान कृष्ण ने लोगों को भगवान इंद्र की बारिश के प्रकोप से
बचाने के लिए गोवर्धन पर्वत को अपनी छोटी उंगली से उठा लिया। अपने
भक्तों के प्रति प्रेम और भक्ति का यह कार्य उनकी दिव्य शक्ति और सरल
विश्वास और समर्पण के महत्व का प्रमाण है।
</p>
<h2>रास लीला</h2>
<p>
रास लीला प्रेम और भक्ति का एक गहरा और रहस्यमय नृत्य है। वृन्दावन के
चांदनी आकाश के नीचे गोपियों के साथ भगवान कृष्ण का नृत्य व्यक्तिगत
आत्मा के परमात्मा के साथ मिलन का प्रतीक है।