File size: 35,594 Bytes
a6704e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Al Ehsan Academy | Best Online Quran Academy For Kids and Adults</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://alehsanaacademy.com/wp-content/uploads/2023/12/end0.png');
            background-size: cover;
            background-position: center;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .course-card:hover {
            transform: scale(1.03);
        }
    </style>
</head>
<body class="font-sans bg-gray-50">
    <!-- Skip to content -->
    <a href="#main-content" class="sr-only focus:not-sr-only bg-green-600 text-white px-4 py-2 fixed top-0 left-0 z-50">Skip to content</a>

    <!-- Header -->
    <header class="bg-white shadow-md sticky top-0 z-40">
        <div class="container mx-auto px-4 py-3 flex justify-between items-center">
            <!-- Logo -->
            <div class="flex items-center">
                <a href="#" class="flex items-center">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/10/logoo.png" alt="Al Ehsan Academy Logo" class="h-12">
                </a>
            </div>

            <!-- Mobile Menu Button -->
            <div class="md:hidden">
                <button id="mobile-menu-button" class="text-gray-700 hover:text-green-600 focus:outline-none">
                    <svg class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
                    </svg>
                </button>
            </div>

            <!-- Desktop Navigation -->
            <nav class="hidden md:flex items-center space-x-1">
                <div class="dropdown relative">
                    <button class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium flex items-center">
                        Home
                    </button>
                </div>

                <div class="dropdown relative">
                    <button class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium flex items-center">
                        Arabic <svg class="w-4 h-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                    </button>
                    <div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-1 py-1 w-48 z-50">
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">Writing course in Arabic</a>
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">Arabic language course</a>
                    </div>
                </div>

                <div class="dropdown relative">
                    <button class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium">
                        Islamic studies
                    </button>
                </div>

                <div class="dropdown relative">
                    <button class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium flex items-center">
                        Quran <svg class="w-4 h-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                    </button>
                    <div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-1 py-1 w-48 z-50">
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">Quran memorization</a>
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">Ijazah course</a>
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">Quran for children</a>
                    </div>
                </div>

                <a href="#" class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium">Pricing</a>
                <a href="#" class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium">Blogs</a>
                <a href="#" class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium">Free Trial</a>
                
                <a href="#" class="px-4 py-2 text-red-600 font-medium flex items-center">
                    <span class="mr-1">🔥</span> Live Courses
                </a>

                <div class="dropdown relative">
                    <button class="px-4 py-2 text-gray-700 hover:text-green-600 font-medium flex items-center">
                        English <svg class="w-4 h-4 ml-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                    </button>
                    <div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-1 py-1 w-48 z-50 right-0">
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">العربية</a>
                        <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-600">English</a>
                    </div>
                </div>
            </nav>
        </div>

        <!-- Mobile Menu -->
        <div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
            <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Home</a>
            
            <div class="py-2">
                <button class="flex items-center justify-between w-full text-gray-700 hover:text-green-600">
                    Arabic <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                </button>
                <div class="pl-4 hidden">
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Writing course</a>
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Arabic course</a>
                </div>
            </div>
            
            <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Islamic studies</a>
            
            <div class="py-2">
                <button class="flex items-center justify-between w-full text-gray-700 hover:text-green-600">
                    Quran <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                </button>
                <div class="pl-4 hidden">
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Quran memorization</a>
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Ijazah course</a>
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Quran for children</a>
                </div>
            </div>
            
            <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Pricing</a>
            <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Blogs</a>
            <a href="#" class="block py-2 text-gray-700 hover:text-green-600">Free Trial</a>
            <a href="#" class="block py-2 text-red-600">🔥 Live Courses</a>
            
            <div class="py-2">
                <button class="flex items-center justify-between w-full text-gray-700 hover:text-green-600">
                    English <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>
                </button>
                <div class="pl-4 hidden">
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">العربية</a>
                    <a href="#" class="block py-2 text-gray-700 hover:text-green-600">English</a>
                </div>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero-section text-white py-20 md:py-32">
        <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-10 md:mb-0">
                <img src="https://alehsanaacademy.com/wp-content/uploads/2023/10/logoo-1.png" alt="Al Ehsan Academy" class="h-20 mb-6">
                <h1 class="text-3xl md:text-5xl font-bold mb-6">Discover the beauty of the Quran with Al Ehsan Academy</h1>
                <p class="text-lg mb-8">We believe learning the teachings of the Quran shouldn't be a hassle. That's why we've created a simple and user-friendly online registration process. Get yourself or your loved ones enrolled.</p>
                <a href="#" class="bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-8 rounded-full inline-block transition duration-300">Join Us Now</a>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Al-Ehsan-Academy-4.png" alt="Quran Learning" class="rounded-lg shadow-xl max-w-md w-full">
            </div>
        </div>
    </section>

    <!-- How It Works -->
    <section id="main-content" class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">How It Works</h2>
            
            <div class="grid md:grid-cols-3 gap-8">
                <div class="bg-green-50 p-6 rounded-lg text-center transition duration-300 hover:shadow-lg">
                    <div class="bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">1</div>
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Join us Now!</h3>
                    <p class="text-gray-600">Click "Join us Now!" to access our registration form. Enter your basic details and complete the form. Once done, your registration process is complete!</p>
                </div>
                
                <div class="bg-green-50 p-6 rounded-lg text-center transition duration-300 hover:shadow-lg">
                    <div class="bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">2</div>
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Schedule a Free Trial</h3>
                    <p class="text-gray-600">After registration, we'll contact you promptly. Together, we'll find a convenient time for your free trial class. Get insights into our Quran teaching process.</p>
                </div>
                
                <div class="bg-green-50 p-6 rounded-lg text-center transition duration-300 hover:shadow-lg">
                    <div class="bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">3</div>
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Embark on Your Quranic Journey</h3>
                    <p class="text-gray-600">Receive personalized login credentials. Log in and start your first class with our expert Quran teachers. Begin your sacred journey of Quranic education!</p>
                </div>
            </div>
        </div>
    </section>

    <!-- About Section -->
    <section class="py-16 bg-gray-50">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
                    <h2 class="text-3xl font-bold mb-6 text-gray-800">About Al Ehsan Academy</h2>
                    <p class="text-gray-600 mb-6">At Al Ehsan Academy, we are a dedicated and independent institution managed by a group of committed professionals. Our mission is to provide an inclusive learning platform where individuals from all walks of life can come together to study the holy Quran and understand the commandments of Islam.</p>
                    <p class="text-gray-600 mb-8">We believe in embracing diversity and welcoming everyone, regardless of their race, color, or caste, to join us on this enlightening journey.</p>
                    <a href="#" class="bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-8 rounded-full inline-block transition duration-300">Join Us Now!</a>
                </div>
                <div class="md:w-1/2">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Al-Ehsan-Academy-4.png" alt="About Al Ehsan Academy" class="rounded-lg shadow-lg w-full">
                </div>
            </div>
        </div>
    </section>

    <!-- Why Choose Us -->
    <section class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Why Choose Al Ehsan Academy?</h2>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-users text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Inclusive Learning</h3>
                    </div>
                    <p class="text-gray-600">We prioritize creating a supportive environment that welcomes students from diverse backgrounds.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-quran text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Quranic Teachings</h3>
                    </div>
                    <p class="text-gray-600">Our primary focus is on imparting the teachings of the holy Quran, enabling students to deepen their understanding of Islam.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-user-graduate text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Personalized Attention</h3>
                    </div>
                    <p class="text-gray-600">We ensure equal attention to every student, offering one-to-one sessions for personalized learning.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-clock text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Convenient Timings</h3>
                    </div>
                    <p class="text-gray-600">Our flexible scheduling options cater to the busy lifestyles of our students, making it easier for them to pursue their studies.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-hands-helping text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Holistic Approach</h3>
                    </div>
                    <p class="text-gray-600">We aim to equip our students with the fundamental principles of our religion, fostering a stronger Ummah.</p>
                </div>
                
                <div class="bg-gray-50 p-6 rounded-lg transition duration-300 hover:shadow-lg">
                    <div class="flex items-center mb-4">
                        <div class="bg-green-100 p-3 rounded-full mr-4">
                            <i class="fas fa-home text-green-600 text-xl"></i>
                        </div>
                        <h3 class="text-xl font-semibold text-gray-800">Your Second Family</h3>
                    </div>
                    <p class="text-gray-600">We consider ourselves your second family that you can trust for religious education and guidance.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Features -->
    <section class="py-16 bg-green-50">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Our Unique Features</h2>
            
            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Best-Quran-and-Arabic-Teaching-Materials.png" alt="Teaching Materials" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Best Quran and Arabic Teaching Materials</h3>
                    <p class="text-gray-600">Our curricula are developed to combine understanding and memorizing of the Quran enabling our students to experience a pleasant accompany of the Words of Allah.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Professional-Native-Arabic-Tutors-from-al-Azhar.png" alt="Professional Tutors" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Professional Native Arabic Tutors</h3>
                    <p class="text-gray-600">We only accept Online Native Arabic Tutors certified from al-Azhar with Ijazah. They also must be Fluent in English.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Female-Quran-Tutors-on-demand.png" alt="Female Tutors" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Female Quran Tutors on-demand</h3>
                    <p class="text-gray-600">Let us know if you prefer a Female Quran Tutor for your Family (Kids and Sisters).</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Learn-Quran-in-Multi-languages-Available.png" alt="Multi-language" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Learn Quran in Multi-languages</h3>
                    <p class="text-gray-600">Learn Quran Online in your native tongue, If you want to study using a language other than English.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Friendly-Teaching-Environment-for-Kids.png" alt="Kids Environment" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">Friendly Teaching Environment for Kids</h3>
                    <p class="text-gray-600">Our online Quran and Arabic Quran classes for kids are kids friendly as it is based on playing, rewards, encouragement.</p>
                </div>
                
                <div class="bg-white p-6 rounded-lg shadow-md feature-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/247-Flexible-Schedule-for-your-family.png" alt="Flexible Schedule" class="w-full h-48 object-cover rounded mb-4">
                    <h3 class="text-xl font-semibold mb-3 text-gray-800">24/7 Flexible Schedule</h3>
                    <p class="text-gray-600">Learn Arabic & Quran online according to your country's time zone. It is super flexible according to your families' free times.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Courses -->
    <section class="py-16 bg-white">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Our Courses</h2>
            <p class="text-center text-gray-600 max-w-3xl mx-auto mb-12">Our courses at Al Ehsan Academy are considered an integrated source for learning the Arabic language, Islamic studies, and the Holy Quran. These courses aim to provide students with the necessary skills to understand and use the Arabic language with confidence, understand Islamic beliefs and teachings, and read and recite the Holy Qur'an with correct recitation and contemplation.</p>
            
            <div class="grid md:grid-cols-3 gap-8">
                <!-- Quran Courses -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md course-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Holy-Quran-1.png" alt="Quran Courses" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-4 text-gray-800">Quran</h3>
                        <ul class="space-y-3">
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Holy Quran memorization course</a></li>
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Ijazah course</a></li>
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Quran course for children</a></li>
                        </ul>
                    </div>
                </div>
                
                <!-- Islamic Studies -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md course-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Islamic-studies-1.png" alt="Islamic Studies" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-4 text-gray-800">Islamic Studies</h3>
                        <ul class="space-y-3">
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Islamic studies course</a></li>
                        </ul>
                    </div>
                </div>
                
                <!-- Arabic -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md course-card transition duration-300">
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/12/Arabic-Language-1.png" alt="Arabic Courses" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-4 text-gray-800">Arabic</h3>
                        <ul class="space-y-3">
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Writing course in Arabic</a></li>
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Provisions of the Quran</a></li>
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Arabic language course</a></li>
                            <li><a href="#" class="text-green-600 hover:text-green-800 flex items-center"><i class="fas fa-arrow-right mr-2 text-sm"></i> Foundation course in Arabic</a></li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Form -->
    <section class="py-16 bg-green-600 text-white">
        <div class="container mx-auto px-4">
            <div class="max-w-3xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden">
                <div class="md:flex">
                    <div class="md:w-1/2 bg-green-700 p-8 flex flex-col justify-center">
                        <h2 class="text-2xl font-bold mb-4">Book a Free Trial Class</h2>
                        <p class="mb-6">Experience our teaching methodology with a free trial class. No obligations, just pure learning.</p>
                        <a href="#" class="bg-white text-green-700 hover:bg-gray-100 font-bold py-3 px-6 rounded-full inline-block text-center transition duration-300">Book Now</a>
                    </div>
                    <div class="md:w-1/2 p-8 text-gray-800">
                        <h3 class="text-xl font-bold mb-6">Contact Us</h3>
                        <form>
                            <div class="mb-4">
                                <label class="block text-gray-700 mb-2" for="name">Name *</label>
                                <input type="text" id="name" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500">
                            </div>
                            <div class="mb-4">
                                <label class="block text-gray-700 mb-2" for="whatsapp">WhatsApp *</label>
                                <input type="text" id="whatsapp" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500">
                            </div>
                            <div class="mb-6">
                                <label class="block text-gray-700 mb-2" for="country">Your Country</label>
                                <input type="text" id="country" class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-green-500">
                            </div>
                            <button type="submit" class="w-full bg-green-600 hover:bg-green-700 text-white font-bold py-3 px-4 rounded-lg transition duration-300 flex items-center justify-center">
                                Submit
                                <svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white hidden" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
                                    <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
                                    <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
                                </svg>
                            </button>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white pt-12 pb-6">
        <div class="container mx-auto px-4">
            <div class="grid md:grid-cols-4 gap-8 mb-8">
                <div>
                    <img src="https://alehsanaacademy.com/wp-content/uploads/2023/10/logoo.png" alt="Al Ehsan Academy" class="h-12 mb-4">
                    <p class="text-gray-400">At Al Ehsan Academy, we are a dedicated and independent institution managed by a group of committed professionals.</p>
                </div>
                
                <div>
                    <h3 class="text-lg font-semibold mb-4">Quick Links</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Courses</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Free Trial</a></li>
                    </ul>
                </div>
                
                <div>
                    <h3 class="text-lg font-semibold mb-4">Legal</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Terms and Conditions</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Refund Policy</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Connect Us</a></li>
                    </ul>
                </div>
                
                <div>
                    <h3 class="text-lg font-semibold mb-4">Contact</h3>
                    <ul class="space-y-2">
                        <li class="flex items-center"><i class="fas fa-envelope mr-2 text-green-400"></i> <a href="mailto:[email protected]" class="text-gray-400 hover:text-white">[email protected]</a></li>
                        <li class="flex items-center"><i class="fas fa-phone-alt mr-2 text-green-400"></i> <a href="tel:+123456789" class="text-gray-400 hover:text-white">+123 456 789</a></li>
                        <li class="flex items-center"><i class="fab fa-whatsapp mr-2 text-green-400"></i> <a href="#" class="text-gray-400 hover:text-white">WhatsApp</a></li>
                    </ul>
                </div>
            </div>
            
            <div class="border-t border-gray-700 pt-6 flex flex-col md:flex-row justify-between items-center">
                <p class="text-gray-400 mb-4 md:mb-0">© 2023 Al Ehsan Academy. All rights reserved.</p>
                <div class="flex space-x-4">
                    <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
                    <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
                    <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
                    <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
                </div>
            </div>
        </div>
    </footer>

    <!-- Floating WhatsApp Button -->
    <div class="fixed bottom-6 right-6 z-50">
        <a href="#" class="bg-green-500 hover:bg-green-600 text-white rounded-full p-4 shadow-lg flex items-center justify-center transition duration-300">
            <i class="fab fa-whatsapp text-2xl"></i>
            <span class="ml-2 font-semibold hidden md:inline">Free Trial</span>
        </a>
    </div>

    <script>
        // Mobile menu toggle
        document.getElementById('mobile-menu-button').addEventListener('click', function() {
            const menu = document.getElementById('mobile-menu');
            menu.classList.toggle('hidden');
        });

        // Form submission loading indicator
        const form = document.querySelector('form');
        if (form) {
            form.addEventListener('submit', function(e) {
                const submitButton = form.querySelector('button[type="submit"]');
                const spinner = submitButton.querySelector('svg');
                
                submitButton.disabled = true;
                spinner.classList.remove('hidden');
                
                // Simulate form submission
                setTimeout(() => {
                    submitButton.disabled = false;
                    spinner.classList.add('hidden');
                    alert('Thank you for your submission! We will contact you shortly.');
                }, 1500);
                
                e.preventDefault();
            });
        }

        // Dropdown menus
        const dropdowns = document.querySelectorAll('.dropdown');
        dropdowns.forEach(dropdown => {
            const button = dropdown.querySelector('button');
            const menu = dropdown.querySelector('.dropdown-menu');
            
            button.addEventListener('click', () => {
                menu.classList.toggle('hidden');
            });
            
            // Close when clicking outside
            document.addEventListener('click', (e) => {
                if (!dropdown.contains(e.target)) {
                    menu.classList.add('hidden');
                }
            });
        });

        // Mobile submenu toggle
        const mobileSubmenus = document.querySelectorAll('#mobile-menu > div');
        mobileSubmenus.forEach(menu => {
            const button = menu.querySelector('button');
            const submenu = menu.querySelector('div');
          
            button.addEventListener('click', () => {
                submenu.classList.toggle('hidden');
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=anubisweb/dsdas" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>