-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1104 lines (1015 loc) · 80.2 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>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-919CJ19C8Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-919CJ19C8Q');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="ReflectHub">
<meta property="og:description" content="Watch these videos sincerely and reflect upon them deeply, so you may find truth and accept it!">
<meta property="og:image" content="https://raw.githubusercontent.com/reflecthub/reflecthub.github.io/main/Homepage.png">
<meta property="og:url" content="https://reflecthub.github.io">
<meta property="og:type" content="website">
<link rel="manifest" href="/manifest.json">
<title>Reflect !</title>
<link rel="icon" type="image/x-icon" href="./icon2.png">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body style="background-color:#c8ffcd; ;">
<!-- Navbar -->
<nav class="" style="margin-bottom: 0 !important;border: none !;border-radius: 10px;margin-left:1.5%;margin-right: 1.5%; margin-top: 1%;">
<div class="container-fluid justify-content-center pop-up-animate1" style="background-color: #2f4f4f;border-radius: 10px;"> <!-- Center the contents -->
<a class="navbar-brand" href="https://reflecthub.github.io/">
<img src="./icon5.png" alt="Logo" class="d-inline-block align-top">
</a>
<h1 id="typing-effect" class="swipers responsive-description1" style="
font-weight: bold;
color:rgb(108, 231, 209) ;
background-clip: text;
-webkit-background-clip: text;
/* -webkit-text-fill-color: transparent; */
-webkit-text-stroke: 0.57px black;
text-align: center;
max-width: fit-content;
">
Reflect Hub
</h1>
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center; margin-top: 10px;">
<div class="panel-icon pop-up-animate1" id="panelIcon">
<h6>Contact & Suggest me</h6>
</div>
<span class="citation" data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Translate</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<span>Click here to translate to any language 🌐<br><br>
<i> -Default is set to Arabic (العربية)</i>
<br><br>
<b><i>Powered by Google Translate</i></b>
</span>
</div>">
<a href="https://reflecthub-github-io.translate.goog/?_x_tr_sl=en&_x_tr_tl=ar&_x_tr_hl=en-US&_x_tr_pto=wapp" style="cursor: help;">
<div style="display: inline-flex; justify-content: center; align-items: center; width: 50px;">
<img src="./Logos/Translate.png" style="height: 80%; width: 80%; margin-top: 0.56rem;">
</div>
</a>
</span>
</div>
</div>
<style>
#head::before {
content: '';
position: absolute;
top: -23.8px; /* Moves the semi-circle above the element */
left: 1.5%; /* Adjusts the space from the left */
right: 1.5%; /* Adjusts the space from the right */
height: 40px; /* Keeps the height to form the semi-circle */
background-color: #2f4f4f; /* Semi-circle color */
border-radius: 50%;
z-index:0; /* Ensure it stays behind the text */
}
</style>
</nav>
<div id="info-box" style='display:flex;justify-content:center; align-items:center'></div>
<div style=" background-color: #c8ffcd;" >
<h5 id="head" style="
text-align: center;
font-family: Sour Gummy;
background-color: #c8ffcd;
font-weight: 600;
padding: 15px 20px;
margin-bottom: 0;
border-radius: 8px;
letter-spacing: 1.2px;
color: #2f4f4f;
position: relative;
overflow: hidden; /* Prevents the pseudo-element from overflowing outside */
" class="pop-up-animate1">
Read Quran <sup> <span style="display: inline-flex; justify-content: center; align-items: center; text-align: center; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Why Quran?</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>The Quran is the only book on earth which has been in its original form since its origin and has <b>never</b> been corrupted and gone through any editing process.<br><br>
<span style='background-color:#eab8e4; display:inline'>It is certainly We Who have revealed the Reminder, and it is certainly We Who will preserve it [From corruption].<br>[Quran 15:9]</span><br><br>
If all the books in the world were to disappear from face of earth, then Quran is the only book which can be bought back to its original form, cover to cover, word by word <br>[Because millions of people have memorized it cover to cover].<br><br>
Quran also contains various Scientific and Historical facts which were unknown at the time of its revelation (You will get to know them by watching below videos).<br>
</i>
</div>">
[i]
</span></sup> and watch these videos<sup><span style="display: inline-flex; justify-content: center; align-items: center; text-align: center; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Handpicked logical content</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>Videos are hosted on YouTube and belong to the respective content creators.
</i>
</div>">
[i]
</span></sup> sincerely by reflecting upon them deeply, so that you may find truth and accept it!
<br><br>
<a href="https://www.quran.com" target="_blank" style="text-decoration: none;">
<button style="display: inline-block; border-radius: 10px; cursor: pointer; padding: 10px 20px; transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 0 10px rgba(0, 172, 255, 0.6);
animation: glow-animation 1.5s infinite alternate, scale-animation 0.1s ease;"
onmousedown="this.style.transform='scale(0.95)';"
onmouseup="this.style.transform='scale(1)';"
onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='0 0 10px rgba(0, 172, 255, 0.6)';"
onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 0 100px rgba(0, 172, 255, 1)';">
Read the Quran
</button>
</a>
<a href="https://www.miracles-of-quran.com/index.html" target="_blank" style="text-decoration: none;">
<button style="display: inline-block; border-radius: 10px; cursor: pointer; padding: 10px 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; margin-top: 5px; margin-left: 10px;
box-shadow: 0 0 10px rgba(0, 172, 255, 0.6);
animation: glow-animation 1.5s infinite alternate, scale-animation 0.1s ease;"
onmousedown="this.style.transform='scale(0.95)';"
onmouseup="this.style.transform='scale(1)';"
onmouseout="this.style.transform='scale(1)'; this.style.boxShadow='0 0 10px rgba(0, 172, 255, 0.6)';"
onmouseover="this.style.transform='scale(1.1)'; this.style.boxShadow='0 0 100px rgba(0, 172, 255, 1)';">
Scientific Miracles of Quran
</button>
</a>
<style>
@keyframes glow-animation {
0% {
box-shadow: 0 0 10px rgba(0, 172, 255, 0.6);
}
50% {
box-shadow: 0 0 20px rgba(0, 172, 255, 1);
}
100% {
box-shadow: 0 0 10px rgba(0, 172, 255, 0.6);
}
}
@keyframes scale-animation {
0% {
transform: scale(1);
}
100% {
transform: scale(0.95);
}
}
</style>
</h5 >
<div style="display: flex; justify-content: center; align-items: center; height: 3.5vh;" class="pop-up-animate1">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Experience</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i> <br><span style='color:lime; background-color:black;border-radius:20px;padding:2px;'>❗ Use Laptop/Desktop for better experience❗ </span><br><br>If you are on a mobile device then it is recommended to enable Desktop mode <br> <b>1. On top right Click on ⋮ or ☰ <br> 2. Select 'Switch to Desktop mode' ☑.<br><br><span style='color:red;font-size:14px'>⚠️ Some sections of this website does not provide best experience on mobile devices.</span></i></b>
</div>">
[💻?]
</span>
</div>
</div>
<div class="menu-container d-flex ">
<div class="menu-icon pop-up-animate" onclick="toggleMenu()"><img src="./hamburger.svg"/></div>
<div class="btn-group btn-group-toggle pop-up-animate menu-links" data-toggle="buttons">
<button id='men-d1' class="btn btn-secondary rounded-pill" onclick="showDiv('div1')">Rational 🧠</button>
<button id='men-d2' class="btn btn-secondary rounded-pill" onclick="showDiv('div2')">Scientific 🔬</button>
<button id='men-d3' class="btn btn-secondary rounded-pill" onclick="showDiv('div3')">Inspirational ✨</button>
<button id='men-d4' class="btn btn-secondary rounded-pill" onclick="showDiv('div4')">Reactions 💻</button>
<button id='men-d5' class="btn btn-secondary rounded-pill" onclick="showDiv('div5')">Verses from Quran 📖</button>
<button id='men-d6' class="btn btn-secondary rounded-pill" onclick="showDiv('div6')">Declaration of faith ☝️</button>
<button id='men-d7' class="btn btn-secondary rounded-pill" onclick="showDiv('div7')">Topics to Ponder 🤔</button>
</div>
</div>
<div class="search-container">
<button id="search-button" class="search-btn">
<img src="https://ka-p.fontawesome.com/releases/v6.6.0/svgs/regular/magnifying-glass.svg?v=2&token=a463935e93" style="display: inline-block;height: 15px; width: 15px;">
<span class="search-icon"> Search</span>
<span class="ctrl-k">ctrl+k</span>
</button>
</div>
<!-- Hidden search bar that appears with Ctrl+K -->
<div id="search-wrapper">
<div class="blur-background"></div>
<div style="position: relative; width: 100%; padding: 20px;" class="pop-up-animate">
<input type="text" id="search-bar" placeholder="Search by description, channel name, title, video ID..." >
<div id="results"></div>
<div id="results1"></div>
</div>
</div>
<!-- Content Sections with Expanded Height -->
<div id="content-container" class="content-container">
<div id="div1" class="content-div table-wrapper ">
<table class="custom-table rational">
<thead>
<div style="position: relative; width: 100%; height: auto;">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Rational</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i> Videos that explore logical and rational arguments, helping viewers to understand deeper truths through structured reasoning.</i>
</div>">
Rational 🧠
</span>
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row; position: absolute; right: 0;"
class="citation"
data-info="<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>For Mobile users</div><div style='display:flex; justify-content:center; align-items:center; text-align: center;'><i>Scrolling ↔️ across the table left and right is enabled</i></div>">
[📱?]
</span>
</div>
<tr>
<th>S.No</th>
<th>Channel</th>
<th>Title</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="div2" class="content-div table-wrapper ">
<table class="custom-table scientific">
<thead>
<div style="position: relative; width: 100%; height: auto;">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Science</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>Content related to scientific explanations and evidence, emphasizing the intersection of science and belief.</i>
</div>">
Scientific🔬
</span>
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row; position: absolute; right: 0;"
class="citation"
data-info="<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>For Mobile users</div><div style='display:flex; justify-content:center; align-items:center; text-align: center;'><i>Scrolling ↔️ across the table left and right is enabled</i></div>">
[📱?]
</span>
</div>
<tr>
<th>S.No</th>
<th>Channel</th>
<th>Title</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="div3" class="content-div table-wrapper ">
<table class="custom-table inspirational">
<thead>
<div style="position: relative; width: 100%; height: auto;">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Inspirational</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>Content that inspires viewers to reflect on their lives and the world around them, encouraging positive change and growth.</i>
</div>">
Inspirational ✨
</span>
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row; position: absolute; right: 0;"
class="citation"
data-info="<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>For Mobile users</div><div style='display:flex; justify-content:center; align-items:center; text-align: center;'><i>Scrolling ↔️ across the table left and right is enabled</i></div>">
[📱?]
</span>
</div>
<tr>
<th>S.No</th>
<th>Channel</th>
<th>Title</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="div4" class="content-div table-wrapper">
<table class="custom-table reactions">
<thead>
<div style="position: relative; width: 100%; height: auto;">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Reactions</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>A collection of video reactions of individuals as they watch and reflect on various topics, providing insight into different perspectives.</i>
</div>">
Reactions 💻
</span>
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row; position: absolute; right: 0;"
class="citation"
data-info="<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>For Mobile users</div><div style='display:flex; justify-content:center; align-items:center; text-align: center;'><i>Scrolling ↔️ across the table left and right is enabled</i></div>">
[📱?]
</span>
</div>
<tr>
<th>S.No</th>
<th>Channel</th>
<th>Title</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="div5" class="content-div table-wrapper pop-up-animate verse-style verses">
<div style="position: relative; width: 100%; height: auto;margin-bottom: 2%">
<span style="font-weight: bold; display: inline-flex; justify-content: center; align-items: center; text-align: center; font-size: 20px; flex-direction: row;color: rgb(140, 227, 230);"
class="citation"
data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Verses from Quran</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>A collection of verses from Quran emphasizing on reflecting upon the creations.</i>
</div>">
Verses from Quran 📖
</span>
</div>
<div class="verse-container"></div>
</div>
<div id="div6" class="content-div table-wrapper pop-up-animate verse-style faith">
<div style="background-color: #ffffff; color:black; font-family: Georgia, 'Times New Roman', Times, serif; font-style: italic; border: 15px solid rgb(46, 236, 198); border-radius: 45px; line-height: 1.5;
letter-spacing: 0.6px;
text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
margin: 0;">
<h3 >
<b>Entering into Islam is very simple</b><br><br>
You just need to <i>declare the faith</i>, known as the <b>Shahada</b> (<i>declaration of faith ☝️</i>)<br>
<span class="citation" data-info="
<div style='font-weight:bold; display:flex; justify-content:center; text-align: center; text-decoration: underline;'>Attention</div>
<div style='display:flex; justify-content:center; text-align: center;'>
<i>Take your declaration of faith (Shahada) only after you have realized what Islam truly is and you are ready to embrace it.<br><br>
There is no hurry, take your time to learn about Islam and its teachings. Once you are ready, you can declare your faith by reciting the Shahada.</i>
</div>">
[i]
</span>
<div style="font-size: large; font-style: italic;">
<br>
<h5 style="background-color:#eab8e4; display:inline">
There is no compulsion in religion<br> [Quran
<a href="https://quran.com/2?startingVerse=256" target="_blank">2:256</a>]</h5>
</div><br><br>
<div>
The Shahada in Arabic is as follows:<br><br>
<b>Arabic:</b> <span style="background-color: #d4f7d4;"><b><i>أشهد أن لا إله إلا الله وأشهد أن محمداً رسول الله</i></b></span>
</div>
<br>
<div>
<b>Say in Arabic:</b><span style="background-color: #d4f7d4;"> <b><i>Ash-hadu an la ilaha illallah, wa ash-hadu anna Muhammadur rasulullah</i></b></span>
</div>
<br>
<div>
<b>Translation:</b><span style="background-color: #ccf2ff;"> <b><i>I bear witness that there is no god but Allah, and I bear witness that Muhammad is the messenger of Allah.</i></b></span>
</div>
<br>
<span class="citation" data-info="
<div style='font-weight:bold; display:flex; justify-content:center; align-items:center; text-decoration: underline; text-align: center;'>Onboarding</div>
<div style='display:flex; justify-content:center; align-items:center; text-align: center;'>
<i>This declaration is the core of Islamic belief and affirms that there is no deity but Allah, and Muhammad is His messenger.<br><br> By stating these words with sincere belief, a person embraces Islam and begins their journey as a Muslim.</i>
</div>">
[OnBoarding]
</span>
<!-- <span style="font-size: 16px;"><i> This declaration is the core of Islamic belief and affirms that there is no deity but Allah, and Muhammad is His messenger. By stating these words with sincere belief, a person embraces Islam and begins their journey as a Muslim.</i> </span> -->
</h3>
</div>
</div>
<div id="div7" class="content-div table-wrapper pop-up-animate verse-style faith" style="display: flex; justify-content: center; align-items: center;">
<?xml version="1.0" encoding="UTF-8"?>
<!-- Do not edit this file with editors other than draw.io -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<div id="responsive-svg-container" >
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="740px" height="764px" viewBox="-0.5 -0.5 740 764" content="<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" version="24.8.9"> <diagram name="Page-1" id="8-aDURVAkAx0ODPZd4yA"> <mxGraphModel dx="1235" dy="1714" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0"> <root> <mxCell id="0" /> <mxCell id="1" parent="0" /> <mxCell id="XzCmzyegnEFURFCZ5URi-3" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_2;align=left;labelPosition=right;pointerEvents=1;rotation=90;" vertex="1" parent="1"> <mxGeometry x="389.38" y="-20.000000000000004" width="55" height="218.75" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-4" value="&lt;font style=&quot;&quot;&gt;&lt;span style=&quot;font-weight: bold; font-size: 15px;&quot;&gt;Muslim&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;font style=&quot;&quot;&gt;&lt;i&gt;[Submits his will to God]&lt;/i&gt;&lt;/font&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="250" y="110" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-6" value="&lt;b&gt;&lt;font style=&quot;font-size: 15px;&quot;&gt;Human Being&lt;br&gt;🤵&lt;/font&gt;&lt;/b&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="356.88" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-8" value="&lt;font style=&quot;&quot;&gt;&lt;span style=&quot;font-weight: bold; font-size: 15px;&quot;&gt;Athiest&lt;/span&gt;&lt;br&gt;&lt;font style=&quot;font-size: 13px;&quot;&gt;&lt;i style=&quot;&quot;&gt;/Non-Muslim&lt;/i&gt;&lt;/font&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="460" y="110" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-11" value="&lt;b&gt;Believes in Hereafter&lt;br&gt;✅&lt;/b&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> <mxGeometry x="170" y="110" width="60" height="60" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-12" value="&lt;b&gt;Does not believe in Hereafter&lt;br&gt;❌&lt;/b&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> <mxGeometry x="590" y="100" width="110" height="90" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-14" value="" style="endArrow=classic;html=1;rounded=0;" edge="1" parent="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="309.88" y="170" as="sourcePoint" /> <mxPoint x="309.5" y="270" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-15" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&lt;b&gt;Dies 🪦&lt;/b&gt;&lt;/font&gt;" style="edgeLabel;resizable=0;html=1;;align=center;verticalAlign=middle;" connectable="0" vertex="1" parent="XzCmzyegnEFURFCZ5URi-14"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-17" value="" style="endArrow=classic;html=1;rounded=0;" edge="1" parent="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="519.88" y="170" as="sourcePoint" /> <mxPoint x="519.5" y="270" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-18" value="&lt;font style=&quot;font-size: 16px;&quot;&gt;&lt;b&gt;Dies 🪦&lt;/b&gt;&lt;/font&gt;" style="edgeLabel;resizable=0;html=1;;align=center;verticalAlign=middle;" connectable="0" vertex="1" parent="XzCmzyegnEFURFCZ5URi-17"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-22" value="&lt;font style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Finds out Hereafter does not exists&lt;br&gt;❌&lt;/b&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="341.88" y="320" width="150" height="70" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-30" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_2;align=left;labelPosition=right;pointerEvents=1;direction=south;" vertex="1" parent="1"> <mxGeometry x="240" y="250" width="140" height="70" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-36" value="" style="strokeWidth=2;html=1;shape=mxgraph.flowchart.annotation_2;align=left;labelPosition=right;pointerEvents=1;direction=south;" vertex="1" parent="1"> <mxGeometry x="450" y="250" width="140" height="70" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-37" value="&lt;div style=&quot;&quot;&gt;&lt;b style=&quot;font-size: 14px; background-color: initial;&quot;&gt;&lt;i&gt;Both are Equal&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;font style=&quot;&quot;&gt;&lt;div style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 14px;&quot;&gt;&lt;b&gt;&lt;i&gt;&lt;br&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;b style=&quot;font-size: 14px;&quot;&gt;&lt;div style=&quot;&quot;&gt;&lt;b style=&quot;background-color: initial;&quot;&gt;&lt;i&gt;🟡Muslim : 0&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;i&gt;&lt;div style=&quot;&quot;&gt;&lt;b style=&quot;background-color: initial;&quot;&gt;&lt;i&gt;🟡Non-Muslim:0&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> <mxGeometry x="332.94" y="390" width="167.88" height="80" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-38" value="&lt;font style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Finds Hereafter exists&lt;br&gt;😁&lt;/b&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="170" y="320" width="150" height="70" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-39" value="&lt;font style=&quot;font-size: 15px;&quot;&gt;&lt;b&gt;Finds Hereafter&amp;nbsp; exists&lt;br&gt;😨&lt;/b&gt;&lt;/font&gt;" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1"> <mxGeometry x="527.88" y="320" width="150" height="70" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-41" value="&lt;b&gt;&lt;font style=&quot;&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 11px;&quot;&gt;&lt;u&gt;Advantageous&lt;/u&gt;&lt;/font&gt;&lt;br&gt;&lt;span style=&quot;font-size: 17px;&quot;&gt;🟢Muslim : 100&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;/i&gt;&lt;/font&gt;&lt;/b&gt;" style="text;html=1;align=center;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;" vertex="1" parent="1"> <mxGeometry x="170" y="390" width="150" height="60" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-42" value="&lt;b style=&quot;text-wrap-mode: nowrap;&quot;&gt;&lt;font style=&quot;&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;font style=&quot;font-size: 13px;&quot;&gt;&lt;u&gt;Disadvantageous&lt;/u&gt;&lt;/font&gt;&lt;br&gt;&lt;span style=&quot;font-size: 17px;&quot;&gt;🔴Non-Muslim: -100&lt;/span&gt;&lt;/i&gt;&lt;/font&gt;&lt;/b&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> <mxGeometry x="520" y="400" width="180" height="30" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-49" value="&lt;h1 style=&quot;margin-top: 0px;&quot;&gt;&lt;font style=&quot;font-size: 21px;&quot;&gt;Total Score🟰&lt;/font&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;&lt;div style=&quot;&quot;&gt;&lt;b style=&quot;background-color: initial;&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;Muslim : 100+0= &lt;/span&gt;&lt;font style=&quot;font-size: 17px;&quot;&gt;100&lt;/font&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt; (✅)&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;font style=&quot;&quot;&gt;&lt;div style=&quot;&quot;&gt;&lt;b style=&quot;background-color: initial;&quot;&gt;&lt;i style=&quot;&quot;&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt;Athiest : 0 - 100 = &lt;/span&gt;&lt;font style=&quot;font-size: 17px;&quot;&gt;-100&lt;/font&gt;&lt;span style=&quot;font-size: 13px;&quot;&gt; (❌)&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/font&gt;&lt;p&gt;&lt;/p&gt;" style="text;html=1;whiteSpace=wrap;overflow=hidden;rounded=0;" vertex="1" parent="1"> <mxGeometry x="341.88" y="510" width="180" height="120" as="geometry" /> </mxCell> <mxCell id="XzCmzyegnEFURFCZ5URi-51" value="&lt;div&gt;&lt;font style=&quot;font-size: 16px;&quot;&gt;&lt;b&gt;This world is full of injustice!&lt;/b&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;&lt;i&gt;What will happen to an innocent human being who was killed and the killer was never caught?&lt;/i&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;&lt;i&gt;What will happen to a human being who spent his life in poverty and misery and died without getting any justice?&lt;/i&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;&lt;i&gt;What will happen to a human being who spent his life in luxury and happiness and died without any accountability?&lt;/i&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;&lt;br&gt;&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font style=&quot;font-size: 14px;&quot;&gt;The answer to these questions can only be found in the &lt;/font&gt;&lt;font style=&quot;font-size: 16px;&quot;&gt;&lt;b&gt;&lt;i&gt;concept of Hereafter.&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;&lt;/div&gt;" style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1"> <mxGeometry x="55" y="-90" width="740" height="40" as="geometry" /> </mxCell> </root> </mxGraphModel> </diagram> </mxfile> ">
<defs />
<g>
<g data-cell-id="0">
<g data-cell-id="1">
<g data-cell-id="XzCmzyegnEFURFCZ5URi-3">
<g>
<rect x="334.38" y="111" width="55" height="218.75" fill="none" stroke="none" transform="rotate(90,361.88,220.37)" pointer-events="all" />
<path d="M 389.38 111 L 361.88 111 L 361.88 329.75 L 389.38 329.75" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,361.88,220.37)" pointer-events="all" />
<path d="M 334.38 220.37 L 361.88 220.37" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,361.88,220.37)" pointer-events="all" />
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-4">
<g>
<rect x="195" y="241" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 271px; margin-left: 196px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<font >
<span style="font-weight: bold; font-size: 15px;">Muslim </span>
<br />
<font >
<i>[Submits his will to God]</i>
</font>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="255" y="275" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Muslim...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-6">
<g>
<rect x="301.88" y="131" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 161px; margin-left: 303px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<b>
<font style="font-size: 15px;">Human Being <br />🤵 </font>
</b>
</div>
</div>
</div>
</foreignObject>
<text x="362" y="165" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Human Being...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-8">
<g>
<rect x="405" y="241" width="120" height="60" rx="9" ry="9" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 271px; margin-left: 406px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<font >
<span style="font-weight: bold; font-size: 15px;">Athiest</span>
<br />
<font style="font-size: 13px;">
<i >/Non-Muslim</i>
</font>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="465" y="275" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Athiest...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-11">
<g>
<rect x="115" y="241" width="60" height="60" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 271px; margin-left: 116px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<b>Believes in Hereafter <br />✅ </b>
</div>
</div>
</div>
</foreignObject>
<text x="145" y="275" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Believes i...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-12">
<g>
<rect x="535" y="231" width="110" height="90" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 108px; height: 1px; padding-top: 276px; margin-left: 536px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<b>Does not believe in Hereafter <br />❌ </b>
</div>
</div>
</div>
</foreignObject>
<text x="590" y="280" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Does not believe i...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-14">
<g>
<path d="M 254.88 301 L 254.52 394.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke" />
<path d="M 254.5 399.88 L 251.03 392.87 L 254.52 394.63 L 258.03 392.9 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all" />
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-15">
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 352px; margin-left: 255px;">
<div data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">
<font style="font-size: 16px;">
<b>Dies 🪦</b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="255" y="355" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="11px" text-anchor="middle">Dies 🪦</text>
</switch>
</g>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-17">
<g>
<path d="M 464.88 301 L 464.52 394.63" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="stroke" />
<path d="M 464.5 399.88 L 461.03 392.87 L 464.52 394.63 L 468.03 392.9 Z" fill="rgb(0, 0, 0)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all" />
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-18">
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 352px; margin-left: 465px;">
<div data-drawio-colors="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; background-color: rgb(255, 255, 255); white-space: nowrap;">
<font style="font-size: 16px;">
<b>Dies 🪦</b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="465" y="355" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="11px" text-anchor="middle">Dies 🪦</text>
</switch>
</g>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-22">
<g>
<rect x="286.88" y="451" width="150" height="70" rx="10.5" ry="10.5" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 148px; height: 1px; padding-top: 486px; margin-left: 288px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<font style="font-size: 15px;">
<b>Finds out Hereafter does not exists <br />❌ </b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="362" y="490" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Finds out Hereafter does...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-30">
<g>
<rect x="185" y="381" width="140" height="70" fill="none" stroke="none" transform="rotate(90,255,416)" pointer-events="all" />
<path d="M 290 346 L 255 346 L 255 486 L 290 486" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,255,416)" pointer-events="all" />
<path d="M 220 416 L 255 416" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,255,416)" pointer-events="all" />
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-36">
<g>
<rect x="395" y="381" width="140" height="70" fill="none" stroke="none" transform="rotate(90,465,416)" pointer-events="all" />
<path d="M 500 346 L 465 346 L 465 486 L 500 486" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,465,416)" pointer-events="all" />
<path d="M 430 416 L 465 416" fill="none" stroke="rgb(0, 0, 0)" stroke-width="2" stroke-miterlimit="10" transform="rotate(90,465,416)" pointer-events="all" />
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-37">
<g>
<rect x="277.94" y="521" width="167.88" height="80" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 166px; height: 1px; padding-top: 561px; margin-left: 279px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<div >
<b style="font-size: 14px; background-color: initial;">
<i>Both are Equal</i>
</b>
</div>
<font >
<div >
<span style="font-size: 14px;">
<b>
<i>
<br />
</i>
</b>
</span>
</div>
<b style="font-size: 14px;">
<div >
<b style="background-color: initial;">
<i>🟡Muslim : 0</i>
</b>
</div>
<i>
<div >
<b style="background-color: initial;">
<i>🟡Non-Muslim:0</i>
</b>
</div>
</i>
</b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="362" y="565" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Both are Equal🟡Muslim : 0🟡Non-...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-38">
<g>
<rect x="115" y="451" width="150" height="70" rx="10.5" ry="10.5" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 148px; height: 1px; padding-top: 486px; margin-left: 116px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<font style="font-size: 15px;">
<b>Finds Hereafter exists <br />😁 </b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="190" y="490" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Finds Hereafter exists...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-39">
<g>
<rect x="472.88" y="451" width="150" height="70" rx="10.5" ry="10.5" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 148px; height: 1px; padding-top: 486px; margin-left: 474px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<font style="font-size: 15px;">
<b>Finds Hereafter exists <br />😨 </b>
</font>
</div>
</div>
</div>
</foreignObject>
<text x="548" y="490" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Finds Hereafter exists...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-41">
<g>
<rect x="115" y="521" width="150" height="60" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 551px; margin-left: 190px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: nowrap;">
<b>
<font >
<i >
<font style="font-size: 11px;">
<u>Advantageous</u>
</font>
<br />
<span style="font-size: 17px;">🟢Muslim : 100</span>
<br />
<br />
</i>
</font>
</b>
</div>
</div>
</div>
</foreignObject>
<text x="190" y="555" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Advantageous...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-42">
<g>
<rect x="465" y="531" width="180" height="30" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 178px; height: 1px; padding-top: 546px; margin-left: 466px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<b style="text-wrap-mode: nowrap;">
<font >
<i >
<font style="font-size: 13px;">
<u>Disadvantageous</u>
</font>
<br />
<span style="font-size: 17px;">🔴Non-Muslim: -100</span>
</i>
</font>
</b>
</div>
</div>
</div>
</foreignObject>
<text x="555" y="550" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">Disadvantageous...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-49">
<g>
<rect x="286.88" y="641" width="180" height="120" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 178px; height: 1px; padding-top: 648px; margin-left: 289px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 116px; overflow: hidden;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<h1 style="margin-top: 0px;">
<font style="font-size: 21px;">Total Score🟰</font>
</h1>
<p></p>
<div >
<b style="background-color: initial;">
<i >
<span style="font-size: 13px;">Muslim : 100+0= </span>
<font style="font-size: 17px;">100</font>
<span style="font-size: 13px;"> (✅)</span>
</i>
</b>
</div>
<font >
<div >
<b style="background-color: initial;">
<i >
<span style="font-size: 13px;">Athiest : 0 - 100 = </span>
<font style="font-size: 17px;">-100</font>
<span style="font-size: 13px;"> (❌)</span>
</i>
</b>
</div>
</font>
<p></p>
</div>
</div>
</div>
</foreignObject>
<text x="289" y="660" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">Total Score🟰...</text>
</switch>
</g>
</g>
</g>
<g data-cell-id="XzCmzyegnEFURFCZ5URi-51">
<g>
<rect x="0" y="41" width="740" height="40" fill="none" stroke="none" pointer-events="all" />
</g>
<g>
<g transform="translate(-0.5 -0.5)">
<switch>
<foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;">
<div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 738px; height: 1px; padding-top: 61px; margin-left: 1px;">
<div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;">
<div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">
<div>
<font style="font-size: 16px;">
<b>This world is full of injustice!</b>
</font>
</div>
<div>
<font style="font-size: 14px;">
<br />
</font>
</div>
<div>
<font style="font-size: 14px;">
<i>What will happen to an innocent human being who was killed and the killer was never caught?</i>
</font>
</div>
<div>
<font style="font-size: 14px;">
<i>What will happen to a human being who spent his life in poverty and misery and died without getting any justice?</i>
</font>
</div>
<div>
<font style="font-size: 14px;">
<i>What will happen to a human being who spent his life in luxury and happiness and died without any accountability?</i>
</font>
</div>
<div>
<font style="font-size: 14px;">
<br />
</font>
</div>
<div>
<font style="font-size: 14px;">The answer to these questions can only be found in the </font>
<font style="font-size: 16px;">
<b>
<i>concept of Hereafter.</i>
</b>
</font>
</div>
</div>
</div>
</div>
</foreignObject>
<text x="370" y="65" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">This world is full of injustice!...</text>
</switch>
</g>
</g>
</g>
</g>
</g>
</g>
<switch>
<g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" />
<a transform="translate(0,-5)" xlink:href="https://www.drawio.com/doc/faq/svg-export-text-problems" target="_blank">
<text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text>
</a>
</switch>
</svg>
</div>
<style>
#responsive-svg-container {
background-color: #ffffff; color:black; font-family: Georgia, 'Times New Roman', Times, serif; font-style: italic; border: 15px solid rgb(46, 236, 198); border-radius: 45px;
text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
margin: 0;
/* width: 100%; */
max-width: fit-content; /* Limit container width */
height: auto; /* Let height adjust to content */
display: flex; /* Flexbox for alignment */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
margin: 0 auto; /* Center the container itself on the page */
}
/* Make SVG responsive */
svg {
width: 100%;
height: auto; /* Maintain aspect ratio */
}
/* For screens smaller than 1200px */
@media (max-width: 1200px) {
#responsive-svg-container {
max-width: 80%; /* Adjust for medium screens */
}
}
/* For screens smaller than 768px (tablets) */
@media (max-width: 768px) {
#responsive-svg-container {
max-width: 90%; /* Adjust for smaller screens */
}
}
/* For screens smaller than 480px (mobile devices) */
@media (max-width: 480px) {
#responsive-svg-container {
max-width: 100%; /* Full width for extra-small screens */
}
}
</style>
</div>
</div>