-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
983 lines (961 loc) · 48.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome To Your Fitness Coach</title>
<meta name="description" content="Discover the future of Fitness with our AI-driven solutions. Elevate your Fitness experience today!" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- fav icon -->
<link rel="icon" href="assets/images/fav-icon/fav-icon.png">
<!-- bootstarp -->
<link rel="stylesheet" href="css/vendors/bootstrap.min.css">
<!-- animate.css file -->
<link rel="stylesheet" href="css/vendors/animate.css">
<!-- Swiper -->
<link rel="stylesheet" href="css/vendors/swiper-bundle.min.css">
<!-- flaticon -->
<link rel="stylesheet" href="css/vendors/flaticon/flaticon.css">
<!-- fontAwesome -->
<link rel="stylesheet" href="css/vendors/all.min.css">
<!-- bootstrap icons -->
<link rel="stylesheet" href="css/vendors/bootstrap-icons-1.9.1/bootstrap-icons.css">
<!-- Fancybox -->
<link rel="stylesheet" href="css/vendors/jquery.fancybox.min.css">
<!-- fonts site preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- fonts site preconnect -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Font Family -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap">
<!-- main-LTR -->
<link rel="stylesheet" href="css/main-LTR.css">
<link rel="stylesheet" href="css/home.css">
<!-- CLarity Analytics Tracker -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "is4ozy3dur");
</script>
</head>
<body class=" dark-theme landing-page-demo">
<!--Start Page Header-->
<header class=" header-basic" id="page-header">
<div class="container">
<!--Start navbar-->
<nav class="menu-navbar" id="main-nav">
<div class="header-logo"><a class="logo-link" href="#"><img class="logo-img light-logo" loading="lazy" src="assets/images/logo/football-logo.png" alt="logo"/><img class="logo-img dark-logo" loading="lazy" src="assets/images/logo/football-logo.png" alt="logo"/></a></div>
<div class="links menu-wrapper ">
<ul class="list-js links-list">
<li class="nav-item menu-item has-sub-menu"><a class="nav-link menu-link active" href="#page-hero">home</a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#services">services </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#about">about </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#pricing">pricing </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#testimonials">testimonials </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#faq">FAQ </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#contact-us">contact us </a></li>
</ul>
</div>
<div class="controls-box">
<!--Menu Toggler button-->
<div class="control menu-toggler"><span></span><span></span><span></span></div>
<!--Dark/Light mode button-->
<div class="mode-switcher ">
<div class="switch-inner go-light " title="Switch To Light Mode "><i class="bi bi-sun icon "></i></div>
<div class="switch-inner go-dark" title="Switch To Dark Mode "><i class="bi bi-moon icon "></i></div>
</div>
<!--mini shoping cart-->
</div>
</nav>
</div>
<!--End navbar-->
</header>
<!--End Page Header-->
<!-- Start Page hero-->
<section class="page-hero d-flex align-items-center" id="page-hero">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/pattern-bg-1.jpg" data-bg-opacity=".2"></div>
<div class="particles-js dots" id="particles-js"></div>
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-lg-6 ">
<!--Start of .hero-text-area-->
<div class="hero-text-area ">
<div class="row">
<div class="col-12 ">
<div class="pre-title ">Welcome To Your Football training</div>
<h1 class="hero-title ">Unleash the power of AI + <span class="featured-text">Football Training
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path>
</svg> </span><span class="design-element rounded-shape stripes"></span></h1>
</div>
<div class="col-12 ">
<div class="hero-social-icons mb-3 ">
<div class="sc-wrapper dir-row sc-flat">
<p>Tell your friends</p>
<ul class="sc-list">
<li class="sc-item " title="Facebook"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-facebook-f sc-icon"></i></a></li>
<li class="sc-item " title="youtube"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-youtube sc-icon"></i></a></li>
<li class="sc-item " title="instagram"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-instagram sc-icon"></i></a></li>
<li class="sc-item " title="twitter"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-twitter sc-icon"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-12 ">
<div class="cta-links-area "><a class=" btn-outline cta-link cta-link-primary " href="#0">Join Us</a>
<div class="play-btn-row-dir ">
<!-- <a class="video-link" href="#" role="button" title="play" data-fancybox="data-fancybox"> -->
<div class="play-video-btn">
<div class="play-btn"> <i class="fas fa-play icon"></i></div>
</div></a></div>
</div>
</div>
</div>
</div>
</div>
<!--start of image-area -->
<div class="col-12 mx-md-auto col-lg-6 text-center " data-tilt>
<div class="hero-image-area mb-5 mb-lg-0">
<div class="hero-img-wraper"><img class="img-fluid " src="assets/images/hero/tempModel.png" alt="" draggable="false"></div>
</div>
<br>
<div class="col-10">
<h4 class="clr-main" style="color: rgb(255, 255, 255);">
Ask me anything
</h4>
</div>
<div class="askContainer">
<div class="askflex-container">
<input type="text" id="question" placeholder="Enter your question..." />
<button id="ask">
Ask
</button>
<div id="mic-container">
<img id="mic" src="assets/images/mic/mic.svg" alt="">
<img id="muteMic" src="assets/images/mic/muteMic.svg" alt="">
</div>
</div>
<div id="loading-image"></div>
<div id="response"></div>
</div>
</div>
</div>
</div>
</section>
<!--End of .hero-text-area-->
<!-- End Page hero-->
<!-- Start services Section-->
<section class="services services-boxed mega-section " id="services">
<div class="container">
<div class="sec-heading ">
<div class="content-area"><!-- <span class=" pre-title wow fadeInUp " data-wow-delay=".2s">services</span> -->
<h2 class="title wow fadeInUp" data-wow-delay=".2s">services we offer</h2>
<p class="subtitle wow fadeInUp " data-wow-delay=".4s">
Unleash Your Ultimate Potential with AI-Powered Football Training: Personalized Workouts, Virtual Coaching, and Community Support All in One Place!
</p>
</div>
<div class=" cta-area wow fadeInUp" data-wow-delay=".6s"><a class="cta-btn btn-solid ">see all services <i class="bi bi-arrow-right icon "></i></a></div>
</div>
<div class="row gx-4 gy-4 services-row ">
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start First service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".1s">
<div class="service-icon"><i class="flaticon-web-development font-icon"></i></div><span class="service-num hollow-text">1 </span>
<div class="service-content">
<h3 class="service-title">Automated Technique Assessment</h3>
<p class="service-text">
Analyze dribbling, passing, and shooting techniques from user-uploaded videos. Provide detailed feedback on body posture, alignment, foot placement, ball control, etc.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End First service box -->
</div>
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start Second service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".2s">
<div class="service-icon"><i class="flaticon-nanotechnology font-icon"></i></div><span class="service-num hollow-text">2 </span>
<div class="service-content">
<h3 class="service-title">Performance Metrics</h3>
<p class="service-text">
Track and measure key metrics like dribbling speed, passing accuracy, shot power, and ball possession. Present data in easy-to-understand graphs and charts to monitor progress over time.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End Second service box-->
</div>
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start Third service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".3s">
<div class="service-icon"><i class="flaticon-web-domain font-icon"></i></div><span class="service-num hollow-text">3 </span>
<div class="service-content">
<h3 class="service-title">Personalized Tips & Drills</h3>
<p class="service-text">
Offer customized training plans and drills based on individual strengths and weaknesses identified by the AI.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End Third service box-->
</div>
<!-- Fourth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".4s">
<div class="service-icon"><i class="flaticon-profile font-icon"></i></div>
<span class="service-num hollow-text">4</span>
<div class="service-content">
<h3 class="service-title">Interactive Simulations</h3>
<p class="service-text">
Create realistic virtual environments where users can practice dribbling against different defenders and speeds, or shooting in various match situations.
</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Fourth service box-->
<!-- Fifth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".5s">
<div class="service-icon"><i class="flaticon-search font-icon"></i></div>
<span class="service-num hollow-text">5</span>
<div class="service-content">
<h3 class="service-title">Augmented Reality Coaching</h3>
<p class="service-text">Use AR to overlay guidance and feedback in real-time during practice sessions, helping users visualize correct techniques and make adjustments instantly.</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Fifth service box-->
<!-- Sixth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".6s">
<div class="service-icon"><i class="flaticon-strategy font-icon"></i></div>
<span class="service-num hollow-text">6</span>
<div class="service-content">
<h3 class="service-title">Match Strategy & Analysis</h3>
<p class="service-text">
Analyze opponent data and provide insights into their strengths, weaknesses, and playing styles. Offer data-driven suggestions for match strategy and tactics.
</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Sixth service box-->
</div>
</div>
</div>
</section>
<!-- End services Section-->
<!-- Start about Section-->
<section class="about mega-section" id="about">
<div class="container">
<!-- Start first about div-->
<div class="content-block ">
<div class="row">
<div class="col-12 col-lg-6 d-flex align-items-center order-1 order-lg-0 about-col pad-end wow fadeInUp " data-wow-delay="0.6s">
<div class="text-area ">
<div class="sec-heading light-title ">
<div class="content-area"><span class=" pre-title wow fadeInUp " data-wow-delay=".2s">about Us</span>
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">
<span class='hollow-text'>trusted</span> by worldwide clients since<span class='featured-text'> EVER.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path>
</svg>
</span>
</h2>
</div>
</div>
<p class="about-text">
Welcome to Your AI Football Coach, the Future of Football Training! Our cutting-edge AI-powered app is designed to revolutionize how you improve your game, bringing the expertise of a world-class coach right to your fingertips. Imagine having a personalized training program available 24/7, tailored to your specific needs and goals. Our AI Football Coach app analyzes your performance, identifies your strengths and weaknesses, and creates a customized plan to help you reach your full potential.
</p>
<p class="about-text">
But it doesn't stop there! As you practice, the AI analyzes your technique in real-time, providing instant feedback on your dribbling, passing, and shooting. This ensures your movements are precise and effective, minimizing the risk of injury and maximizing your performance. Say goodbye to generic training routines and hello to a dynamic and responsive coaching experience. With our AI Football Coach app, you're not just practicing; you're engaging with an intelligent system that evolves with you, adapting your training plan based on your progress and performance. Elevate your football game and unlock your full potential with the power of AI guiding you every step of the way. Become the footballer you've always dreamed of being with the AI Football Coach!
</p>
<div class="cta-area"><a class=" btn-solid reveal-start" href="#0">Get in touch</a>
<!-- <div class="signature ">
<div class="signature-img"></div>
<div class="signature-name">CEO & Founder </div>
</div> -->
</div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex align-items-center order-0 order-lg-1 about-col wow fadeInUp" data-wow-delay="0.2s" style="padding-left: 12%; transform: scale(1.2);">
<div class="img-area" data-tilt>
<div class="image"><img class="about-img img-fluid " loading="lazy" src="assets/images/about/football-player.png" alt="Our vision"></div>
</div>
</div>
</div>
</div>
<!--End first about div-->
<section id="instructor" class="instructor">
<div class="container">
<div class="row">
<div class="col-md-12 d-flex align-items-center wow fadeInUp " data-wow-delay="0.6s">
<div class="text-area ">
<div class="sec-heading light-title ">
<h2 class="title wow fadeInUp text-center" data-wow-delay=".4s">Meet our Team</h2>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center">
<div class="instruction-inner">
<img src="assets/images/our-team/player1.png" style="transform: scale(1.3);" class="img-fluid red-left" alt="instructor"/>
</div>
<div class="instructor-name" style="margin-top: 15%;">
<h3 class="heading-font">John Brooks</h3>
<p>Fitness Instructor</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="instruction-inner">
<img src="assets/images/our-team/player2.png" style="transform: scale(1.3);" class="img-fluid" alt="instructor"/>
</div>
<div class="inistructor-name" style="margin-top: 15%;">
<h3 class="heading-font">James West</h3>
<p>Fitness Instructor</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="instruction-inner">
<img src="assets/images/our-team/player3.png" style="transform: scale(1.4);" class="img-fluid red-right" alt="instructor"/>
</div>
<div class="instructor-name" style="margin-top: 15%;">
<h3 class="heading-font">Jack Williams</h3>
<p>Fitness Instructor</p>
</div>
</div>
</div>
</div>
</section>
<!--=======================
Our Instructor Part HTML End
========================-->
<!-- Start first about div-->
<div class="container">
<div class="content-block ">
<div class="row">
<div class="col-12 col-lg-6 d-flex align-items-center about-col wow fadeInUp" data-wow-delay="0.2s">
<div class="img-area ">
<div class="image " data-tilt><img class="about-img img-fluid " loading="lazy" src="assets/images/about/1.png" alt="about"></div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex align-items-center about-col pad-start wow fadeInUp " data-wow-delay="0.6s">
<div class="text-area ">
<div class="sec-heading light-title ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">
Why our <span class='hollow-text'> customers</span> choose <span class='featured-text'>working
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path></svg>
</span> with us
</h2>
</div>
</div>
<div class="info-items-list">
<div class="row ">
<div class="col-12 ">
<div class="info-item"><span class="info-number ">01.</span>
<div class="info-content">
<h5 class="info-title">Personalized AI Coaching</h5>
<p class="info-text">
No more cookie-cutter drills! Our AI analyzes YOUR technique, creating a custom plan for YOUR strengths and weaknesses. It's like having a personal coach, but available 24/7.
</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">02.</span>
<div class="info-content">
<h5 class="info-title">Train Anytime, Anywhere</h5>
<p class="info-text">
No need to adjust your schedule for rigid coaching times. Our app fits YOUR life, providing guidance whenever and wherever you practice.
</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">03.</span>
<div class="info-content">
<h5 class="info-title">Stay Ahead of the Game</h5>
<p class="info-text">
Gain strategic insights into your opponents. Our AI helps you analyze their strengths and weaknesses, giving you a tactical advantage.
</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">04.</span>
<div class="info-content">
<h5 class="info-title">Maximize Your Potential</h5>
<p class="info-text">
Unlock the cricketer you've always dreamed of being. Our AI identifies areas for improvement you might miss, giving you a competitive edge.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End first about div-->
</div>
</section>
<!-- End about Section-->
<!-- Start stats Section-->
<section class="stats js-stats-counter mega-section">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/pattern-bg-3.jpg" data-bg-opacity=".2"></div>
<div class="container">
<div class="stats-inner">
<div class="row ">
<!--Info One-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-project-management stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="3" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">Testimonials</span>
</div>
</div>
<!--Info Two-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-content-management stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="6" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">Services</span>
</div>
</div>
<!--Info Three-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-user stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="20" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">visitors</span>
</div>
</div>
<!--Info Four-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-aim stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="1" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">years of experience</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End stats Section-->
<!-- Start our-clients Section-->
<section class="our-clients mega-section wow fadeInUp" id="our-clients" data-wow-delay="0.2s">
<div class="container">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">trusted by over 500 clients around the world</h2>
</div>
</div>
<div class=" clients-logos d-flex align-items-center justify-content-around flex-wrap">
<!--Swiper-->
<div class="swiper-container">
<div class="swiper-wrapper clients-logo-wrapper wow fadeIn " data-wow-delay=".02s">
<!-- every client logo is located inside div with clss name "swiper-slide ".
if you want to add more logos please keep the strcture of the swiper-slide as showen below
-->
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/mosler.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/bard.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/lego.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/info.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/5-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/6-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/7-white.png" alt=" "></a></div>
</div>
<!-- <div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/1-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/2-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/3-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/4-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/5-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/6-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/7-white.png" alt=" "></a></div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End our-clients Section-->
<!-- Start pricing Section-->
<section class="pricing mega-section " id="pricing">
<div class="container">
<div class="sec-heading ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".2s"><span class='hollow-text'>affordable</span> pricing plans</h2>
<p class="subtitle wow fadeInUp " data-wow-delay=".4s">The best deals in the market:</p>
</div>
<div class=" cta-area wow fadeInUp" data-wow-delay=".6s"><a class="cta-btn btn-solid " href="#0">see all plans<i class="bi bi-arrow-right icon "></i></a></div>
</div>
<div class="row">
<!--First Plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan wow fadeInUp " data-wow-delay=".1s ">
<div class="plan-head"><i class="flaticon-nft-1 plan-icon"></i>
<h4 class="plane-name">AI Training Plan</h4>
<div class="plan-price">
<h3 class="price">0<sup class="currency-symbol">$</sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Unlock a tailored football training journey with AI-generated training videos to achieve your goals. </span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
<!--Second-plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan wow fadeInUp " data-wow-delay=".3s ">
<div class="plan-head"><i class="flaticon-virtual-reality plan-icon"></i>
<h4 class="plane-name">AI Football Training Bundle</h4>
<div class="plan-price">
<h3 class="price">25<sup class="currency-symbol">$</sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Receive AI-generated workout routines tailored to your specific needs and goals, whether you're a batsman, bowler, or all-rounder.</span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
<!--Third-plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan featured wow fadeInUp " data-wow-delay=".5s ">
<div class="plan-head"><i class="flaticon-box plan-icon"></i>
<h4 class="plane-name">AI Premium Package</h4>
<div class="plan-price">
<h3 class="price">Custom<sup class="currency-symbol"></sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Experience a revolutionary approach to football training with personalized plans, expert guidance, and cutting-edge AI.</span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
</div>
</div>
</section>
<!-- End pricing Section-->
<!-- Start testimonials Section-->
<section class="testimonials testimonials-1-col has-dark-bg mega-section " id="testimonials">
<div class="overlay-photo-image-bg parallax " data-bg-img="assets/images/sections-bg-images/1.jpg" data-bg-opacity=".25"> </div>
<div class="container">
<div class="sec-heading centered ">
<div class="content-area"><span class=" pre-title wow fadeInUp " data-wow-delay=".2s">testimonials</span>
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">customers <span class='hollow-text'>testimonials</span></h2>
</div>
</div>
<div class="row d-flex align-items-center">
<div class="col-12 col-md-10 mx-auto">
<div class="swiper-container wow fadeInUp " data-wow-delay="0.2s">
<div class="swiper-wrapper">
<!--First Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer1.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
Having online coaches to complement the AI-generated football training and meal plans is a game-changer! Their expert guidance and motivation make me feel supported every step of the way, and I'm noticing significant improvements in my skills. This app truly offers a comprehensive training experience.
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Dainel Kristan</p>
</div>
</div>
</div>
</div>
</div>
<!--Second Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer2.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
I'm amazed by how well this app caters to my dietary needs! The AI-generated meal plans perfectly align with my football training program. It's like having a personal nutritionist and coach rolled into one. I'm experiencing significant improvements in my performance and fitness, and I couldn't be more thrilled with the results!
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Kathy Henry</p>
</div>
</div>
</div>
</div>
</div>
<!--third Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer3.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
I've never been so excited to train! This app's AI-generated football workouts are a game-changer. Each session is dynamic, challenging, and adapts as I improve. It's like having a personal coach in my pocket, motivating me to become a better football player!
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Marshal Hofman</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--navigation buttons-->
<div class="swiper-button-prev">
<div class="left-arrow"><i class="bi bi-chevron-left icon "></i>
</div>
</div>
<div class="swiper-button-next">
<div class="right-arrow"><i class="bi bi-chevron-right icon "></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End testimonials Section-->
<!-- Start faq Section-->
<section class="faq mega-section " id="faq">
<div class="shape-top-left"></div>
<div class="shape-bottom-right"></div>
<div class="pattern-top-end-dir"></div>
<div class="pattern-bottom-start-dir"></div>
<div class="container">
<div class="row">
<div class="col-12 col-lg-5 align-self-center">
<div class="faq-img start-dir-img-frame wow fadeIn" data-wow-delay="0.2s"><img class="img-fluid " loading="lazy" src="assets/images/faq/faq-illustration.png" alt=""></div>
</div>
<div class="col-12 col-lg-7 ">
<div class="sec-heading ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".2s"><span class='hollow-text'>frequently </span> asked questions </h2>
</div>
</div>
<!--Start Accordion List For FAQ-->
<div class="faq-accordion " id="accordion">
<div class="card mb-2">
<div class="card-header " id="heading-1">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed" data-bs-toggle="collapse"
data-bs-target="#collapse-1" aria-expanded="true" aria-controls="collapse-1">How does the AI-generated Football Training feature work?</button>
</h5>
</div>
<div class="collapse " id="collapse-1" aria-labelledby="collapse-1" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">Our AI-powered football training program designs personalized workout routines based on your football goals, skill level, and preferences. It's like having a dedicated football coach with you at all times, tailoring each session to maximize your performance on the pitch.</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-2">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed "
data-bs-toggle="collapse" data-bs-target="#collapse-2" aria-expanded="true" aria-controls="collapse-2">How frequently will the AI adjust my football training plan based on my progress?</button>
</h5>
</div>
<div class="collapse " id="collapse-2" aria-labelledby="collapse-2" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">
The AI in our app analyzes your football training progress in real-time, adjusting your workout plan to ensure you're always challenged and improving. This dynamic approach keeps your training optimized for continuous growth and helps you reach your football goals faster.
</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-3">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed " data-bs-toggle="collapse"
data-bs-target="#collapse-3" aria-expanded="true" aria-controls="collapse-3">Is the app suitable for beginners or aimed at experienced Football Training enthusiasts?</button>
</h5>
</div>
<div class="collapse " id="collapse-3" aria-labelledby="collapse-3" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">
Our football training app is designed for everyone, from beginners to elite players. Whether you're starting your journey or refining your skills for competition, you'll find AI-powered workouts and personalized plans tailored to your level. With interactive drills and real-time feedback, our app keeps you motivated and helps you progress towards your goals.
</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-4">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed " data-bs-toggle="collapse"
data-bs-target="#collapse-4" aria-expanded="true" aria-controls="collapse-4">
How does the app ensure my privacy and data security?
</button>
</h5>
</div>
<div class="collapse " id="collapse-4" aria-labelledby="collapse-4" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">
We prioritize your privacy and data security. Our app adheres to strict data protection measures, and your personal information is encrypted and handled with the utmost care.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End faq Section-->
<!-- Start Form Section-->
<section class="contact-us mega-section pb-0" id="contact-us">
<div class="container">
<section class="contact-us-form-section mega-section ">
<div class="row">
<div class="col-12 ">
<div class="contact-form-panel">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">Have any questions? Let's answer them</h2>
</div>
</div>
<div class="contact-form-inputs wow fadeInUp" data-wow-delay=".6s">
<div class="custom-form-area input-boxed">
<!--Form To have user messages-->
<form class="main-form" id="contact-us-form" action="php/send-mail.php" method="post"><span class="done-msg"></span>
<div class="row ">
<div class="col-12 col-lg-6">
<div class=" input-wrapper">
<input class="text-input" id="user-name" name="UserName" type="text"/>
<label class="input-label" for="user-name"> Name <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 col-lg-6">
<div class=" input-wrapper">
<input class="text-input" id="user-email" name="UserEmail" type="email"/>
<label class="input-label" for="user-email"> E-mail <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 ">
<div class=" input-wrapper">
<input class="text-input" id="msg-subject" name="subject" type="text"/>
<label class="input-label" for="msg-subject"> Subject <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 ">
<div class=" input-wrapper">
<textarea class=" text-input" id="msg-text" name="message"></textarea>
<label class="input-label" for="msg-text"> your message <span class="req">*</span></label><span class="b-border"></span><i></i><span class="error-msg"></span>
</div>
</div>
<div class="col-12 submit-wrapper">
<button class=" btn-solid" id="submit-btn" type="submit" name="UserSubmit">Send your message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="locations-section mega-section ">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">Our Contacts</h2>
</div>
</div>
<div class=" contact-info-panel ">
<div class="info-section ">
<div class="row">
<div class="col-12 col-lg-4">
<div class="info-panel wow fadeInUp" data-wow-delay=".4s ">
<h4 class="location-title">Let's have a meeting:</h4>
<div class="line-on-side "> </div>
<div class="location-card "><i class="flaticon-email icon"></i>
<div class="card-content">
<h6 class="content-title">email:</h6><a class="email link" href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="location-card "><i class="flaticon-phone-call icon"></i>
<div class="card-content">
<h6 class="content-title">phone:</h6><a class="tel link" href="tel:0123456789">+29876543210</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</section>
<!-- End blog Section-->
<!-- Start page-footer Section-->
<footer class="page-footer dark-color-footer" id="page-footer">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/footer-bg-1.jpg" data-bg-opacity=".25"></div>
<div class="container">
<div class="row footer-cols">
<div class="col-12 col-md-8 col-lg-4 footer-col ">
<div class="footer-col-content-wrapper">
<p class="footer-text-about-us">
Embrace the future of football with our AI-powered app, your ultimate training partner. Enjoy customized plans, personalized coaching, and expert analysis to elevate your game. Unlock your full potential and achieve your footballing best, anytime and anywhere.
</p>
</div>
<div class="form-area ">
<div class="mailchimp-form ">
<form class="one-field-form" method="post" action="#0">
<div class="field-group ">
<label class="email-label" for="email-input"> Subscribe to our newsletter</label>
<input class="email-input " type="email" value="" name="EMAIL" id="email-input" placeholder="Email Address" autocomplete="off"/>
<div class="cta-area">
<input class="btn-solid subscribe-btn" type="submit" value="Subscribe" name="subscribe"/>
</div>
</div><span class="email-notice">*we will not share your personal info</span>
</form>
</div>
</div>
</div>
<div class="col-6 col-lg-2 footer-col ">
<h2 class=" footer-col-title ">useful links</h2>
<div class="footer-col-content-wrapper">
<ul class="footer-menu ">
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">Google</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">Dribbble</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">linkedIn</a>
</li>
</ul>
</div>
</div>
<div class="col-6 col-lg-2 footer-col ">
<h2 class=" footer-col-title ">Resources</h2>
<div class="footer-col-content-wrapper">
<ul class="footer-menu">
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">support</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">dashboard</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">drivers</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">projects</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="https://play2helpworld-com.github.io/AIFitness/blog/">blog</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-4 footer-col ">
<h2 class=" footer-col-title">contact information</h2>
<div class="footer-col-content-wrapper">
<div class="contact-info-card"><i class="bi bi-envelope icon"></i><a class="text-lowercase info" href="mailto:[email protected]">[email protected]</a></div>
<div class="contact-info-card"><i class="bi bi-geo-alt icon"></i><span class="info">AI2BC Organization</span></div>
<div class="contact-info-card"><i class="bi bi-phone icon"></i><a class="info" href="tel:+20123456789">+20123456789 </a></div>
<div class="contact-info-card">
<div class="social-icons">
<div class="sc-wrapper dir-row sc-size-32">
<ul class="sc-list">
<li class="sc-item " title="Facebook"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-facebook-f sc-icon"></i></a></li>
<li class="sc-item " title="youtube"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-youtube sc-icon"></i></a></li>
<li class="sc-item " title="instagram"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-instagram sc-icon"></i></a></li>
<li class="sc-item " title="twitter"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-twitter sc-icon"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="copyrights ">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 d-flex justify-content-start">
<p class="credits">
© 2023
All rights reserved to
<a class="link" href="#0">AI2BC</a>
</p>
</div>
<div class="col-12 col-md-6 d-flex justify-content-end">
<div class="terms-links"><a href="#0">Terms of Use </a>
| <a href="#0">Privacy Policy</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End page-footer Section-->
<!-- Start loading-screen Component-->
<div class="loading-screen" id="loading-screen"><span class="bar top-bar"></span><span class="bar down-bar"></span><span class="progress-line"></span><span class="loading-counter"> </span></div>
<!-- End loading-screen Component-->
<!-- Start back-to-top Component-->
<div class="back-to-top" id="back-to-top"><i class="bi bi-arrow-up icon "></i>
</div>
<!-- End back-to-top Component-->
<!-- JQuery -->
<script src="js/vendors/jquery-3.6.1.min.js"></script>
<!-- appear -->
<script src="js/vendors/appear.min.js"></script>
<!-- bootstrap -->
<script src="js/vendors/bootstrap.bundle.min.js"></script>
<!-- countTo -->
<script src="js/vendors/jquery.countTo.js"></script>
<!-- wow -->
<script src="js/vendors/wow.min.js"></script>
<!-- swiper -->
<script src="js/vendors/swiper-bundle.min.js"></script>
<!-- particles -->
<script src="js/vendors/particles.min.js"></script>
<!-- Vanilla-tilt -->
<script src="js/vendors/vanilla-tilt.min.js"></script>
<!-- isotope -->
<script src="js/vendors/isotope-min.js"></script>
<!-- fancybox -->
<script src="js/vendors/jquery.fancybox.min.js"></script>
<!-- main -->
<script src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="js/askMe.js"></script>
</body>
</html>