-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFITFUSION.html
More file actions
1332 lines (1247 loc) · 72.9 KB
/
FITFUSION.html
File metadata and controls
1332 lines (1247 loc) · 72.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FitFusion Elite - Premium Fitness Experience</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Animation -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
</head>
<body class="font-sans bg-gray-100">
<!-- Navigation -->
<nav class="bg-gradient-to-r from-gray-900 to-gray-800 fixed w-full z-50 backdrop-blur-md bg-opacity-90">
<div class="max-w-7xl mx-auto px-4">
<div class="flex justify-between items-center h-20">
<div class="flex items-center">
<span class="text-3xl font-bold bg-gradient-to-r from-red-600 to-orange-500 bg-clip-text text-transparent">FITFUSION</span>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-10">
<a href="#home" class="text-gray-300 hover:text-red-500 uppercase font-semibold tracking-wide transition-all">Home</a>
<a href="#features" class="text-gray-300 hover:text-red-500 uppercase font-semibold tracking-wide transition-all">Features</a>
<a href="#classes" class="text-gray-300 hover:text-red-500 uppercase font-semibold tracking-wide transition-all">Classes</a>
<a href="#trainers" class="text-gray-300 hover:text-red-500 uppercase font-semibold tracking-wide transition-all">Trainers</a>
<a href="#pricing" class="text-gray-300 hover:text-red-500 uppercase font-semibold tracking-wide transition-all">Membership</a>
</div>
<button class="md:hidden text-gray-300 hover:text-red-500">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-20 bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900 text-white min-h-screen flex items-center relative overflow-hidden">
<div class="absolute inset-0 z-0">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 to-transparent"></div>
<img src="https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Fitness"
class="w-full h-full object-cover opacity-20">
</div>
<div class="max-w-7xl mx-auto px-4 py-16 relative z-10">
<div class="flex flex-col md:flex-row items-center gap-16">
<div class="md:w-1/2" data-aos="fade-right">
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
Forge Your Legacy at
<span class="bg-gradient-to-r from-red-600 to-orange-500 bg-clip-text text-transparent">FitFusion Elite</span>
</h1>
<p class="text-xl mb-10 text-gray-300">Where world-class training meets luxury wellness experience</p>
<div class="flex gap-6">
<button class="bg-gradient-to-r from-red-600 to-orange-500 hover:from-orange-500 hover:to-red-600 px-10 py-5 rounded-full text-lg font-bold transition-all transform hover:scale-105 shadow-xl">
Start Free Trial
</button>
<button class="border-2 border-red-600 text-red-500 hover:bg-red-600 hover:text-white px-10 py-5 rounded-full text-lg font-bold transition-all transform hover:scale-105">
Explore Programs
</button>
</div>
</div>
<div class="md:w-1/2" data-aos="fade-left">
<div class="relative group">
<div class="absolute -inset-2 bg-gradient-to-r from-red-600 to-orange-500 rounded-3xl blur opacity-30 group-hover:opacity-60 transition duration-1000"></div>
<img src="https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Fitness"
class="rounded-3xl shadow-2xl relative transform group-hover:scale-105 transition duration-500">
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-28 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-600 font-bold uppercase tracking-wide">Why Choose Us</span>
<h2 class="text-5xl font-bold mt-4">Redefining Fitness Excellence</h2>
</div>
<div class="grid md:grid-cols-2 gap-12">
<!-- Zig-Zag Layout Card -->
<div class="md:col-span-2 grid md:grid-cols-2 gap-8 bg-gradient-to-br from-gray-900 to-gray-800 rounded-3xl p-12 text-white shadow-2xl" data-aos="fade-right">
<div class="space-y-6">
<div class="w-20 h-20 bg-red-500 rounded-2xl flex items-center justify-center">
<i class="fas fa-rocket text-3xl"></i>
</div>
<h3 class="text-3xl font-bold">Progressive Acceleration Program</h3>
<p class="text-gray-300">AI-driven periodization for continuous gains</p>
<div class="flex gap-4">
<div class="bg-red-500/20 p-4 rounded-xl">
<div class="text-2xl font-bold">97%</div>
<p class="text-sm">Member Retention</p>
</div>
<div class="bg-red-500/20 p-4 rounded-xl">
<div class="text-2xl font-bold">4.9/5</div>
<p class="text-sm">Satisfaction Rate</p>
</div>
</div>
</div>
<div class="relative group self-center">
<div class="absolute -inset-2 bg-gradient-to-r from-red-500 to-orange-400 rounded-3xl blur opacity-30 group-hover:opacity-60"></div>
<img src="https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Training"
class="rounded-2xl transform group-hover:scale-105 transition duration-500">
</div>
</div>
<!-- Floating Card with Badge -->
<div class="relative group" data-aos="zoom-in">
<div class="absolute inset-0 bg-gradient-to-r from-red-600 to-orange-500 rounded-3xl transform rotate-2 group-hover:rotate-1 transition duration-500"></div>
<div class="relative bg-white rounded-3xl p-8 h-full shadow-xl">
<div class="flex items-start justify-between">
<div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-brain text-white text-2xl"></i>
</div>
<span class="bg-red-500 text-white px-3 py-1 rounded-full text-sm">New</span>
</div>
<h3 class="text-2xl font-bold mb-4">Neuro-Athletics Training</h3>
<p class="text-gray-600">Cognitive performance enhancement through:</p>
<ul class="mt-4 space-y-3">
<li class="flex items-center">
<div class="w-6 h-6 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-check text-red-500 text-xs"></i>
</div>
Reaction time optimization
</li>
<li class="flex items-center">
<div class="w-6 h-6 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-check text-red-500 text-xs"></i>
</div>
Decision-making drills
</li>
</ul>
</div>
</div>
<!-- Timeline Progress Card -->
<div class="bg-gray-50 rounded-3xl p-8 shadow-xl overflow-hidden" data-aos="fade-left">
<div class="flex items-center justify-between mb-6">
<h3 class="text-2xl font-bold">Progress Architecture</h3>
<div class="text-red-500 text-3xl">
<i class="fas fa-chart-line"></i>
</div>
</div>
<div class="space-y-6">
<div class="relative pt-4">
<div class="flex justify-between text-sm mb-2">
<span>Strength Gain</span>
<span>82%</span>
</div>
<div class="h-2 bg-gray-200 rounded-full overflow-hidden">
<div class="w-4/5 h-full bg-gradient-to-r from-red-500 to-orange-400"></div>
</div>
</div>
<div class="relative pt-4">
<div class="flex justify-between text-sm mb-2">
<span>Mobility Improvement</span>
<span>67%</span>
</div>
<div class="h-2 bg-gray-200 rounded-full overflow-hidden">
<div class="w-2/3 h-full bg-gradient-to-r from-red-500 to-orange-400"></div>
</div>
</div>
</div>
<div class="mt-8 border-t pt-6">
<div class="flex items-center text-red-500">
<i class="fas fa-chart-pie mr-2"></i>
<span class="font-bold">Personalized Analytics Dashboard</span>
</div>
</div>
</div>
<!-- Vertical Feature Card -->
<div class="md:col-span-2 bg-gradient-to-b from-gray-900 to-gray-800 rounded-3xl p-8 text-white shadow-2xl" data-aos="fade-up">
<div class="grid md:grid-cols-3 gap-8 items-center">
<div class="md:col-span-1">
<div class="w-full h-64 bg-red-500/20 rounded-2xl p-6">
<div class="text-5xl font-bold mb-2">360°</div>
<p class="text-red-300">Holistic Approach</p>
</div>
</div>
<div class="md:col-span-2">
<h3 class="text-3xl font-bold mb-4">Comprehensive Wellness Integration</h3>
<div class="grid grid-cols-2 gap-6">
<div class="flex items-center">
<div class="w-10 h-10 bg-red-500 rounded-xl flex items-center justify-center mr-4">
<i class="fas fa-heartbeat"></i>
</div>
<span>Metabolic Testing</span>
</div>
<div class="flex items-center">
<div class="w-10 h-10 bg-red-500 rounded-xl flex items-center justify-center mr-4">
<i class="fas fa-dna"></i>
</div>
<span>Genetic Analysis</span>
</div>
<!-- Add more items -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Membership Tier Section -->
<section class="py-28 bg-gradient-to-br from-gray-900 to-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Exclusive Membership</span>
<h2 class="text-5xl font-bold mt-4">Unlock Elite Status</h2>
</div>
<div class="grid md:grid-cols-2 xl:grid-cols-4 gap-8">
<!-- Diamond Tier (Vertical Layout) -->
<div class="bg-gradient-to-b from-gray-800 to-gray-900 rounded-3xl p-8 shadow-2xl flex flex-col" data-aos="flip-up">
<div class="text-center mb-6">
<span class="bg-red-500 text-white px-4 py-1 rounded-full text-sm">VIP Choice</span>
</div>
<h3 class="text-4xl font-bold text-center mb-4">Diamond</h3>
<div class="text-center mb-8">
<span class="text-5xl font-bold">$499</span>
<span class="text-gray-400">/month</span>
</div>
<div class="flex-1 grid grid-cols-2 gap-4 mb-8">
<div class="text-center p-4 bg-gray-700/50 rounded-xl">
<div class="text-2xl font-bold mb-2">24/7</div>
<p class="text-sm text-gray-300">Dedicated Trainer</p>
</div>
<div class="text-center p-4 bg-gray-700/50 rounded-xl">
<div class="text-2xl font-bold mb-2">∞</div>
<p class="text-sm text-gray-300">Guest Passes</p>
</div>
</div>
<button class="w-full bg-gradient-to-r from-red-600 to-red-800 text-white py-4 rounded-xl font-bold hover:scale-105 transition-transform">
Elevate to VIP
</button>
</div>
<!-- Platinum Tier (Featured Card) -->
<div class="relative md:col-span-2 xl:col-span-2 group" data-aos="zoom-in">
<div class="absolute inset-0 bg-gradient-to-r from-red-600 to-orange-500 rounded-3xl transform rotate-1 opacity-20 group-hover:opacity-30 transition-opacity"></div>
<div class="relative bg-white text-gray-900 rounded-3xl p-12 shadow-2xl">
<div class="flex justify-between items-start mb-8">
<div>
<h3 class="text-3xl font-bold">Platinum Pro</h3>
<p class="text-red-500 font-semibold">Most Comprehensive Plan</p>
</div>
<span class="bg-red-500 text-white px-4 py-2 rounded-full text-sm font-bold">Popular</span>
</div>
<div class="text-5xl font-bold mb-8">
$299<span class="text-2xl text-gray-500">/month</span>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-12">
<div class="space-y-4">
<div class="flex items-center">
<div class="w-8 h-8 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-infinity text-red-500"></i>
</div>
Unlimited Cryotherapy
</div>
<div class="flex items-center">
<div class="w-8 h-8 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-lock text-red-500"></i>
</div>
Private Locker
</div>
</div>
<div class="space-y-4">
<div class="flex items-center">
<div class="w-8 h-8 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-calendar-star text-red-500"></i>
</div>
Priority Booking
</div>
<div class="flex items-center">
<div class="w-8 h-8 bg-red-100 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-dumbbell text-red-500"></i>
</div>
Premium Equipment
</div>
</div>
</div>
<button class="w-full bg-gradient-to-r from-red-600 to-orange-500 text-white py-5 rounded-xl text-lg font-bold hover:shadow-xl transition-all">
Start Platinum Journey
</button>
</div>
</div>
<!-- Gold Tier (Minimalist Card) -->
<div class="bg-gray-800 rounded-3xl p-8 border-2 border-red-500/20 hover:border-red-500/40 transition-all" data-aos="fade-left">
<div class="text-center mb-8">
<h3 class="text-3xl font-bold mb-2">Gold</h3>
<p class="text-gray-400">Essential Access</p>
</div>
<div class="text-4xl font-bold text-center mb-8">
$199<span class="text-xl text-gray-400">/month</span>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-center text-center justify-center">
<i class="fas fa-check-circle text-red-500 mr-2"></i>Peak Hours Access
</li>
<li class="flex items-center text-center justify-center">
<i class="fas fa-check-circle text-red-500 mr-2"></i>Group Classes
</li>
</ul>
<button class="w-full bg-gray-700 hover:bg-red-500 text-white py-4 rounded-xl font-bold transition-colors">
Choose Gold
</button>
</div>
<!-- On-Demand Pass (Horizontal Card) -->
<div class="md:col-span-2 xl:col-span-4 bg-gray-800 rounded-3xl p-8" data-aos="fade-up">
<div class="grid md:grid-cols-3 items-center gap-8">
<div class="md:col-span-1">
<div class="bg-red-500/20 p-6 rounded-2xl text-center">
<div class="text-3xl font-bold">Flexi</div>
<p class="text-red-300 text-sm">Pay-As-You-Go</p>
</div>
</div>
<div class="md:col-span-2">
<div class="flex flex-wrap gap-4 mb-6">
<button class="px-6 py-3 bg-red-500/20 text-red-500 rounded-full">10 Sessions - $499</button>
<button class="px-6 py-3 bg-red-500/20 text-red-500 rounded-full">20 Sessions - $899</button>
<button class="px-6 py-3 bg-red-500/20 text-red-500 rounded-full">50 Sessions - $1999</button>
</div>
<p class="text-gray-400">Includes: Open gym access, Basic amenities, Class credits</p>
</div>
</div>
</div>
<!-- Corporate Membership -->
<div class="md:col-span-2 bg-gradient-to-br from-gray-900 to-red-900/20 rounded-3xl p-8 relative overflow-hidden" data-aos="fade-right">
<div class="absolute top-0 right-0 w-1/3 h-full bg-gradient-to-l from-red-500/10 to-transparent"></div>
<div class="relative z-10">
<h3 class="text-3xl font-bold mb-4">Corporate Wellness</h3>
<div class="grid md:grid-cols-2 gap-8">
<div class="space-y-6">
<div class="text-4xl font-bold">
Custom<br>Pricing
</div>
<ul class="space-y-4">
<li class="flex items-center">
<i class="fas fa-building text-red-500 mr-3"></i>
Team Packages
</li>
<li class="flex items-center">
<i class="fas fa-chart-network text-red-500 mr-3"></i>
Enterprise Solutions
</li>
</ul>
</div>
<div class="grid grid-cols-2 gap-4">
<div class="p-4 bg-red-500/10 rounded-xl flex items-center justify-center">
<img src="company-logo-1.svg" class="h-8 opacity-75">
</div>
<div class="p-4 bg-red-500/10 rounded-xl flex items-center justify-center">
<img src="company-logo-2.svg" class="h-8 opacity-75">
</div>
<!-- Add more company logos -->
</div>
</div>
<button class="mt-8 w-full bg-red-500 hover:bg-red-600 text-white py-4 rounded-xl font-bold transition-colors">
Request Enterprise Plan
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Recovery & Wellness Section -->
<section class="py-28 bg-gradient-to-br from-gray-900 to-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Optimal Recovery</span>
<h2 class="text-5xl font-bold mt-4">Advanced Regeneration Hub</h2>
</div>
<div class="grid md:grid-cols-4 gap-8">
<div class="p-6 bg-gray-800 rounded-2xl hover:bg-gray-700 transition-all" data-aos="zoom-in">
<div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-snowflake text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Cryotherapy Chambers</h3>
<p class="text-gray-400">Whole-body cold therapy for accelerated recovery</p>
</div>
<div class="p-6 bg-gray-800 rounded-2xl hover:bg-gray-700 transition-all" data-aos="zoom-in">
<div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-spa text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Luxury Spa Suite</h3>
<p class="text-gray-400">Sports massage & deep tissue therapies</p>
</div>
<div class="p-6 bg-gray-800 rounded-2xl hover:bg-gray-700 transition-all" data-aos="zoom-in">
<div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Mindfulness Studio</h3>
<p class="text-gray-400">Guided meditation & breathing sessions</p>
</div>
<div class="p-6 bg-gray-800 rounded-2xl hover:bg-gray-700 transition-all" data-aos="zoom-in">
<div class="w-16 h-16 bg-red-500 rounded-xl flex items-center justify-center mb-6">
<i class="fas fa-bone text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Physiotherapy</h3>
<p class="text-gray-400">Injury prevention & rehabilitation</p>
</div>
</div>
</div>
</section>
<!-- Events & Challenges Section -->
<section class="py-28 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Community Events</span>
<h2 class="text-5xl font-bold mt-4">Elite Fitness Challenges</h2>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-xl transition-all" data-aos="flip-up">
<img src="https://images.unsplash.com/photo-1599058917765-a7802fbc70fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1169&q=80"
alt="Challenge"
class="w-full h-64 object-cover">
<div class="p-8">
<div class="flex justify-between items-start mb-4">
<h3 class="text-2xl font-bold">Iron Will Challenge</h3>
<span class="bg-red-500 text-white px-3 py-1 rounded-full text-sm">New</span>
</div>
<div class="flex items-center text-gray-500 mb-4">
<i class="fas fa-calendar-alt mr-2"></i>
<span>Aug 15-30, 2023</span>
</div>
<p class="text-gray-600 mb-6">30-day transformation challenge with $10k prize pool</p>
<button class="w-full bg-gray-900 text-white py-3 rounded-xl font-bold hover:bg-red-500 transition-all">
Join Challenge
</button>
</div>
</div>
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-xl transition-all" data-aos="flip-up">
<img src="https://images.unsplash.com/photo-1535743686920-55e4145369b9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1332&q=80"
alt="Marathon"
class="w-full h-64 object-cover">
<div class="p-8">
<h3 class="text-2xl font-bold mb-4">Ultra Marathon Prep</h3>
<div class="flex items-center text-gray-500 mb-4">
<i class="fas fa-calendar-alt mr-2"></i>
<span>Every Saturday 6 AM</span>
</div>
<p class="text-gray-600 mb-6">Endurance training program for marathon runners</p>
<button class="w-full bg-gray-900 text-white py-3 rounded-xl font-bold hover:bg-red-500 transition-all">
RSVP Now
</button>
</div>
</div>
<div class="bg-gray-50 rounded-3xl overflow-hidden hover:shadow-xl transition-all" data-aos="flip-up">
<img src="https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Yoga"
class="w-full h-64 object-cover">
<div class="p-8">
<h3 class="text-2xl font-bold mb-4">Sunrise Yoga Series</h3>
<div class="flex items-center text-gray-500 mb-4">
<i class="fas fa-calendar-alt mr-2"></i>
<span>Daily 6:30 AM</span>
</div>
<p class="text-gray-600 mb-6">Morning mindfulness sessions on the rooftop terrace</p>
<button class="w-full bg-gray-900 text-white py-3 rounded-xl font-bold hover:bg-red-500 transition-all">
Book Session
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Success Stories Section -->
<section class="py-28 bg-gradient-to-br from-gray-900 to-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Transformations</span>
<h2 class="text-5xl font-bold mt-4">Life-Changing Results</h2>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Card 1 - Bottom-aligned Content -->
<div class="relative group" data-aos="zoom-in">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent rounded-3xl"></div>
<img src="https://images.unsplash.com/photo-1549060279-7e169fbb13e3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Transformation"
class="rounded-3xl h-96 w-full object-cover">
<div class="absolute bottom-0 p-8">
<h3 class="text-2xl font-bold mb-2">Mark Johnson</h3>
<p class="text-red-500 font-semibold">-32kg in 6 Months</p>
<p class="text-gray-300 mt-4">"FitFusion completely transformed my life and health"</p>
</div>
</div>
<!-- Card 2 - Top-aligned Content with Different Gradient -->
<div class="relative group" data-aos="fade-right">
<div class="absolute inset-0 bg-gradient-to-b from-gray-900 via-transparent to-transparent rounded-3xl"></div>
<img src="https://images.unsplash.com/photo-1552674605-db6ffd4faceb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Transformation"
class="rounded-3xl h-96 w-full object-cover">
<div class="absolute top-0 p-8">
<h3 class="text-2xl font-bold mb-2">Sarah Miller</h3>
<p class="text-red-500 font-semibold">-28kg in 5 Months</p>
<p class="text-gray-300 mt-4">"I regained my confidence with FitFusion's amazing community"</p>
</div>
</div>
<!-- Card 3 - Centered Content with Quote Icon -->
<div class="relative group" data-aos="flip-left">
<div class="absolute inset-0 bg-gradient-to-tr from-gray-900 via-transparent to-transparent rounded-3xl"></div>
<img src="https://images.unsplash.com/photo-1574680178050-55c6a6a96e0a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Transformation"
class="rounded-3xl h-96 w-full object-cover">
<div class="absolute inset-0 flex items-center justify-center flex-col text-center p-8">
<svg class="w-12 h-12 mb-4 text-red-500" 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="M13 10V3L4 14h7v7l9-11h-7z"></path>
</svg>
<h3 class="text-2xl font-bold mb-2">The Davis Family</h3>
<p class="text-red-500 font-semibold">Combined -75kg in 1 Year</p>
<p class="text-gray-300 mt-4">"FitFusion brought our family closer through health"</p>
</div>
</div>
</div>
</div>
</section>
<!-- Wellness Blog Section -->
<section class="py-28 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Expert Insights</span>
<h2 class="text-5xl font-bold mt-4">Elite Wellness Journal</h2>
</div>
<div class="grid md:grid-cols-2 gap-12">
<!-- Featured Article (Full Width) -->
<article class="md:col-span-2 bg-gradient-to-br from-gray-900 to-gray-800 text-white rounded-3xl overflow-hidden shadow-2xl" data-aos="fade-up">
<div class="grid md:grid-cols-2 gap-8">
<div class="relative group">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<img src="https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Featured"
class="w-full h-96 object-cover transform group-hover:scale-105 transition duration-500">
<span class="absolute bottom-6 left-6 bg-red-500 px-4 py-1 rounded-full">Featured Post</span>
</div>
<div class="p-12 flex flex-col justify-center">
<div class="flex items-center mb-6">
<span class="bg-red-500/20 text-red-300 px-3 py-1 rounded-full text-sm">Research</span>
<span class="mx-4">•</span>
<span class="text-gray-400">15 min read</span>
</div>
<h3 class="text-4xl font-bold mb-6">Biohacking Performance Metrics</h3>
<p class="text-gray-300 mb-8">Advanced techniques used by Olympic athletes to optimize recovery and performance</p>
<div class="flex items-center">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Author"
class="w-14 h-14 rounded-full mr-4 border-2 border-red-500">
<div>
<p class="font-bold">Dr. Michael Chen</p>
<p class="text-gray-400 text-sm">Performance Scientist</p>
</div>
</div>
</div>
</div>
</article>
<!-- Video Tutorial Card -->
<article class="bg-gray-900 text-white rounded-3xl overflow-hidden group" data-aos="zoom-in">
<div class="relative">
<div class="absolute inset-0 bg-red-500/20 mix-blend-multiply"></div>
<img src="https://images.unsplash.com/photo-1579758622668-24d937c93979?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1064&q=80"
alt="Video"
class="w-full h-64 object-cover">
<div class="absolute inset-0 flex items-center justify-center">
<button class="w-20 h-20 bg-red-500 rounded-full flex items-center justify-center hover:scale-110 transition-transform">
<i class="fas fa-play text-2xl"></i>
</button>
</div>
</div>
<div class="p-8">
<div class="flex items-center justify-between mb-4">
<span class="text-red-500 text-sm">Video Tutorial</span>
<span class="text-gray-400 text-sm">8:24 min</span>
</div>
<h3 class="text-2xl font-bold mb-4">Advanced Mobility Flow</h3>
<p class="text-gray-300">Full-body movement sequence for enhanced flexibility</p>
</div>
</article>
<!-- Podcast Card -->
<article class="bg-gray-50 rounded-3xl p-8 hover:shadow-xl transition-all" data-aos="fade-left">
<div class="flex items-center justify-between mb-6">
<div class="flex items-center">
<i class="fas fa-podcast text-red-500 text-2xl mr-3"></i>
<span class="font-bold">Performance Podcast</span>
</div>
<span class="bg-red-100 text-red-500 px-3 py-1 rounded-full text-sm">New Episode</span>
</div>
<h3 class="text-2xl font-bold mb-4">Nutrition for Champions</h3>
<p class="text-gray-600 mb-6">Interview with Olympic dietitian Emma Johnson</p>
<div class="bg-white rounded-xl p-4 shadow-sm mb-6">
<div class="flex items-center justify-between">
<div class="flex items-center">
<button class="w-12 h-12 bg-red-500 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-play text-white"></i>
</button>
<div>
<p class="font-bold">Episode 42</p>
<p class="text-sm text-gray-500">58 min</p>
</div>
</div>
<button class="text-red-500 hover:text-red-600">
<i class="fas fa-download"></i>
</button>
</div>
</div>
<div class="flex items-center">
<img src="https://images.unsplash.com/photo-1627161683077-e34782c24d81?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=703&q=80"
alt="Host"
class="w-12 h-12 rounded-full mr-4">
<div>
<p class="font-bold">Hosted by</p>
<p class="text-gray-500 text-sm">Alex Turner</p>
</div>
</div>
</article>
<!-- Tips Carousel -->
<article class="md:col-span-2 bg-gray-900 text-white rounded-3xl p-12" data-aos="fade-right">
<div class="flex flex-col md:flex-row gap-8 items-center">
<div class="flex-1">
<h3 class="text-3xl font-bold mb-6">Daily Wellness Tips</h3>
<div class="relative">
<div class="absolute left-0 top-0 bottom-0 w-1 bg-red-500"></div>
<div class="pl-8">
<div class="space-y-6">
<div>
<p class="text-red-500 text-sm">Tip #1</p>
<p class="text-xl">Morning hydration protocol</p>
</div>
<div>
<p class="text-red-500 text-sm">Tip #2</p>
<p class="text-xl">Post-workout nutrition timing</p>
</div>
<div>
<p class="text-red-500 text-sm">Tip #3</p>
<p class="text-xl">Evening mobility routine</p>
</div>
</div>
</div>
</div>
<div class="mt-8 flex gap-4">
<button class="w-12 h-12 bg-red-500 rounded-full flex items-center justify-center">
<i class="fas fa-chevron-left"></i>
</button>
<button class="w-12 h-12 bg-red-500 rounded-full flex items-center justify-center">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
<div class="md:w-1/3">
<div class="relative group">
<div class="absolute -inset-2 bg-gradient-to-r from-red-500 to-orange-400 rounded-3xl blur opacity-30"></div>
<img src="https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Tips"
class="rounded-2xl relative transform group-hover:scale-105 transition duration-500">
</div>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- App Section -->
<section class="py-28 bg-gradient-to-br from-gray-900 to-gray-800 text-white">
<div class="max-w-7xl mx-auto px-4">
<div class="grid md:grid-cols-2 gap-16 items-center">
<div class="space-y-8" data-aos="fade-right">
<span class="text-red-500 font-bold uppercase tracking-wide">Mobile Experience</span>
<h2 class="text-5xl font-bold leading-tight">Your Fitness Journey in Your Pocket</h2>
<div class="space-y-6">
<div class="flex items-center gap-4">
<div class="w-14 h-14 bg-red-500 rounded-xl flex items-center justify-center">
<i class="fas fa-chart-line text-white text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold">Real-Time Analytics</h3>
<p class="text-gray-300">Track 20+ performance metrics</p>
</div>
</div>
<!-- Add more features -->
</div>
<div class="flex gap-4 mt-8">
<a href="#" class="hover:scale-105 transition-transform">
<img src="app-store-badge.svg" alt="App Store" class="h-14">
</a>
<a href="#" class="hover:scale-105 transition-transform">
<img src="play-store-badge.svg" alt="Play Store" class="h-14">
</a>
</div>
</div>
<div class="relative" data-aos="fade-left">
<div class="absolute -inset-8 bg-gradient-to-r from-red-500 to-orange-400 rounded-3xl rotate-3 blur opacity-30"></div>
<img src="https://images.unsplash.com/photo-1616627561839-074385245ff6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Mobile App"
class="relative rounded-3xl shadow-2xl">
</div>
</div>
</div>
</section>
<!-- Facility Showcase Section -->
<section class="relative h-screen bg-gray-900 text-white">
<div class="absolute inset-0 z-0">
<img src="https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Facility"
class="w-full h-full object-cover opacity-40">
</div>
<div class="relative z-10 max-w-7xl mx-auto px-4 h-full flex items-center">
<div class="grid md:grid-cols-3 gap-8 w-full">
<div class="space-y-8" data-aos="fade-right">
<span class="text-red-500 font-bold uppercase tracking-wide">World-Class Facilities</span>
<h2 class="text-5xl font-bold leading-tight">The Ultimate Training Environment</h2>
<p class="text-xl text-gray-300">25,000 sq ft of premium training space featuring:</p>
<ul class="space-y-4 text-xl">
<li class="flex items-center">
<div class="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-check"></i>
</div>
Olympic-grade lifting platforms
</li>
<li class="flex items-center">
<div class="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-check"></i>
</div>
High-altitude cardio zone
</li>
<li class="flex items-center">
<div class="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-check"></i>
</div>
3-story indoor climbing complex
</li>
<li class="flex items-center">
<div class="w-8 h-8 bg-red-500 rounded-full flex items-center justify-center mr-4">
<i class="fas fa-check"></i>
</div>
Cryotherapy recovery chambers
</li>
</ul>
</div>
<div class="md:col-span-2 grid grid-cols-2 gap-8" data-aos="fade-left">
<!-- Card 1 - Standard Stat Card -->
<div class="bg-white text-gray-900 p-8 rounded-3xl shadow-2xl" data-aos="zoom-in">
<div class="text-red-500 text-5xl mb-4">4</div>
<h3 class="text-2xl font-bold mb-2">Hydrotherapy Pools</h3>
<p class="text-gray-600">Recovery zones with contrast temperature therapy</p>
</div>
<!-- Card 2 - Icon Card with Gradient -->
<div class="bg-gradient-to-br from-red-500 to-red-600 text-white p-8 rounded-3xl shadow-2xl relative overflow-hidden" data-aos="flip-up">
<div class="absolute top-4 right-4 opacity-20">
<i class="fas fa-dumbbell text-8xl"></i>
</div>
<div class="text-4xl font-bold mb-2">300+</div>
<h3 class="text-2xl font-bold mb-2">Training Stations</h3>
<p class="opacity-90">Professional-grade equipment selection</p>
</div>
<!-- Card 3 - Image Background Card -->
<div class="relative text-white p-8 rounded-3xl shadow-2xl overflow-hidden" data-aos="fade-up">
<img src="https://images.unsplash.com/photo-1594381898411-846e7d193883?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80"
alt="Recovery Lounge"
class="absolute inset-0 w-full h-full object-cover">
<div class="absolute inset-0 bg-gradient-to-t from-gray-900 via-transparent to-transparent"></div>
<div class="relative">
<div class="text-2xl font-bold mb-2">Recovery Lounge</div>
<p class="text-red-400 font-semibold">Included with Membership</p>
<p class="mt-2 opacity-90">Sports massage & physiotherapy</p>
</div>
</div>
<!-- Card 4 - Vertical Stat Card -->
<div class="bg-gray-800 p-8 rounded-3xl shadow-2xl border-l-4 border-red-500" data-aos="zoom-out">
<div class="flex items-center h-full">
<div class="text-center w-full">
<div class="text-red-500 text-4xl font-bold mb-2">24/7</div>
<h3 class="text-xl font-bold mb-2">Open Access</h3>
<p class="text-gray-400">Keycard entry with biometric security</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Nutrition Section -->
<section class="py-28 bg-gradient-to-br from-orange-100 to-red-50">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-20" data-aos="fade-up">
<span class="text-red-500 font-bold uppercase tracking-wide">Fuel Your Greatness</span>
<h2 class="text-5xl font-bold mt-4">Elite Nutrition Planning</h2>
</div>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="space-y-8" data-aos="fade-right">
<div class="bg-white rounded-3xl p-8 shadow-xl">
<h3 class="text-2xl font-bold mb-4">Macro-Optimized Meal Plans</h3>
<div class="flex gap-4 mb-6">
<div class="flex-1 bg-gray-100 p-4 rounded-xl">
<div class="text-red-500 text-2xl font-bold mb-2">2,300</div>
<p class="text-sm text-gray-600">Calorie Base Plan</p>
</div>
<!-- Add more nutrition stats -->
</div>
<p class="text-gray-600">Customized nutrition programs powered by AI analysis and expert dietitians</p>
</div>
<div class="bg-gray-900 text-white rounded-3xl p-8 shadow-xl">
<h3 class="text-2xl font-bold mb-4">Supplement Protocols</h3>
<p class="text-gray-300">Pharmaceutical-grade supplementation plans tailored to your biometrics</p>
<div class="mt-6 flex gap-4">
<div class="bg-red-500 w-12 h-12 rounded-xl flex items-center justify-center">
<i class="fas fa-capsules"></i>
</div>
<!-- Add more supplement icons -->
</div>
</div>
</div>
<div class="relative" data-aos="fade-left">
<div class="absolute -inset-8 bg-gradient-to-r from-red-500 to-orange-400 rounded-3xl rotate-3"></div>
<img src="https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1153&q=80"
alt="Nutrition"
class="relative rounded-3xl shadow-xl">
</div>
</div>
</div>
</section>
<!-- Immersive Experience Section -->
<section class="py-28 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="grid md:grid-cols-2 gap-16 items-center">
<div class="relative group" data-aos="fade-right">
<div class="absolute -inset-2 bg-gradient-to-r from-red-600 to-orange-500 rounded-3xl blur opacity-30 group-hover:opacity-60 transition duration-1000"></div>
<div class="relative space-y-6">
<div class="bg-gray-900 rounded-3xl p-8 transform hover:-translate-y-2 transition-all duration-500">
<h3 class="text-3xl font-bold text-white mb-4">Virtual Reality Training</h3>
<p class="text-gray-400">Experience immersive workout environments powered by VR technology</p>
</div>
<div class="bg-gray-100 rounded-3xl p-8 transform hover:-translate-y-2 transition-all duration-500">
<h3 class="text-3xl font-bold text-gray-900 mb-4">AI Nutrition Planning</h3>
<p class="text-gray-600">Custom meal plans optimized by artificial intelligence</p>
</div>
</div>
</div>
<div class="space-y-8" data-aos="fade-left">
<span class="text-red-500 font-bold uppercase tracking-wide">Next Generation Fitness</span>
<h2 class="text-5xl font-bold leading-tight">Reimagining the Fitness Experience</h2>
<p class="text-xl text-gray-600">At FitFusion Elite, we merge cutting-edge technology with human potential to create transformative fitness journeys.</p>
<div class="flex gap-6 mt-8">
<button class="bg-gradient-to-r from-red-600 to-orange-500 text-white px-8 py-4 rounded-xl text-lg font-bold hover:opacity-90 transition-all">
Explore Innovation
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Floating Action Buttons -->
<div class="fixed bottom-8 right-8 z-50 space-y-4">
<!-- Scroll to Top -->
<button id="scrollTop" class="hidden w-14 h-14 bg-gradient-to-r from-red-600 to-orange-500 rounded-full shadow-xl flex items-center justify-center hover:scale-110 transition-transform">
<i class="fas fa-arrow-up text-white text-xl"></i>
</button>
<!-- Chat Icon -->
<button id="chatButton" class="w-14 h-14 bg-gradient-to-r from-red-600 to-orange-500 rounded-full shadow-xl flex items-center justify-center hover:scale-110 transition-transform">
<i class="fas fa-comment-dots text-white text-xl"></i>
</button>
</div>
<!-- Chat Modal -->
<div id="chatModal" class="fixed inset-0 bg-black bg-opacity-50 hidden z-50 backdrop-blur-sm">
<div class="absolute bottom-8 right-8 w-96 bg-white rounded-2xl shadow-2xl" data-aos="zoom-in">
<div class="bg-gradient-to-r from-red-600 to-orange-500 p-6 rounded-t-2xl">
<div class="flex justify-between items-center">
<h3 class="text-white text-xl font-bold">Elite Support</h3>
<button id="closeChat" class="text-white hover:text-gray-200">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<div class="p-6 max-h-96 overflow-y-auto">
<div class="space-y-4">
<div class="bg-gray-100 p-4 rounded-xl">
<p class="text-sm">Hi! How can we help you today?</p>
<span class="text-xs text-gray-500">2:34 PM</span>
</div>
<!-- Chat messages here -->
</div>
</div>
<div class="p-4 border-t">
<div class="flex gap-2">
<input type="text" placeholder="Type your message..."
class="flex-1 px-4 py-2 border rounded-xl focus:outline-none focus:ring-2 focus:ring-red-500">
<button class="w-10 h-10 bg-red-500 text-white rounded-xl hover:bg-red-600">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
</div>
<!-- Newsletter Popup -->
<div id="newsletterPopup" class="fixed inset-0 bg-black bg-opacity-50 hidden z-50 backdrop-blur-sm flex items-center justify-center p-4">
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-md transform-none" data-aos="zoom-in">
<div class="relative p-8 text-center">
<button id="closeNewsletter" class="absolute top-4 right-4 text-gray-500 hover:text-gray-700 transition-colors">
<i class="fas fa-times text-lg"></i>
</button>
<div class="mx-auto mb-6 w-fit">
<div class="w-20 h-20 bg-gradient-to-r from-red-600 to-orange-500 rounded-2xl flex items-center justify-center mx-auto mb-6
transform hover:rotate-12 transition-transform duration-300">
<i class="fas fa-envelope-open-text text-white text-3xl"></i>
</div>
</div>
<h3 class="text-2xl font-bold mb-4">Join Our Elite Circle</h3>
<p class="text-gray-600 mb-6 max-w-xs mx-auto">Get exclusive training content and special offers</p>
<form class="space-y-4">
<input type="email" placeholder="Enter your email"
class="w-full px-4 py-3 border rounded-xl focus:outline-none focus:ring-2 focus:ring-red-500
placeholder-gray-400 transition-all">
<button class="w-full bg-gradient-to-r from-red-600 to-orange-500 text-white py-3 rounded-xl font-bold
hover:opacity-90 hover:shadow-lg transition-all">
Subscribe Now
</button>
</form>
<p class="text-xs text-gray-500 mt-4 max-w-xs mx-auto">We respect your privacy. Unsubscribe anytime.</p>
</div>
</div>
</div>
<script>
// Chat Modal Toggle
const chatButton = document.getElementById('chatButton');
const chatModal = document.getElementById('chatModal');
const closeChat = document.getElementById('closeChat');
chatButton.addEventListener('click', () => {
chatModal.classList.remove('hidden');
});
closeChat.addEventListener('click', () => {
chatModal.classList.add('hidden');
});
// Scroll to Top Button
const scrollTop = document.getElementById('scrollTop');
window.addEventListener('scroll', () => {
scrollTop.style.display = window.scrollY > 500 ? 'flex' : 'none';
});
scrollTop.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
// Newsletter Popup (Show after 5 seconds)
const newsletterPopup = document.getElementById('newsletterPopup');
const closeNewsletter = document.getElementById('closeNewsletter');
setTimeout(() => {
newsletterPopup.classList.remove('hidden');
}, 5000);
closeNewsletter.addEventListener('click', () => {
newsletterPopup.classList.add('hidden');
});
// Close modals when clicking outside
window.onclick = function(event) {
if (event.target == chatModal) {