-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2236 lines (1931 loc) · 103 KB
/
index.html
File metadata and controls
2236 lines (1931 loc) · 103 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.0">
<title>MASNOON DUA</title>
<!-- SEO TAGS -->
<meta name="description" content="Masnoon Dua - A comprehensive collection of authentic daily Islamic supplications (duas) with translations and references. Strengthen your faith with Masnoon Duas for every occasion.">
<meta name="keywords" content="Masnoon Duas, Islamic Duas, Daily Duas, Supplications, Quranic Duas, Sunnah Duas, Islamic Prayers, Duas with Translation, Islamic Supplications, Powerful Duas">
<meta name="author" content="AbdulAhad">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<meta property="og:title" content="Masnoon Dua - Daily Islamic Supplications">
<meta property="og:description" content="Discover a rich collection of authentic Masnoon Duas for daily life. Strengthen your connection with Allah through Sunnah and Quranic supplications.">
<!-- FAVICON -->
<link rel="icon" type="image/png" href="1.gif">
<!-- CSS STYLING -->
<!-- <link rel="stylesheet" href="style.css"> -->
<!-- MASTER BRANCH STYLING -->
<style>
*{
margin: 0;
padding: 0;
}
/* Styling the main container */
#master-dev {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 15px;
padding: 20px;
background-color: #f0f0f0;
}
#master-dev > div {
flex: 1 1 calc(30% - 15px);
max-width: calc(25% - 15px);
min-width: 220px;
height: 220px;
text-align: center;
padding: 35px;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(15, 124, 240, 0.3);
color: white;
font-size: 24px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
transition: transform 0.1s ease-out;
}
#master-dev > div:hover {
transform: scale(1.007);
box-shadow: 0 20px 50px rgb(255, 194, 26);
}
/* Media Queries */
@media (max-width: 900px) {
#master-dev > div {
flex: 1 1 calc(50% - 15px);
max-width: calc(50% - 15px);
}
}
@media (max-width: 600px) {
#master-dev > div {
flex: 1 1 90%;
max-width: 90%;
}
}
#master-dev > div a {
display: block;
width: 100%;
height: 100%;
text-decoration: none;
color: white;
}
/* Header Styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
top: 0;
position: sticky;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
padding: 20px;
border-radius: 6px;
z-index: 1000; /* issy sub se uper rkho bai */
}
/* Day-Night Toggle Button */
.theme-switch {
width: 110px;
height: 50px;
background-color: #ffffff;
border-radius: 30px;
box-shadow: inset 0 0 5px 4px rgba(255, 255, 255, 1),
inset 0 0 20px 1px rgba(0, 0, 0, 0.488), 10px 20px 30px rgba(0, 0, 0, 0.096),
inset 0 0 0 3px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
cursor: pointer;
position: relative;
transition: transform 0.4s;
}
/* 3-d hover animation */
.theme-switch:hover {
-webkit-transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
}
/* Toggle Effect */
.theme-switch::before {
content: "";
position: absolute;
width: 35px;
height: 35px;
background: linear-gradient(130deg, #757272 10%, #ffffff 11%, #726f6f 62%);
border-radius: 50%;
top: 10px;
left: 10px;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3), 10px 10px 10px rgba(0, 0, 0, 0.3);
transition: 0.4s;
}
/* Dark Mode */
body.dark-mode {
background-color: #222;
color: white;
}
body.dark-mode #master-dev {
background-color: #222;
}
body.dark-mode #lower_parts{
background-color: #222;
}
body.dark-mode #master-dev > div {
background: linear-gradient(43deg, rgb(50, 60, 130) 0%, rgb(140, 60, 140) 46%, rgb(200, 120, 50) 100%);
}
body.dark-mode header {
background: linear-gradient(43deg, rgb(30, 42, 85) 0%, rgb(120, 40, 120) 46%, rgb(180, 100, 30) 100%);
}
body.dark-mode footer {
background: linear-gradient(43deg, rgb(30, 42, 85) 0%, rgb(120, 40, 120) 46%, rgb(180, 100, 30) 100%);
}
body.dark-mode .container_2 {
background: linear-gradient(43deg, rgb(30, 42, 85) 0%, rgb(120, 40, 120) 46%, rgb(180, 100, 30) 100%);
}
body.dark-mode .cover {
background: linear-gradient(43deg, rgb(50, 60, 130) 0%, rgb(140, 60, 140) 46%, rgb(200, 120, 50) 100%);
}
body.dark-mode .scroll-btn {
background: linear-gradient(43deg, rgb(50, 60, 130) 0%, rgb(140, 60, 140) 46%, rgb(200, 120, 50) 100%);
}
/* When toggled */
.theme-switch.active::before {
left: 65px;
background: linear-gradient(315deg, #000000 0%, #414141 70%);
}
header h1{
font-size: 2rem;
color: rgb(255, 199, 45);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* Mobile size */
@media (max-width: 768px) {
.theme-switch {
width: 80px;
height: 40px;
}
.theme-switch::before {
width: 30px;
height: 30px;
top: 5px;
left: 5px;
}
.theme-switch.active::before {
left: 43px;
}
header h1{
font-size: 1.5rem;
}
}
@media (max-width: 480px) {
.theme-switch {
width: 60px;
height: 30px;
}
.theme-switch::before {
width: 20px;
height: 20px;
top: 5px;
left: 5px;
}
.theme-switch.active::before {
left: 20px;
}
header h1{
font-size: 1.2rem;
}
}
/* Footer */
footer {
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
text-align: center;
padding: 40px;
border-radius: 4px;
display: flex;
justify-content: space-around;
}
</style>
<!-- SECTIONS STYLING -->
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
}
.book {
position: relative;
border-radius: 10px;
width: 100%;
max-width: 1000px;
height: 395px;
background: rgb(200, 80, 192);
display: flex;
align-items: center;
justify-content: center;
color: #000;
transition: transform 0.5s;
font-size: 50%;
font-weight: bold;
}
.cover {
top: 0;
position: absolute;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
width: 100%;
height: 100%;
border-radius: 10px;
cursor: pointer;
transition: transform 0.5s;
transform-origin: 0;
display: flex;
align-items: center;
justify-content: center;
/* set text size */
font-size: 25%;
font-weight: bold;
}
.book:hover .cover {
transform: rotateY(-88deg);
box-shadow: 1px 1px 12px rgb(120, 38, 198);
}
p {
font-size: 20px;
font-weight: bolder;
}
#lower_parts {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 15px;
padding: 20px;
background-color: #f0f0f0;
}
#lower_parts > div {
flex: 1 1 calc(95.33% - 15px);
max-width: calc(95.33% - 15px);
min-width: 250px;
text-align: center;
padding: 35px;
background-color: #253038;
color: white;
font-size: 25%;
font-weight: bold;
border-radius: 10px;
box-shadow: 2px 2px 10px rgb(255, 194, 26);
}
/* Tablet View */
@media (max-width: 1024px) {
#lower_parts > div {
flex: 1 1 calc(95.33% - 15px);
max-width: calc(95.33% - 15px);
}
}
/* Mobile View */
@media (max-width: 768px) {
#lower_parts {
flex-direction: column;
}
#lower_parts > div {
flex: 1 1 100%;
max-width: 100%;
}
}
/* Mobile View */
@media (max-width: 768px) {
.book {
width: 100%;
height: auto;
min-height: 250px; /* Adjust height dynamically */
}
.cover {
height: 100%;
}
}
/* text manupulation */
.book p {
font-size: clamp(23px, 3vw, 36px); /* Min 16px, Max 32px */
font-weight: bold;
text-align: center;
}
.cover p {
font-size: clamp(23px, 3vw, 36px);
}
.cover span {
font-size: clamp(20px, 2vw, 24px);
}
</style>
<!-- SCROLL BAR DESIGN -->
<style>
/* addign a cursor */
* {
cursor:-moz-grabbing;
}
/* Styling the scroll wheel */
body {
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: rgb(65, 88, 208) rgb(200, 80, 192);
scroll-behavior: smooth;
}
/* Chrome, Edge, Safari */
::-webkit-scrollbar{
width: 15px; /* Thin scrollbar */
border-radius: 5px;
scroll-behavior: smooth;
}
::-webkit-scrollbar-thumb {
background-color: rgb(200, 80, 192);
border-radius: 4px;
scroll-behavior: smooth;
}
::-webkit-scrollbar-track {
background: rgb(65, 88, 208);
scroll-behavior: smooth;
}
</style>
<!-- BUCKLE TO TOP -->
<style>
/* Scroll to top button */
#scrollToTop {
position: fixed;
bottom: 20px;
right: 20px;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
border: 2px;
padding: 12px 18px;
font-size: 18px;
cursor: pointer;
border-radius: 10px;
transition: all 0.3s ease-in-out;
opacity: 0;
z-index: 1000;
}
#scrollToTop:hover {
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
transform: scale(1.19);
box-shadow: 4px 4px 10px rgba(253, 194, 33, 0.9);
}
/* Fade-in effect when visible */
#scrollToTop.show {
display: block;
opacity: 1;
}
</style>
<!-- FOOTER SECTION -->
<style>
/* Footer Styling */
.footer {
display: block;
justify-content: space-around;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
color: white;
text-align: center;
padding: 20px;
font-family: Arial, sans-serif;
}
/* Email Box */
.email-box {
display: inline-block;
padding: 10px 20px;
background: linear-gradient(43deg, rgb(30, 42, 85) 0%, rgb(120, 40, 120) 46%, rgb(180, 100, 30) 100%);
border-radius: 8px;
transition: transform 0.5s ease, background 0.7s ease;
}
/* Email Link */
.email-link {
color: rgb(200, 80, 192);
text-decoration: none;
font-weight: bold;
display: inline-block;
transition: color 0.3s ease;
}
/* Hover Effects */
.email-box:hover {
transform: translateY(-6px);
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
/* bg glow */
box-shadow: 5px 5px 15px rgba(230, 176, 16, 0.858);
}
.email-box:hover .email-link {
color: rgb(8, 39, 197);
}
</style>
<!-- CURSOR COLOR SELECTION CHANGE -->
<style>
::selection {
background-color: rgb(255, 204, 112);
color: #333;
}
/* For webkit browsers (Chrome, Safari) */
::-moz-selection {
background-color: rgb(255, 204, 112);
color: #333;
}
/* For Firefox */
::selection {
background-color: rgb(255, 204, 112);
color: #333;
}
</style>
<!-- SECOND BUTTON STYLING -->
<style>
/* Button inside Header */
.scroll-btn {
position: fixed;
top: 109px;
left: 10px;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
color: white;
padding: 6px 10px;
border: none;
border-radius: 9px;
font-size: 0.85rem;
font-weight: bold;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
z-index: 3;
}
/* Hover Effect */
.scroll-btn:hover {
transform: scale(1.08);
filter: brightness(1.1);
box-shadow: 2px 2px 5px rgba(253, 194, 33, 0.9);
}
/* Responsive Design */
@media (max-width: 700px) {
.scroll-btn {
padding: 5px 8px;
font-size: 0.75rem;
}
}
@media (max-width: 400px) {
.scroll-btn {
padding: 4px 6px;
font-size: 0.7rem;
border-radius: 3px;
}
}
</style>
<!-- MESSAGE FORM STYLING -->
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container_2 {
width: 100%;
max-width: 1400px;
height: 100%;
max-height: 600px;
display: flex;
justify-content: space-evenly;
align-items: center;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
padding: 2em;
border-radius: 4px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
gap: 20px;
}
/* Arabic text block */
.container_2 > div:first-child {
background: rgba(255, 255, 255, 0.1);
padding: 1.5em;
border-radius: 10px;
text-align: center;
color: white;
font-family: Arial, sans-serif;
font-weight: bold;
font-size: clamp(1rem, 2vw, 1.5rem); /* Adjusting based on screen size */
max-width: 600px;
max-height: 430px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
transform: translateY(0);
transition: transform 0.3s ease-out;
}
/* Responsive Font Adjustments */
@media (max-width: 768px) {
.container_2 > div:first-child {
font-size: 1rem; /* Mobile view ke liye chhota */
}
}
@media (max-width: 480px) {
.container_2 > div:first-child {
font-size: 0.9rem; /* Chhoti screens ke liye aur reduce */
}
}
/* hover animation on first child */
.container_2 > div:first-child:hover {
transform: translateY(-5px);
box-shadow: 0px 10px 20px rgba(239, 187, 28, 0.88);
/* making the animation smooth */
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
/* card_2 container_2 */
.card_2 {
width: 210px;
height: 254px;
border-radius: 8px;
background: linear-gradient(43deg, rgb(30, 42, 85) 0%, rgb(120, 40, 120) 46%, rgb(180, 100, 30) 100%);
display: flex;
flex-direction: column;
gap: 5px;
padding: 0.4em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
/* Individual card_2s */
.card_2 p {
flex: 1;
overflow: hidden;
cursor: pointer;
border-radius: 8px;
transition: flex 0.5s;
background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.card_2 p:hover {
flex: 4;
}
.card_2 p span {
padding: 0.2em;
text-align: center;
transform: rotate(0deg);
transition: transform 0.5s;
text-transform: uppercase;
color: #333;
font-weight: bold;
letter-spacing: 0.1em;
position: relative;
z-index: 1;
}
.card_2 p:hover span {
transform: rotate(0);
}
.card_2 p::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.1);
z-index: 0;
transition: opacity 0.5s;
pointer-events: none;
opacity: 0;
}
.card_2 p:hover::before {
opacity: 1;
}
/* ==================== RESPONSIVE DESIGN ==================== */
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
.container_2 {
flex-direction: column;
padding: 1.5em;
}
.card_2 {
width: 180px;
height: 220px;
}
.container_2 > div:first-child {
max-width: 100%;
}
}
/* mobile */
@media (max-width: 768px) {
.card_2 {
flex-direction: column;
width: 100%;
height: auto;
padding: 0.5em;
}
.card_2 p {
width: 100%;
min-height: 40px;
transition: all 0.5s ease;
}
.card_2 p:hover {
min-height: 150px; /* Expand hone ka space milega */
}
}
/* mobile */
@media (max-width: 390px) {
.card_2 {
flex-direction: column;
width: 100%;
height: auto;
padding: 0.2em;
}
.card_2 p {
width: 100%;
min-height: 20px;
transition: all 0.5s ease;
}
.card_2 p:hover {
min-height: 120px; /* Expand hone ka space milega */
}
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<img src="window.gif" alt="Logo" height="5%" width="5%" style="border-radius: 20%;">
<h1><em>Basic Duas Being A Muslim We Must Learn.</em></h1>
<div class="theme-switch" onclick="toggleTheme()"></div>
</header>
<!-- MAIN CONTENT -->
<div id="master-dev">
<div>
<a href="#section1"> <br> <u>Education</u> <br> <span>علم اور ہدایت کی دعائیں</span></a>
</div>
<div>
<a href="#section2"> <br> <u>Eat/Drink</u> <br> <span>کھانے پینے سے پہلے اور بعد کی دعا</span></a>
</div>
<div>
<a href="#section3"> <br> <u>Clothings</u> <br> <span>کپڑے پہننے اور اتارنے کی دعائیں</span> </a>
</div>
<div>
<a href="#section4"> <br> <u>Travelling</u> <br> <span>سفر کی دعائیں</span> </a>
</div>
<div>
<a href="#section5"> <br> <u>Health & Sickness</u> <br> <span>تندرستی، بیماری اور شفا کی دعائیں</span> </a>
</div>
<div>
<a href="#section6"> <br> <u>Daily Routine</u> <br> <span>سونے، جاگنے، گھر سے نکلنے اور گھر آنے کی دعائیں</span> </a>
</div>
<div>
<a href="#section7"> <br> <u>Worship (Ibadah)</u> <br> <span>نماز، روزہ، قرآن اور عبادت سے متعلق دعائیں</span> </a>
</div>
<div>
<a href="#section8"> <br> <u>Protection</u> <br> <span>ہر طرح کی آفات اور مشکلات سے بچنے کی دعائیں</span> </a>
</div>
<div>
<a href="#section9"> <u>Social & Family Life</u> <br> <span>والدین، رشتہ داروں، دوستوں اور گھر والوں کے لیے دعائیں</span> </a>
</div>
<div>
<a href="#section10"> <br> <u>Death & Afterlife</u> <br> <span>میت، مغفرت، قبر اور آخرت کی دعائیں</span> </a>
</div>
<div>
<a href="#section11"> <br> <u>AYAT-UL-KURSI</u> <br> <span>آیت الکرسی</span> </a>
</div>
<div>
<a href="#section12"> <br> <u>Dua After Azan</u> <br> <span>اذان کے بعد کی دعا</span> </a>
</div>
<div>
<a href="#section13"> <br> <u>The Qunut In Al-Witr</u> <br> <span>وتر میں دعائے قنوت</span> </a>
</div>
</div>
<!-- ============================================================= -->
<!-- FIRST SECTION DEFINITION - BASICALLY EDUCATION RELEVANT DUA'S -->
<div id="section1" style="display: flex; justify-content: space-around; align-items: center; text-align: center; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 10px;">
<p style="font-size: 30px; font-weight: bold; color: #c850c8; text-transform: uppercase; margin: 0;">
<u>Education</u>
</p>
<p style="font-size: 30px; color: #fcc92e; font-family: 'Noto Nastaliq Urdu', serif; margin: 0;">
علم اور ہدایت کی دعائیں
</p>
</div>
<div id="lower_parts">
<!-- first -->
<div class="book">
<p>
اللَّهُمَّ انْفَعْنِي بِمَا عَلَّمْتَنِي وَعَلِّمْنِي مَا يَنْفَعُنِي وَزِدْنِي عِلْمًا وَالْحَمْدُ لِلَّهِ عَلَى كُلِّ حَالٍ <br><br>
<span>O Allah, benefit me from what You have taught me, and teach me what will benefit me, and increase me in knowledge.</span> <br> <br>
<span>
اے اللہ! مجھے اس علم سے نفع عطا فرما جو تُو نے مجھے سکھایا، اور مجھے وہ علم سکھا جو میرے لیے نفع مند ہو، اور میرے علم میں اضافہ فرما
</span>
<br>
<span style="font-size: medium;">📖 Reference: Sunan Ibn Majah 251</span>
</p>
<div class="cover">
<p>Prayer to seek knowledge <br> <span>علم تلاش کرنے کی دعا</span></p>
</div>
</div>
<!-- second -->
<div class="book">
<p>
وَقُلْ رَبِّ زِدْنِي عِلْمًا <br><br>
<span>"And say, 'My Lord, increase me in knowledge.'"</span> <br> <br>
<span>
اور کہو اے میرے رب میرے علم میں اضافہ فرما۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Surah Taha (20:114)</span>
</p>
<div class="cover">
<p>Seeking Increase in Knowledge.<br> <span>علم میں اضافے کی تلاش</span></p>
</div>
</div>
<!-- third -->
<div class="book">
<p>
اللَّهُمَّ إِنِّي أَسْأَلُكَ عِلْمًا نَافِعًا، وَعَمَلًا مُتَقَبَّلًا، وَرِزْقًا طَيِّبًا <br><br>
<span>"O Allah! I ask You for beneficial knowledge, accepted deeds, and pure provision."</span> <br> <br>
<span>
اے اللہ! میں تجھ سے نفع بخش علم، مقبول عمل اور پاکیزہ رزق کا سوال کرتا ہوں۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Sunan Ibn Majah 925</span>
</p>
<div class="cover">
<p>The virtue of knowledge and the pray for beneficial knowledge <br> <span>علم کی فضیلت اور فائدہ مند علم کی دعا</span></p>
</div>
</div>
<!-- fourth -->
<div class="book">
<p>
رَبِّ هَبْ لِى حُكْمًۭا وَأَلْحِقْنِى بِٱلصَّـٰلِحِينَ <br><br>
<span>“My Lord! Grant me wisdom, and join me with the righteous.</span> <br> <br>
<span>
اے میرے رب! مجھے حکمت عطا کر اور مجھے نیک لوگوں کے ساتھ شامل فرما۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Surah Ash-Shu'ara (26:83)</span>
</p>
<div class="cover">
<p>Dua for Knowledge & Wisdom<br> <span>علم و حکمت کی دعا</span></p>
</div>
</div>
<!-- FIFTH -->
<div class="book">
<p>
قَالَ رَبِّ ٱشْرَحْ لِى صَدْرِى * وَيَسِّرْ لِىٓ أَمْرِى * وَٱحْلُلْ عُقْدَةًۭ مِّن لِّسَانِى * يَفْقَهُوا۟ قَوْلِى<br><br>
<span>"My Lord! Expand for me my chest, and ease for me my task, and untie the knot from my tongue, so they may understand my speech."</span> <br> <br>
<span>
اے میرے رب! میرا سینہ کھول دے، اور میرا کام آسان کر دے، اور میری زبان کی گرہ کھول دے تاکہ لوگ میری بات سمجھ سکیں۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Surah Taha (20:25-28)</span>
</p>
<div class="cover">
<p>Dua for Understanding & Wisdom<br> <span>فہم و دانش کی دعا</span></p>
</div>
</div>
</div>
<!-- ============================================================= -->
<!-- SECOND SECTION DEFINITION - BASICALLY EAT/DRINK RELEVANT DUA'S -->
<div id="section2" style="display: flex; justify-content: space-around; align-items: center; text-align: center; padding: 20px; background: rgba(255, 255, 255, 0.1); border-radius: 10px;">
<p style="font-size: 30px; font-weight: bold; color: #c850c8; text-transform: uppercase; margin: 0;">
<u>Eat/Drink</u>
</p>
<p style="font-size: 30px; color: #fcc92e; font-family: 'Noto Nastaliq Urdu', serif; margin: 0;">
<span>کھانے پینے سے پہلے اور بعد کی دعا</span>
</p>
</div>
<div id="lower_parts">
<!-- first -->
<div class="book">
<p>
بِسْمِ اللَّهِ وَبَرَكَةِ اللَّهِ <br><br>
<span>(I eat) in the name of Allah and with the blessing of Allah.</span> <br> <br>
<span>
اللہ کے نام سے (کھاتا ہوں) اور اللہ کی برکت کے ساتھ۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Sunan Abi Dawood 3767</span>
</p>
<div class="cover">
<p>Dua (Before Eating)<br> <span>کھانا کھنے سے پہلے کی دعا</span></p>
</div>
</div>
<!-- second -->
<div class="book">
<p>
بِسْمِ اللَّهِ أَوَّلَهُ وَآخِرَهُ <br><br>
<span>In the name of Allah, in its beginning and in its end.</span> <br> <br>
<span>
اللہ کے نام سے، ابتدا میں بھی اور آخر میں بھی۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Sunan Abi Dawood 3767, Tirmidhi 1858</span>
</p>
<div class="cover">
<p>(If You Forget to Say Bismillah Before Eating)<br> <span>کھانا بھول کر شورو کرنے کی دعا</span></p>
</div>
</div>
<!-- third -->
<div class="book">
<p>
الْحَمْدُ لِلَّهِ الَّذِي أَطْعَمَنَا وَسَقَانَا وَجَعَلَنَا مُسْلِمِينَ <br><br>
<span>"Praise be to Allah Who has given us food and drink and made us Muslims."</span> <br> <br>
<span>
اللہ کا شکر ہے جس نے ہمیں کھانا پینا دیا اور ہمیں مسلمان بنایا۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Sunan Abi Dawood 3850, Tirmidhi 3458</span>
</p>
<div class="cover">
<p>Dua (After Eating)<br> <span>کھانا کھنے کے بعد کی دعا</span></p>
</div>
</div>
<!-- fourth -->
<div class="book">
<p>
اللّهُـمَّ بارِكْ لَهُمْ فيما رَزَقْـتَهُم،
وَاغْفِـرْ لَهُـمْ وَارْحَمْهُمْ <br><br>
<span>O Allah! Bless them in what You have provided for them, forgive them, and have mercy on them.</span> <br> <br>
<span>
اے اللہ! جو رزق تُو نے انہیں دیا ہے اس میں برکت عطا فرما، اور ان کی مغفرت فرما، اور ان پر رحم فرما۔
</span>
<br>
<span style="font-size: medium;">📖 Reference: Muslim 3/1615 & Sahih Muslim 2042.</span>
</p>
<div class="cover">
<p>Mehman Ke Liye Dua (Dua for the Host After Eating at Their Place)<br> <span>مہمان میزبان کے لیے دعا کرے۔</span></p>
</div>
</div>
<!-- FIFTH -->
<div class="book" style="display:flexbox; justify-content: space-around;">
<p> BEFORE (پہلے):
<br><br>
Arabic:
بِسْمِ اللَّهِ
<br>