-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheduTech.html
More file actions
1515 lines (1482 loc) · 63.4 KB
/
eduTech.html
File metadata and controls
1515 lines (1482 loc) · 63.4 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>LearnWave - Learn New Skills. Anytime. Anywhere. |</title>
<script src="https://cdn.tailwindcss.com/3.4.16"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: { primary: "#4361ee", secondary: "#7209b7" },
borderRadius: {
none: "0px",
sm: "4px",
DEFAULT: "8px",
md: "12px",
lg: "16px",
xl: "20px",
"2xl": "24px",
"3xl": "32px",
full: "9999px",
button: "8px",
},
},
},
};
</script>
<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=Pacifico&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css"
/>
<style>
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Inter', sans-serif;
}
.course-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.instructor-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
background: #4361ee;
cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
width: 18px;
height: 18px;
border-radius: 50%;
background: #4361ee;
cursor: pointer;
}
.custom-checkbox {
position: relative;
padding-left: 28px;
cursor: pointer;
user-select: none;
}
.custom-checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.checkmark {
position: absolute;
top: 0;
left: 0;
height: 20px;
width: 20px;
background-color: #fff;
border: 2px solid #e5e7eb;
border-radius: 4px;
}
.custom-checkbox:hover input ~ .checkmark {
border-color: #4361ee;
}
.custom-checkbox input:checked ~ .checkmark {
background-color: #4361ee;
border-color: #4361ee;
}
.checkmark:after {
content: "";
position: absolute;
display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
display: block;
}
.custom-checkbox .checkmark:after {
left: 6px;
top: 2px;
width: 6px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.toggle-switch {
position: relative;
display: inline-block;
width: 50px;
height: 24px;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #e5e7eb;
transition: .4s;
border-radius: 34px;
}
.toggle-slider:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 3px;
bottom: 3px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .toggle-slider {
background-color: #4361ee;
}
input:checked + .toggle-slider:before {
transform: translateX(26px);
}
.tab-active {
color: #4361ee;
border-bottom: 2px solid #4361ee;
}
</style>
</head>
<body class="bg-white">
<!-- Navigation Bar -->
<header class="fixed top-0 left-0 right-0 bg-white shadow-sm z-50">
<div
class="container mx-auto px-4 py-4 flex items-center justify-between"
>
<div class="flex items-center">
<a href="#" class="text-3xl font-['Pacifico'] text-primary mr-10"
>logo</a
>
<nav class="hidden lg:flex space-x-8">
<a
href="/"
class="text-gray-900 font-medium hover:text-primary transition"
>Home</a
>
<div class="relative group">
<button
class="text-gray-900 font-medium hover:text-primary transition flex items-center"
>
Courses
<div class="w-4 h-4 ml-1 flex items-center justify-center">
<i class="ri-arrow-down-s-line"></i>
</div>
</button>
<div
class="absolute left-0 mt-2 w-56 bg-white shadow-lg rounded opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-300 z-50"
>
<div class="py-2">
<a
href="#"
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-50"
>Programming</a
>
<a
href="#"
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-50"
>Design</a
>
<a
href="#"
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-50"
>Marketing</a
>
<a
href="#"
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-50"
>Business</a
>
<a
href="#"
class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-50"
>Language</a
>
</div>
</div>
</div>
<a
href="#"
class="text-gray-900 font-medium hover:text-primary transition"
>About Us</a
>
<a
href="#"
class="text-gray-900 font-medium hover:text-primary transition"
>Instructors</a
>
<a
href="#"
class="text-gray-900 font-medium hover:text-primary transition"
>Blog</a
>
<a
href="#"
class="text-gray-900 font-medium hover:text-primary transition"
>Contact</a
>
</nav>
</div>
<div class="flex items-center space-x-4">
<button
class="text-gray-900 font-medium hover:text-primary transition whitespace-nowrap !rounded-button"
>
Login
</button>
<button
class="bg-primary text-white px-6 py-2 font-medium transition hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Sign Up
</button>
<button class="lg:hidden w-10 h-10 flex items-center justify-center">
<i class="ri-menu-line text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section
class="pt-24 relative overflow-hidden"
style="background-image: url('https://readdy.ai/api/search-image?query=A%20modern%20e-learning%20scene%20with%20a%20gradient%20blue%20background%20that%20smoothly%20transitions%20from%20light%20blue%20on%20the%20left%20to%20a%20deeper%20blue%20on%20the%20right.%20The%20right%20side%20shows%20a%20diverse%20student%20using%20a%20laptop%20with%20digital%20education%20elements%20floating%20around.%20The%20left%20side%20has%20ample%20clean%20space%20for%20text%20placement.%20Professional%2C%20inspiring%20educational%20technology%20atmosphere.&width=1920&height=800&seq=hero123&orientation=landscape'); background-size: cover; background-position: center;"
>
<div
class="absolute inset-0 bg-gradient-to-r from-white via-white/90 to-transparent"
></div>
<div class="container mx-auto px-4 py-20 md:py-32 relative z-10">
<div class="flex flex-col md:flex-row items-center">
<div class="w-full md:w-1/2 mb-10 md:mb-0">
<h1
class="text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900 leading-tight mb-6"
>
Learn New Skills.<br />
<span class="text-primary">Anytime. Anywhere.</span>
</h1>
<p class="text-lg text-gray-700 mb-8 max-w-lg">
Unlock your potential with our expert-led courses. Join thousands
of students already learning with us and take your skills to the
next level.
</p>
<div class="flex flex-wrap gap-4">
<button
class="bg-primary text-white px-8 py-3 font-medium transition hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Browse Courses
</button>
<button
class="bg-white border border-gray-300 text-gray-900 px-8 py-3 font-medium transition hover:border-primary hover:text-primary whitespace-nowrap !rounded-button"
>
Start Free Trial
</button>
</div>
</div>
<div class="w-full md:w-1/2">
<!-- Hero image is part of the background -->
</div>
</div>
</div>
<div
class="absolute bottom-5 left-1/2 transform -translate-x-1/2 animate-bounce"
>
<div class="w-10 h-10 flex items-center justify-center text-primary">
<i class="ri-arrow-down-line ri-xl"></i>
</div>
</div>
</section>
<!-- Course Search/Filter -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-10">
Find Your Perfect Course
</h2>
<div class="bg-white rounded-lg shadow-md p-6">
<div class="flex flex-col md:flex-row gap-4 mb-6">
<div class="flex-1 relative">
<div
class="absolute inset-y-0 left-3 flex items-center pointer-events-none"
>
<div
class="w-5 h-5 flex items-center justify-center text-gray-400"
>
<i class="ri-search-line"></i>
</div>
</div>
<input
type="text"
placeholder="Search for courses..."
class="w-full pl-10 pr-4 py-3 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent text-sm"
/>
</div>
<div class="relative">
<div
class="absolute inset-y-0 right-3 flex items-center pointer-events-none"
>
<div
class="w-5 h-5 flex items-center justify-center text-gray-400"
>
<i class="ri-arrow-down-s-line"></i>
</div>
</div>
<div class="relative">
<button
class="w-full md:w-48 px-4 py-3 bg-white border border-gray-300 rounded text-left focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent text-sm pr-8 whitespace-nowrap !rounded-button"
>
All Categories
</button>
<!-- Dropdown would be implemented with JavaScript -->
</div>
</div>
</div>
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-6"
>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2"
>Price Range</label
>
<div class="px-2">
<input
type="range"
min="0"
max="200"
value="100"
class="w-full h-2 bg-gray-200 rounded-full appearance-none cursor-pointer"
/>
</div>
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>$0</span>
<span>$200</span>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2"
>Level</label
>
<div class="space-y-2">
<label class="custom-checkbox block text-sm">
Beginner
<input type="checkbox" checked />
<span class="checkmark"></span>
</label>
<label class="custom-checkbox block text-sm">
Intermediate
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<label class="custom-checkbox block text-sm">
Advanced
<input type="checkbox" />
<span class="checkmark"></span>
</label>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2"
>Duration</label
>
<div class="space-y-2">
<label class="custom-checkbox block text-sm">
0-2 Hours
<input type="checkbox" />
<span class="checkmark"></span>
</label>
<label class="custom-checkbox block text-sm">
3-6 Hours
<input type="checkbox" checked />
<span class="checkmark"></span>
</label>
<label class="custom-checkbox block text-sm">
7+ Hours
<input type="checkbox" />
<span class="checkmark"></span>
</label>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-2"
>Rating</label
>
<div class="flex items-center space-x-1 mb-2">
<div
class="w-5 h-5 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-5 h-5 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-5 h-5 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-5 h-5 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-5 h-5 flex items-center justify-center text-gray-300"
>
<i class="ri-star-line"></i>
</div>
<span class="text-sm text-gray-600 ml-1">& Up</span>
</div>
</div>
</div>
<div class="flex justify-center">
<button
class="bg-primary text-white px-8 py-3 font-medium transition hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Apply Filters
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Top Courses Section -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-10">
<h2 class="text-3xl font-bold">Top Courses</h2>
<a href="#" class="text-primary font-medium hover:underline"
>View All</a
>
</div>
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8"
>
<!-- Course Card 1 -->
<div
class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<div class="relative">
<img
src="https://readdy.ai/api/search-image?query=A%20professional%20UI%2FUX%20design%20workspace%20with%20a%20clean%2C%20minimal%20aesthetic.%20A%20computer%20screen%20displays%20a%20modern%20website%20design%20with%20wireframes%20and%20color%20palettes.%20Design%20tools%20and%20elements%20are%20neatly%20arranged.%20The%20image%20has%20soft%20lighting%20and%20a%20contemporary%20feel%2C%20perfect%20for%20a%20design%20course%20thumbnail.&width=400&height=225&seq=course1&orientation=landscape"
alt="UI/UX Design Masterclass"
class="w-full h-48 object-cover object-top"
/>
<span
class="absolute top-3 left-3 bg-blue-500 text-white text-xs font-semibold px-2 py-1 rounded"
>Design</span
>
</div>
<div class="p-5">
<h3 class="text-lg font-semibold mb-2">
UI/UX Design Masterclass
</h3>
<div class="flex items-center mb-3">
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20female%20design%20instructor%20with%20glasses%2C%20short%20dark%20hair%2C%20and%20a%20friendly%20smile%20against%20a%20neutral%20background.%20The%20image%20is%20well-lit%20with%20soft%20lighting%20and%20has%20a%20professional%2C%20approachable%20quality.&width=100&height=100&seq=inst1&orientation=squarish"
alt="Sarah Johnson"
class="w-8 h-8 rounded-full object-cover mr-2"
/>
<span class="text-sm text-gray-600">Sarah Johnson</span>
</div>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-half-fill"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1"
>(4.5) 2,345 reviews</span
>
</div>
<div class="flex justify-between items-center">
<div>
<span class="text-lg font-bold text-gray-900">$89.99</span>
<span class="text-sm text-gray-500 line-through ml-2"
>$129.99</span
>
</div>
<button
class="bg-primary text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Add to Cart
</button>
</div>
</div>
</div>
<!-- Course Card 2 -->
<div
class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<div class="relative">
<img
src="https://readdy.ai/api/search-image?query=A%20professional%20coding%20workspace%20with%20a%20computer%20screen%20displaying%20colorful%20JavaScript%20code.%20The%20desk%20has%20a%20clean%2C%20organized%20setup%20with%20a%20keyboard%2C%20coffee%20mug%2C%20and%20notebook.%20The%20lighting%20is%20modern%20and%20tech-focused%20with%20a%20blue-tinted%20ambiance%2C%20perfect%20for%20a%20programming%20course%20thumbnail.&width=400&height=225&seq=course2&orientation=landscape"
alt="JavaScript for Beginners"
class="w-full h-48 object-cover object-top"
/>
<span
class="absolute top-3 left-3 bg-indigo-500 text-white text-xs font-semibold px-2 py-1 rounded"
>Programming</span
>
</div>
<div class="p-5">
<h3 class="text-lg font-semibold mb-2">
JavaScript for Beginners
</h3>
<div class="flex items-center mb-3">
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20male%20programming%20instructor%20with%20short%20brown%20hair%20and%20a%20beard%2C%20wearing%20glasses%20and%20a%20casual%20button-up%20shirt.%20The%20image%20has%20professional%20lighting%20against%20a%20neutral%20background%20and%20conveys%20expertise%20and%20approachability.&width=100&height=100&seq=inst2&orientation=squarish"
alt="David Chen"
class="w-8 h-8 rounded-full object-cover mr-2"
/>
<span class="text-sm text-gray-600">David Chen</span>
</div>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1"
>(5.0) 3,127 reviews</span
>
</div>
<div class="flex justify-between items-center">
<div>
<span class="text-lg font-bold text-gray-900">$69.99</span>
<span class="text-sm text-gray-500 line-through ml-2"
>$99.99</span
>
</div>
<button
class="bg-primary text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Add to Cart
</button>
</div>
</div>
</div>
<!-- Course Card 3 -->
<div
class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<div class="relative">
<img
src="https://readdy.ai/api/search-image?query=A%20professional%20digital%20marketing%20workspace%20with%20analytics%20dashboards%20displayed%20on%20a%20computer%20screen.%20Social%20media%20icons%20and%20marketing%20strategy%20documents%20are%20visible.%20The%20scene%20has%20modern%20lighting%20with%20a%20marketing-focused%20aesthetic%2C%20perfect%20for%20a%20digital%20marketing%20course%20thumbnail.&width=400&height=225&seq=course3&orientation=landscape"
alt="Digital Marketing Fundamentals"
class="w-full h-48 object-cover object-top"
/>
<span
class="absolute top-3 left-3 bg-green-500 text-white text-xs font-semibold px-2 py-1 rounded"
>Marketing</span
>
</div>
<div class="p-5">
<h3 class="text-lg font-semibold mb-2">
Digital Marketing Fundamentals
</h3>
<div class="flex items-center mb-3">
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20female%20marketing%20instructor%20with%20long%20blonde%20hair%20and%20a%20confident%20smile.%20Shes%20wearing%20business%20casual%20attire%20against%20a%20neutral%20background%20with%20professional%20lighting%20that%20conveys%20marketing%20expertise%20and%20approachability.&width=100&height=100&seq=inst3&orientation=squarish"
alt="Emily Rodriguez"
class="w-8 h-8 rounded-full object-cover mr-2"
/>
<span class="text-sm text-gray-600">Emily Rodriguez</span>
</div>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-gray-300"
>
<i class="ri-star-line"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1"
>(4.0) 1,856 reviews</span
>
</div>
<div class="flex justify-between items-center">
<div>
<span class="text-lg font-bold text-gray-900">$79.99</span>
<span class="text-sm text-gray-500 line-through ml-2"
>$119.99</span
>
</div>
<button
class="bg-primary text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Add to Cart
</button>
</div>
</div>
</div>
<!-- Course Card 4 -->
<div
class="course-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<div class="relative">
<img
src="https://readdy.ai/api/search-image?query=A%20professional%20business%20strategy%20workspace%20with%20financial%20charts%2C%20business%20plans%2C%20and%20strategy%20documents%20neatly%20arranged.%20A%20laptop%20displays%20growth%20charts%20and%20business%20metrics.%20The%20scene%20has%20professional%20lighting%20with%20a%20business-focused%20aesthetic%2C%20perfect%20for%20a%20business%20strategy%20course%20thumbnail.&width=400&height=225&seq=course4&orientation=landscape"
alt="Business Strategy Masterclass"
class="w-full h-48 object-cover object-top"
/>
<span
class="absolute top-3 left-3 bg-orange-500 text-white text-xs font-semibold px-2 py-1 rounded"
>Business</span
>
</div>
<div class="p-5">
<h3 class="text-lg font-semibold mb-2">
Business Strategy Masterclass
</h3>
<div class="flex items-center mb-3">
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20male%20business%20instructor%20in%20his%2040s%20wearing%20a%20suit%20and%20tie%20with%20a%20confident%20expression.%20The%20image%20has%20professional%20lighting%20against%20a%20neutral%20background%20and%20conveys%20business%20expertise%20and%20professionalism.&width=100&height=100&seq=inst4&orientation=squarish"
alt="Michael Thompson"
class="w-8 h-8 rounded-full object-cover mr-2"
/>
<span class="text-sm text-gray-600">Michael Thompson</span>
</div>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-half-fill"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1"
>(4.5) 2,789 reviews</span
>
</div>
<div class="flex justify-between items-center">
<div>
<span class="text-lg font-bold text-gray-900">$99.99</span>
<span class="text-sm text-gray-500 line-through ml-2"
>$149.99</span
>
</div>
<button
class="bg-primary text-white px-4 py-2 rounded-full text-sm font-medium hover:bg-opacity-90 whitespace-nowrap !rounded-button"
>
Add to Cart
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Choose Us -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-16">Why Choose Us</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="bg-white rounded-lg p-8 text-center shadow-md">
<div
class="w-16 h-16 mx-auto mb-6 flex items-center justify-center bg-blue-100 text-primary rounded-full"
>
<i class="ri-user-star-line ri-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Certified Instructors</h3>
<p class="text-gray-600">
Learn from industry experts who bring real-world experience to
every lesson. Our instructors are carefully selected for their
expertise and teaching ability.
</p>
</div>
<!-- Feature 2 -->
<div class="bg-white rounded-lg p-8 text-center shadow-md">
<div
class="w-16 h-16 mx-auto mb-6 flex items-center justify-center bg-green-100 text-primary rounded-full"
>
<i class="ri-time-line ri-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Lifetime Access</h3>
<p class="text-gray-600">
Buy once, learn forever. Get unlimited access to your courses,
including all future updates and additional materials at no extra
cost.
</p>
</div>
<!-- Feature 3 -->
<div class="bg-white rounded-lg p-8 text-center shadow-md">
<div
class="w-16 h-16 mx-auto mb-6 flex items-center justify-center bg-purple-100 text-primary rounded-full"
>
<i class="ri-speed-line ri-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Learn at Your Pace</h3>
<p class="text-gray-600">
Study when and where it suits you. Our flexible platform allows
you to learn at your own pace, with no deadlines or pressure.
</p>
</div>
</div>
<!-- Stats -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mt-16">
<div class="text-center">
<div
class="text-4xl font-bold text-primary mb-2"
id="student-count"
>
50,000+
</div>
<p class="text-gray-600">Students Worldwide</p>
</div>
<div class="text-center">
<div class="text-4xl font-bold text-primary mb-2" id="course-count">
500+
</div>
<p class="text-gray-600">Courses Available</p>
</div>
<div class="text-center">
<div
class="text-4xl font-bold text-primary mb-2"
id="instructor-count"
>
150+
</div>
<p class="text-gray-600">Expert Instructors</p>
</div>
<div class="text-center">
<div
class="text-4xl font-bold text-primary mb-2"
id="satisfaction-rate"
>
95%
</div>
<p class="text-gray-600">Satisfaction Rate</p>
</div>
</div>
</div>
</section>
<!-- Featured Instructors -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Meet Our Featured Instructors</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Learn from industry leaders with years of experience. Our
instructors are passionate about sharing their knowledge and helping
you succeed.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Instructor 1 -->
<div
class="instructor-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20female%20design%20instructor%20with%20glasses%2C%20short%20dark%20hair%2C%20and%20a%20friendly%20smile%20against%20a%20neutral%20background.%20The%20image%20is%20well-lit%20with%20soft%20lighting%20and%20has%20a%20professional%2C%20approachable%20quality.&width=400&height=400&seq=inst1full&orientation=squarish"
alt="Sarah Johnson"
class="w-full h-64 object-cover object-top"
/>
<div class="p-5">
<h3 class="text-xl font-semibold mb-1">Sarah Johnson</h3>
<p class="text-primary font-medium mb-2">UI/UX Design Expert</p>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-half-fill"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1">15,432 students</span>
</div>
<p class="text-gray-600 text-sm mb-4">
Former Lead Designer at Google with over 10 years of experience
in creating user-centered digital experiences.
</p>
<a href="#" class="text-primary font-medium hover:underline"
>View Profile</a
>
</div>
</div>
<!-- Instructor 2 -->
<div
class="instructor-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20male%20programming%20instructor%20with%20short%20brown%20hair%20and%20a%20beard%2C%20wearing%20glasses%20and%20a%20casual%20button-up%20shirt.%20The%20image%20has%20professional%20lighting%20against%20a%20neutral%20background%20and%20conveys%20expertise%20and%20approachability.&width=400&height=400&seq=inst2full&orientation=squarish"
alt="David Chen"
class="w-full h-64 object-cover object-top"
/>
<div class="p-5">
<h3 class="text-xl font-semibold mb-1">David Chen</h3>
<p class="text-primary font-medium mb-2">Full-Stack Developer</p>
<div class="flex items-center mb-3">
<div class="flex">
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
<div
class="w-4 h-4 flex items-center justify-center text-yellow-400"
>
<i class="ri-star-fill"></i>
</div>
</div>
<span class="text-sm text-gray-600 ml-1">23,789 students</span>
</div>
<p class="text-gray-600 text-sm mb-4">
Senior Developer with expertise in JavaScript, React, and
Node.js. Passionate about teaching coding in a simple, practical
way.
</p>
<a href="#" class="text-primary font-medium hover:underline"
>View Profile</a
>
</div>
</div>
<!-- Instructor 3 -->
<div
class="instructor-card bg-white rounded-lg shadow-md overflow-hidden transition duration-300"
>
<img
src="https://readdy.ai/api/search-image?query=Professional%20headshot%20of%20a%20female%20marketing%20instructor%20with%20long%20blonde%20hair%20and%20a%20confident%20smile.%20Shes%20wearing%20business%20casual%20attire%20against%20a%20neutral%20background%20with%20professional%20lighting%20that%20conveys%20marketing%20expertise%20and%20approachability.&width=400&height=400&seq=inst3full&orientation=squarish"
alt="Emily Rodriguez"
class="w-full h-64 object-cover object-top"
/>
<div class="p-5">
<h3 class="text-xl font-semibold mb-1">Emily Rodriguez</h3>
<p class="text-primary font-medium mb-2">