-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ejs
More file actions
1491 lines (1252 loc) · 46.9 KB
/
index.ejs
File metadata and controls
1491 lines (1252 loc) · 46.9 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
<% layout("/layouts/boilerplate") %>
<style>
.suggestions {
position: absolute;
background: #fff;
border: 1px solid #ccc;
width: calc(80% - 25px);
max-width: 280px;
margin-top: px;
display: none;
z-index: 10;
/* border-bottom-left-radius: 50px; */
left: 123px;
list-style-type: none;
}
.suggestions li {
padding: 10px;
cursor: pointer;
list-style-type: none;
}
.suggestions li:hover {
background: #2baffc;
color: white;
}
.modal {
display: none;
position: fixed;
z-index: 100;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
padding-top: 60px;
}
.modal-content {
background-color: #fefefe;
margin: 5% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 500px;
position: relative;
text-align: center;
}
.close {
color: #aaa;
position: absolute;
right: 20px;
top: 10px;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.graph h1 span {
color: #ff9d00;
}
.course-categories {
padding: 30px 20px 60px 20px;
}
.course-categories h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.5rem;
color: #3498db;
position: relative;
}
.course-categories h2::after {
content: '';
display: block;
width: 50px;
height: 3px;
background-color: #3498db;
margin: 20px auto 0;
}
.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.category-card {
/* background-color: #222222; */
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
position: relative;
cursor: pointer;
color: black;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.category-card:hover {
transform: translateY(-10px);
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.category-icon {
font-size: 3rem;
color: #3498db;
margin-bottom: 15px;
}
.category-content {
padding: 25px;
text-align: center;
}
.category-title {
font-size: 1.3rem;
margin-bottom: 15px;
color: #3498db;
}
.category-description {
color: #aaa;
margin-bottom: 20px;
font-size: 0.9rem;
}
.subcategory-count {
display: inline-block;
background-color: #3498db;
color: #fff;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.8rem;
margin-top: 10px;
}
.subcategories {
list-style-type: none;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease;
}
/* styles.css */
#loader {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgb(255, 255, 255);
/* semi-transparent white background */
z-index: 9999;
/* Ensure it's on top */
display: flex;
justify-content: center;
align-items: center;
}
.spinner {
/* Define your spinner styles */
border: 4px solid rgba(0, 0, 0, 0.3);
border-radius: 50%;
border-top: 4px solid #3498db;
/* Blue color for spinner */
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
}
.beating-spinner {
animation: beat 1s infinite alternate;
}
@keyframes beat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Fira+Code:wght@400;500&display=swap');
:root {
--primary-color: #4a90e2;
--secondary-color: #2baffc;
--text-color: #333;
--code-bg-color: #000;
}
.dsa-visualization-section {
position: relative;
overflow: hidden;
}
.section-header h2 {
color: var(--primary-color);
animation: fadeInDown 1s ease-out;
}
.section-header p {
color: var(--text-color);
animation: fadeInUp 1s ease-out 0.5s both;
}
.feature-card {
background-color: #f9f9f9;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: fadeInUp 0.5s ease-out both;
}
.feature-card:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.feature-icon {
font-size: 3rem;
color: var(--secondary-color);
animation: pulse 2s infinite;
}
.feature-card h3 {
color: var(--primary-color);
}
.visualization-example {
background-color: var(--code-bg-color);
border-radius: 10px;
color: #fff;
cursor: pointer;
}
.visualization-example h3 {
color: var(--secondary-color);
}
.visualization-container {
height: 200px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
cursor: pointer;
}
/* Bubble Sort Animation */
@keyframes bubbleSort {
0%, 100% { height: 50px; }
50% { height: 100px; }
}
.bubble-sort .bar {
width: 20px;
background-color: var(--secondary-color);
margin: 0 5px;
border-radius: 5px 5px 0 0;
animation: bubbleSort 2s infinite;
}
.bubble-sort .bar:nth-child(2) { animation-delay: 0.2s; }
.bubble-sort .bar:nth-child(3) { animation-delay: 0.4s; }
.bubble-sort .bar:nth-child(4) { animation-delay: 0.6s; }
.bubble-sort .bar:nth-child(5) { animation-delay: 0.8s; }
/* Binary Search Tree Animation */
@keyframes treeGrow {
0% { transform: scale(0); opacity: 0; }
100% { transform: scale(1); opacity: 1; }
}
@keyframes arrowDraw {
0% { stroke-dashoffset: 100; }
100% { stroke-dashoffset: 0; }
}
.bst-tree {
position: relative;
width: 200px;
height: 200px;
}
.bst-node {
position: absolute;
width: 40px;
height: 40px;
background-color: var(--secondary-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
animation: treeGrow 1s ease-out forwards;
}
.bst-node:nth-child(1) { top: 0; left: 80px; }
.bst-node:nth-child(2) { top: 60px; left: 40px; }
.bst-node:nth-child(3) { top: 60px; left: 120px; }
.bst-node:nth-child(4) { top: 120px; left: 20px; }
.bst-node:nth-child(5) { top: 120px; left: 60px; }
.bst-arrow {
stroke: var(--secondary-color);
stroke-width: 2;
fill: none;
stroke-dasharray: 100;
stroke-dashoffset: 100;
animation: arrowDraw 1s ease-out forwards;
}
/* Linked List Animation */
@keyframes linkedListMove {
0%, 100% { transform: translateX(0); }
50% { transform: translateX(20px); }
}
.linked-list {
display: flex;
align-items: center;
}
.list-node {
width: 40px;
height: 40px;
background-color: var(--secondary-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
margin-right: 20px;
position: relative;
animation: linkedListMove 2s infinite alternate;
}
.list-node::after {
content: '→';
position: absolute;
right: -15px;
color: var(--secondary-color);
}
.list-node:last-child::after {
content: none;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 1;
}
.shape {
position: absolute;
opacity: 0.1;
animation: float 20s infinite linear;
}
.shape-1 {
top: 10%;
left: 10%;
width: 50px;
height: 50px;
background-color: var(--primary-color);
border-radius: 50%;
}
.shape-2 {
top: 70%;
right: 10%;
width: 70px;
height: 70px;
background-color: var(--secondary-color);
clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.shape-3 {
top: 40%;
left: 50%;
width: 60px;
height: 60px;
background-color: var(--primary-color);
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@keyframes float {
0% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
100% { transform: translateY(0) rotate(360deg); }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
/* body {
font-family: 'Poppins', sans-serif;
background-color: #f0f3f7;
overflow-x: hidden;
} */
.banner {
overflow: hidden;
position: relative;
}
.banner::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index: 1;
}
.banner-content {
padding: 4rem 2rem;
position: relative;
z-index: 2;
}
.banner-content h1{
font-family: 'Poppins', sans-serif;
color: #000;
font-weight: 800;
margin-bottom: 1rem;
font-size: 2.8rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.banner-content p{
font-family: 'Poppins', sans-serif;
color: #34495e;
font-size: 1.2rem;
margin-bottom: 1.5rem;
line-height: 1.6;
}
.btn-primary {
background-color: #000;
border-color: #000;
padding: 0.75rem 2rem;
font-weight: 500;
border-radius: 30px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn-primary:hover {
background-color: #2baffc;
border-color: #2baffc;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(3, 4, 5, 0.4);
}
.btn-primary::after {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent,
rgba(255, 255, 255, 0.117),
transparent
);
transform: rotate(45deg);
transition: all 0.3s ease;
}
.btn-primary:hover::after {
left: 100%;
top: 100%;
}
.banner-image {
position: relative;
height: 100%;
min-height: 500px;
overflow: hidden;
border-radius: 0 20px 20px 0;
}
.resume-preview {
position: absolute;
top: 0;
left: 40px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.resume-preview img {
position: absolute;
height: 90%;
width: auto;
max-width: 80%;
object-fit: cover;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
transition: all 0.5s ease;
}
.resume-preview img:nth-child(1) {
transform: translateX(-30%) scale(0.9);
z-index: 1;
}
.resume-preview img:nth-child(2) {
z-index: 2;
}
.resume-preview img:nth-child(3) {
transform: translateX(30%) scale(0.9);
z-index: 1;
}
.resume-preview img:hover {
transform: scale(1.05);
z-index: 3;
}
.feature-list {
list-style-type: none;
padding-left: 0;
margin-bottom: 2rem;
}
.feature-list li {
margin-bottom: 1rem;
padding-left: 2rem;
position: relative;
transition: all 0.3s ease;
}
.feature-list li:hover {
transform: translateX(5px);
}
.feature-list li::before {
content: "\f00c";
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #3498db;
position: absolute;
left: 0;
top: 2px;
}
.animated-text {
display: inline-block;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s, transform 0.5s;
}
.animated-text.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 991px) {
.banner-image {
min-height: 400px;
}
.resume-preview img {
height: auto;
width: 80%;
max-width: 300px;
}
.resume-preview img:nth-child(1) {
transform: translateX(-20%) scale(0.9);
}
.resume-preview img:nth-child(3) {
transform: translateX(20%) scale(0.9);
}
}
@media (max-width: 767px) {
.banner-image {
min-height: 400px;
}
.resume-preview img {
width: 80%;
max-width: 300px;
}
.resume-preview img:nth-child(1) {
transform: translateX(-15%) scale(0.9);
}
.resume-preview img:nth-child(3) {
transform: translateX(15%) scale(0.9);
}
.btn-primary {
display: flex;
justify-content: center;
}
}
</style>
<body id="index html">
<!-- ! Loader -->
<div id="loader">
<img class="beating-spinner" src="/images/logo1.png" alt="" width="80">
<!-- Your loader animation or spinner -->
<!-- <div class="spinner"><img src="/images/logo2.png" alt=""></div> -->
</div>
<!-- ! Loader -->
<!-- !Main Container Start -->
<div id="mainbody" class="container-fluid">
<div class="row text-center align-items-center mainbody2">
<div class="col-lg-6 mainbody-text">
<h1>Ignite The Passion For Developing.</h1>
<h3>One platform for master all technologies.</h3>
<form id="searching" class="d-flex justify-content-center" onsubmit="searchTutorials(event)">
<input type="search" id="searchInput" maxlength="20" class="search-box"
placeholder="Search Tutorials, e.g. HTML" required oninput="showSuggestions(event)">
<button type="submit" class="search-button"><i class="fa-solid fa-magnifying-glass"></i></button>
</form>
<div id="errorModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<p>No tutorials found for your search query.</p>
</div>
</div>
<div class="roadmap">
<a class="" href="/roadmaps">To Start with Road-maps.</a>
</div>
</div>
<div class="col-lg-6 object-fit-fill">
<img id="mainbody-img" src="images/Mainbodypic.png" alt="">
</div>
<!-- <h1>Everyone start the Coding journey with hello world</h1> -->
</div>
<img src="images/wave1.png" class="bottom-img" alt="">
</div>
<!-- !Main Container End -->
<!-- !why Hello World section Start -->
<div class="container-fluid hello-world-section">
<h1 class="text-center">Why <span>Hello World</span> ?</h1>
<div class=" underline2 separator text-center" style="margin-left: 49%; padding: 10px; font-size: 20px;"></div>
<div class="row justify-content-center hello-world-section1 ">
<div class="col-md-3 col-9 hello-world-section-content text-center pp1" data-aos="fade-up"
data-aos-duration="1200">
<img src="images/ccc2.png" alt="">
<h4>Comprehensive Course Content</h4>
<p id="p1">Our platform provides a rich array of learning resources, including video tutorials, interactive
coding exercises, quizzes, and documentation that gives you better understanding and allow you to apply your
knowledge effectively and helps to master the skill.</p>
</div>
<div class="col-md-3 col-9 hello-world-section-content text-center pp2" data-aos="fade-up"
data-aos-duration="1500">
<img src="images/roadmap.png" alt="">
<h4> Targeted learning with Roadmaps</h4>
<p id="p2">Learning with clear and structured roadmaps, designed by industry experts to guide their learning
journey and help you build a strong foundation. These paths outline the essential concepts, skills and,
providing a step-by-step approach that ensures a well-rounded and easy learning.</p>
</div>
<div class="col-md-3 col-9 hello-world-section-content text-center pp3" data-aos="fade-up"
data-aos-duration="1900">
<img src="images/alr.png" alt="">
<h4>Advanced Learning Resources</h4>
<p id="p3">Rich collection of resources to diverse learning styles, ensuring that you have the flexibility to
explore various learning materials and deepen your understanding and access a wealth of advanced learning
resources, including video lectures, tutorials, articles, e-books, and code repositories.</p>
</div>
</div>
</div>
<!-- !why Hello World section end -->
<!-- !featured tutorial Section Start -->
<div class="skill-section">
<img src="images/wave2.png" alt="">
<div class="container">
<h1 class="heading text-center">Featured <span> Tutorials</span></h1>
<div class=" underline2 separator text-center" style="margin-left: 49%;"></div>
<p id="heading-pera" class="text-center " data-aos="fade-right" data-aos-duration="900">Learning often happens in
classrooms <br> but it doesn't have to. Use Hello World to facilitate experience no matter the context.</p>
<div id="skill-section1" class="row">
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="900">
<div id="skill-content" class="card text-center">
<a href="/html/html_intro">
<img src="images/html-5_5968267.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">HTML</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1200">
<div id="skill-content" class="card text-center">
<a href="/css/css_intro">
<img src="images/css-3_5968242.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">CSS</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1400">
<div id="skill-content" class="card text-center">
<a href="/js/js_intro">
<img src="images/js_5968292.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">JAVASCRIPT</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="900">
<div id="skill-content" class="card text-center">
<a href="/bootstrap/bootstrap_intro">
<img src="images/bootstrap.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">BOOTSTRAP</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1400">
<div id="skill-content" class="card text-center">
<a href="/react/react_intro">
<img src="images/react.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">REACT</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1600">
<div id="skill-content" class="card text-center">
<a href="/nodejs/nodejs_intro">
<img src="images/nodejs.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">NODE.JS</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="900">
<div id="skill-content" class="card text-center">
<a href="/c/c_intro">
<img src="images/c.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">C</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1400">
<div id="skill-content" class="card text-center">
<a href="/java/java_intro">
<img src="images/java.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">JAVA</h4>
</div>
</a>
</div>
</div>
<div class="col-sm-6 col-md-4" data-aos="fade-up" data-aos-duration="1600">
<div id="skill-content" class="card text-center">
<a href="/python/python_intro">
<img src="images/python.png" class="card-img-top" alt="Image 1">
<div class="card-body">
<h4 class="card-title">PYTHON</h4>
</div>
</a>
</div>
</div>
</div>
<div class="row ">
<div id="more-tutorials" class="col-12 text-center" data-aos="fade-right" data-aos-duration="1000">
<a href="/tutorial"><button class="btn ">All Tutorials <i
class="fa-solid fa-angles-right fa-bounce"></i></button></a>
</div>
</div>
</div>
<img src="images/wave1.png" class="bottom-img2" alt="">
</div>
<!-- !featured tutorial Section End -->
<!-- ! Courses Section start -->
<div class="container courses ">
<div class="row text-center justify-content-center courses-content " " data-aos=" fade-up" data-aos-duration="1800">
<h1 class="heading">Courses<span> Categories</span></h1>
<div class="separator text-center"></div>
<p id="heading-pera" class="text-center" data-aos="fade-right" data-aos-duration="1000">Let the journey of
organizing your own learning.</p>
<section id="categories" class="course-categories">
<div class="containers">
<div class="category-grid" id="categoryGrid">
<div class="category-card " data-aos="fade-up" data-aos-duration="1000">
<div class="category-content" onclick="window.location.replace('/web-development')">
<div class="category-icon">💻</div>
<h3 class="category-title">Web Development</h3>
<!-- <p class="category-description">Master the art of creating stunning websites and web applications.</p> -->
<a href="">
<div class="subcategory-count"> <i class="fa-solid fa-arrow-right px-2"></i>4 Subcategories</div>
</a>
</div>
</div>
<div class="category-card" data-aos="fade-up" data-aos-duration="1000">
<div class="category-content" onclick="window.location.replace('/data-science')">
<div class="category-icon">📊</div>
<h3 class="category-title">Data Science</h3>
<!-- <p class="category-description">Unlock insights from data and drive informed decision-making.</p> -->
<a href="">
<div class="subcategory-count"> <i class="fa-solid fa-arrow-right px-2"></i>4 Subcategories</div>
</a>
</div>
</div>
<div class="category-card" data-aos="fade-up" data-aos-duration="1000">
<div class="category-content" onclick="window.location.replace('/mobile-development')">
<div class="category-icon">📱</div>
<h3 class="category-title">Mobile Development</h3>
<!-- <p class="category-description">Build powerful mobile apps for iOS and Android platforms.</p> -->
<a href="">
<div class="subcategory-count"> <i class="fa-solid fa-arrow-right px-2"></i>4 Subcategories</div>
</a>
</div>
</div>
<div class="category-card" data-aos="fade-up" data-aos-duration="1000">
<div class="category-content" onclick="window.location.replace('/Cybersecurity')">
<div class="category-icon">🔒</div>
<h3 class="category-title">Cybersecurity</h3>
<!-- <p class="category-description">Protect digital assets and learn ethical hacking techniques.</p> -->
<a href="">
<div class="subcategory-count"> <i class="fa-solid fa-arrow-right px-2"></i>4 Subcategories</div>
</a>
</div>
</div>
</div>
</div>
</section>
<div class="row ">
<div id="more-tutorials" class="col-12 text-center" data-aos="fade-right" data-aos-duration="1000">
<a href="/courses"><button class="btn ">All Courses<i
class="fa-solid fa-angles-right fa-bounce"></i></button></a>
</div>
</div>
</div>
</div>
<!-- ! Courses Section End -->
<!-- !About us section start -->
<div class="container-fluid about-us-main">
<img src="images/wave2.png" alt="" style="max-width: 100%; ">
<div class="row about-us-second ">
<h1 class="heading text-center"> Know <span>About Us</span></h1>
<div class="separator text-center"></div>
<!-- <p id="heading-pera" class="text-center " data-aos="fade-right" data-aos-duration="900">Creating A Community Of Life Long Learners.</p> -->
<div class="col-sm-6 col-md-6 text-center justify-content-center about-us-third">
<div class="row justify-content-center card-div">
<div class="four col-6 " id="about-us-body" data-aos="fade-up" data-aos-duration="1000">
<div class="counter-box colored about-us-card1" id="about-us-number">
<img src="images/counter-01.png" alt="">
<span class="counter">10000 </span><span class="plus">+</span>
<h5>Happy Learners</h5>
</div>
</div>
<div class="four col-6 about-us-card2" id="about-us-body" data-aos="fade-up" data-aos-duration="1200">
<div class="counter-box " id="about-us-number">
<img src="images/counter-02.png" alt="">
<span class="counter">300</span><span class="plus">+</span>
<h5>Courses and Tutorials</h5>
</div>
</div>
<div class="four col-6" id="about-us-body" data-aos="fade-up" data-aos-duration="1100">
<div class="counter-box about-us-card3" id="about-us-number">
<img src="images/counter-04.png" alt="">
<span class="counter">1000</span><span class="plus">+</span>
<h5>Certified Students</h5>
</div>
</div>
<div class="four col-6 about-us-card4" id="about-us-body" data-aos="fade-up" data-aos-duration="1200">
<div class="counter-box " id="about-us-number">
<img src="images/counter-03.png" alt="">
<span class="counter">250</span><span class="plus">+</span>
<h5>Road-Maps</h5>
</div>