-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1072 lines (1027 loc) · 42.3 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
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hockey's</title>
<!-- DaisyUI+Tailwind CSS cdn -->
<link
href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: "#da373d",
customRed: "#FF4240",
customGray: "rgba(19, 19, 24, 0.6)",
customGreen: "rgba(188, 237, 109, 0.1)",
customBlue: "rgba(19, 19, 24, 0.03)",
},
},
},
};
</script>
<!-- Fonts cdn -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome cdn -->
<script
src="https://kit.fontawesome.com/651adfbaf7.js"
crossorigin="anonymous"
></script>
<style>
.font-manrope {
font-family: "Manrope", sans-serif;
}
.junior-program {
background-image: linear-gradient(
45deg,
rgba(19, 19, 24, 0.5),
rgba(19, 19, 24, 0.5)
),
url(./images/2.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border-radius: 1rem;
}
.senior-program {
background-image: linear-gradient(
45deg,
rgba(19, 19, 24, 0.5),
rgba(19, 19, 24, 0.5)
),
url(./images/3.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border-radius: 1rem;
}
.prof-program {
background-image: linear-gradient(
45deg,
rgba(19, 19, 24, 0.5),
rgba(19, 19, 24, 0.5)
),
url(./images/4.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border-radius: 1rem;
}
</style>
</head>
<body class="font-manrope">
<header class="container mx-auto mt-[10px] lg:mt-[50px]">
<!-- Navbar -->
<nav>
<div class="navbar bg-base-100">
<div class="navbar-start">
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 p-2 shadow"
>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Home</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>About</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Pages</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Blog</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Contact</a>
</li>
</ul>
</div>
<a class="btn btn-ghost text-4xl font-extrabold"
>Hockey<span class="inline-block -mx-2 text-customRed">'</span
>s</a
>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1 text-base font-normal">
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Home</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>About</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Pages</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Blog</a>
</li>
<li class="hover:text-customRed duration-300 ease-in-out">
<a>Contact</a>
</li>
</ul>
</div>
<div class="navbar-end">
<button class="btn btn-ghost btn-circle">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"
/>
</svg>
</button>
<a class="btn text-white bg-customRed">Get Ticket</a>
</div>
</div>
</nav>
<!-- Banner section -->
<div class="relative mt-12 px-6 lg:px-0">
<!-- carousel -->
<div class="carousel w-full rounded-2xl">
<div id="slide1" class="carousel-item relative w-full">
<img src="./images/1.png" class="w-full" />
<div
class="absolute bottom-4 lg:bottom-8 left-[36%] lg:left-8 flex space-x-4 justify-between"
>
<a href="#slide4" class="btn btn-circle bg-slate-900 text-white"
>❮</a
>
<a href="#slide2" class="btn btn-circle bg-slate-900 text-white"
>❯</a
>
</div>
</div>
<div id="slide2" class="carousel-item relative w-full">
<img src="./images/1.png" class="w-full" />
<div
class="absolute bottom-4 lg:bottom-8 left-[36%] lg:left-8 flex space-x-4 justify-between"
>
<a href="#slide1" class="btn btn-circle bg-slate-900 text-white"
>❮</a
>
<a href="#slide3" class="btn btn-circle bg-slate-900 text-white"
>❯</a
>
</div>
</div>
<div id="slide3" class="carousel-item relative w-full">
<img src="./images/1.png" class="w-full" />
<div
class="absolute bottom-4 lg:bottom-8 left-[36%] lg:left-8 flex space-x-4 justify-between"
>
<a href="#slide2" class="btn btn-circle bg-slate-900 text-white"
>❮</a
>
<a href="#slide4" class="btn btn-circle bg-slate-900 text-white"
>❯</a
>
</div>
</div>
<div id="slide4" class="carousel-item relative w-full">
<img src="./images/1.png" class="w-full" />
<div
class="absolute bottom-4 lg:bottom-8 left-[36%] lg:left-8 flex space-x-4 justify-between"
>
<a href="#slide3" class="btn btn-circle bg-slate-900 text-white"
>❮</a
>
<a href="#slide1" class="btn btn-circle bg-slate-900 text-white"
>❯</a
>
</div>
</div>
</div>
<!-- text container -->
<div
class="lg:absolute bottom-8 right-8 lg:w-[566px] bg-stone-900 p-8 text-white rounded-2xl"
>
<h3 class="text-2xl font-extrabold">
Meet all the heroes from the field
</h3>
<p class="text-base font-medium leading-[26px] mt-4">
Discover the stories of our players, each one bringing a unique
blend of skill, determination, and passion to the game. From rookies
to veterans, get to know the faces behind the helmets.
</p>
</div>
</div>
</header>
<main class="container mx-auto px-5 lg:px-0">
<!-- Stats Section -->
<section class="mt-24">
<!-- title -->
<div class="text-center py-8 border-dashed border-y-2">
<h3 class="text-4xl font-extrabold">Professional Hockeys Club</h3>
<p
class="text-base font-medium text-customGray leading-[26px] mt-6 w-10/12 md:w-1/2 inline-flex"
>
We take pride in our state-of-the-art facilities and top-tier
coaching staff, dedicated to developing the next generation of
hockey stars.
</p>
</div>
<!-- stats container -->
<div class="mt-12 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- stats 1 -->
<div class="flex flex-col items-center justify-center text-center">
<div class="relative">
<div
class="radial-progress text-primary text-customRed z-10"
style="--value: 87"
role="progressbar"
>
<span class="text-black font-extrabold">87%</span>
</div>
<div
class="radial-progress absolute top-0 left-0 text-slate-200 z-0"
style="--value: 100"
role="progressbar"
>
<span class="text-black font-extrabold"></span>
</div>
</div>
<h6 class="mt-6 mb-4 text-xl font-semibold">Prayer Facility</h6>
<p class="text-base font-normal leading-[26px]">
We provide a dedicated prayer space for our players and staff,
ensuring that spiritual needs are met during training and events.
</p>
</div>
<!-- stats 2 -->
<div class="flex flex-col items-center justify-center text-center">
<div class="relative">
<div
class="radial-progress text-green-400 text-customRed z-10"
style="--value: 95"
role="progressbar"
>
<span class="text-black font-extrabold">95%</span>
</div>
<div
class="radial-progress text-primary absolute top-0 left-0 text-slate-200 z-0"
style="--value: 100"
role="progressbar"
>
<span class="text-black font-extrabold"></span>
</div>
</div>
<h6 class="mt-6 mb-4 text-xl font-semibold">Experienced Coach</h6>
<p class="text-base font-normal leading-[26px]">
Our coaching team brings years of professional experience,
ensuring that every player reaches their full potential.
</p>
</div>
<!-- stats 3 -->
<div class="flex flex-col items-center justify-center text-center">
<div class="relative">
<div
class="radial-progress text-yellow-400 text-customRed z-10"
style="--value: 90"
role="progressbar"
>
<span class="text-black font-extrabold">90%</span>
</div>
<div
class="radial-progress text-primary absolute top-0 left-0 text-slate-200 z-0"
style="--value: 100"
role="progressbar"
>
<span class="text-black font-extrabold"></span>
</div>
</div>
<h6 class="mt-6 mb-4 text-xl font-semibold">Senior Player</h6>
<p class="text-base font-normal leading-[26px]">
Our senior players lead by example, both on and off the ice,
embodying the spirit of the game.
</p>
</div>
<!-- stats 4 -->
<div class="flex flex-col items-center justify-center text-center">
<div class="relative">
<div
class="radial-progress text-blue-400 z-10"
style="--value: 80"
role="progressbar"
>
<span class="text-black font-extrabold">80%</span>
</div>
<div
class="radial-progress text-primary absolute top-0 left-0 text-slate-200 z-0"
style="--value: 100"
role="progressbar"
>
<span class="text-black font-extrabold"></span>
</div>
</div>
<h6 class="mt-6 mb-4 text-xl font-semibold">Training Ground</h6>
<p class="text-base font-normal leading-[26px]">
We provide the best training facilities, designed to help players
hone their skills and excel.
</p>
</div>
</div>
</section>
<!-- Program Section -->
<section class="mt-24">
<!-- title -->
<div class="text-center py-8 border-dashed border-y-2">
<h3 class="text-4xl font-extrabold">Program Sections</h3>
<p
class="text-base font-medium text-customGray leading-[26px] mt-6 w-10/12 md:w-1/2 inline-flex"
>
Explore our diverse hockey programs for every skill level. From
beginners to advanced players, our programs are designed to enhance
your skills, fuel your passion, and help you reach your full
potential.
</p>
</div>
<!-- Cards Container -->
<div class="mt-12">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- card 1 -->
<div
class="w-full junior-program flex flex-col justify-end p-10 text-white hover:scale-[0.99] duration-700 ease-in-out"
>
<div class="lg:pt-24">
<h2 class="text-[28px] font-extrabold">Junior Program</h2>
<p class="text-base font-medium leading-[26px] mt-4 mb-6">
Designed for young athletes, our Junior Program focuses on
foundational skills, teamwork, and fostering a love for the
game. It's the perfect starting point for future hockey stars.
</p>
<button
class="btn bg-customRed border-none w-2/3 lg:w-1/3 text-white"
>
Register Now!
</button>
</div>
</div>
<!-- card 2 -->
<div
class="w-full senior-program flex flex-col justify-end p-10 text-white hover:scale-[0.99] duration-700 ease-in-out"
>
<div class="lg:pt-24">
<h2 class="text-[28px] font-extrabold">Senior Program</h2>
<p class="text-base font-medium leading-[26px] mt-4 mb-6">
Our Senior Program is geared towards more experienced players
looking to refine their techniques and gain a deeper
understanding of the game. This program emphasizes advanced
strategies and physical conditioning.
</p>
<button
class="btn bg-customRed border-none w-2/3 lg:w-1/3 text-white"
>
Register Now!
</button>
</div>
</div>
<!-- card 3 -->
<div
class="w-full prof-program flex flex-col justify-end p-10 text-white md:col-span-2 hover:scale-[0.99] duration-700 ease-in-out"
>
<div class="lg:pt-52">
<h2 class="text-[28px] font-extrabold">Professional Program</h2>
<p
class="text-base font-medium leading-[26px] mt-4 mb-6 md:w-1/2"
>
For those aiming to play at the highest level, the
Professional Program offers intense training, expert coaching,
and a focus on the nuances of elite competition. This program
is crafted for players ready to take their game to the
professional arena.
</p>
<button
class="btn bg-customRed border-none w-2/3 md:w-2/5 lg:w-1/6 text-white"
>
Register Now!
</button>
</div>
</div>
</div>
</div>
</section>
<!-- New Products Section -->
<section class="mt-24">
<!-- title -->
<div class="text-center py-8 border-dashed border-y-2 mb-12">
<h3 class="text-4xl font-extrabold">Our New Products</h3>
<p
class="text-base font-medium text-customGray leading-[26px] mt-6 w-10/12 md:w-2/3 inline-flex"
>
Explore our new hockey gear collection. From durable sticks to
comfortable protective wear, our latest products are crafted to meet
all your playing needs. Upgrade your game with our top-quality
equipment designed for performance and comfort.
</p>
</div>
<!-- card container -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- card 1 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/5.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 5.00</div>
<div><i class="fa-regular fa-eye"></i> 620</div>
<div><i class="fa-regular fa-heart"></i> 350</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
Classic Sports Jacket
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
Classically wool with contrasting leather sleeves
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $72.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
<!-- card 2 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/6.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 4.80</div>
<div><i class="fa-regular fa-eye"></i> 520</div>
<div><i class="fa-regular fa-heart"></i> 370</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
KSA Soccer Ball
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
Saudi Arabia's soccer ball is white with a green trim
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $22.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
<!-- card 3 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/7.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 4.60</div>
<div><i class="fa-regular fa-eye"></i> 720</div>
<div><i class="fa-regular fa-heart"></i> 289</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
Premium Sports Cap
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
Spring and summer new hat men's Summer hockey cap
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $17.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
<!-- card 4 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/8.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 5.00</div>
<div><i class="fa-regular fa-eye"></i> 6226</div>
<div><i class="fa-regular fa-heart"></i> 3283</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
Premium Sports Jersey
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
Close-fitting shirt that is part of a sports team's uniform
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $82.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
<!-- card 5 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/9.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 5.00</div>
<div><i class="fa-regular fa-eye"></i> 1320</div>
<div><i class="fa-regular fa-heart"></i> 605</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
Sports Hockey Helmet
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
This collectible authentic helmet is made specifically for fans
of the hockey players
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $122.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
<!-- card 6 -->
<div
class="border p-6 rounded-2xl flex flex-col lg:flex-row justify-center items-center gap-5 hover:scale-105 duration-300 ease-in-out"
>
<div class="flex justify-center items-center">
<img
class="lg:h-[172px] object-cover rounded-xl"
src="images/10.png"
alt=""
/>
</div>
<div>
<div
class="flex gap-4 text-customGray text-base leading-none font-medium"
>
<div><i class="fa-solid fa-star text-yellow-400"></i> 4.50</div>
<div><i class="fa-regular fa-eye"></i> 520</div>
<div><i class="fa-regular fa-heart"></i> 184</div>
</div>
<h2 class="text-xl font-extrabold leading-none my-3">
Premium Football
</h2>
<p class="text-base font-medium text-customGray leading-[26px]">
Get ready for the ultimate football experience
</p>
<div
class="flex flex-col lg:flex-row justify-left items-left gap-4 lg:gap-5 mt-4"
>
<h3 class="text-lg font-extrabold text-red-500 leading-none">
Price - $46.00
</h3>
<div class="flex items-center gap-2 text-customGray">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-6"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z"
/>
</svg>
<small class="text-base font-medium leading-none"
>Delivery Fee: Free</small
>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Question Seciton -->
<section class="mt-24">
<!-- title -->
<div class="text-center py-8 border-dashed border-y-2">
<h3 class="text-4xl font-extrabold">Clients Question</h3>
<p
class="text-base font-medium text-customGray leading-[26px] mt-6 w-10/12 md:w-2/3 inline-flex"
>
Have questions about our hockey programs, facilities, or services?
We're here to help. Below are answers to some of the most frequently
asked questions.
</p>
</div>
<!-- hero section -->
<div class="mt-12">
<div class="hero border rounded-2xl">
<div class="hero-content flex-col lg:flex-row gap-10">
<img
src="images/11.png"
class="md:max-w-sm rounded-lg shadow-2xl"
/>
<!-- accordion -->
<div>
<div class="collapse collapse-plus border-b rounded-none">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">
Our Equipment
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
We use top-of-the-line hockey gear to ensure safety and
performance on the field. Our equipment is regularly
maintained and updated to meet the highest standards.
</p>
</div>
</div>
<div class="collapse collapse-plus border-b rounded-none">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">
Hockey Training
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
Join our structured training sessions designed for players
at all levels. Our expert coaches focus on developing
skills, teamwork, and strategy to help you excel.
</p>
</div>
</div>
<div class="collapse collapse-plus border-b rounded-none">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">
Private Lessons
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
For personalized attention, our private lessons offer
one-on-one coaching tailored to your individual needs and
goals, helping you improve specific aspects of your game.
</p>
</div>
</div>
<div class="collapse collapse-plus border-b rounded-none">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">
Field Conditioning
</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
Focus on building the endurance, strength, and agility
needed for peak performance in hockey. Our conditioning
programs are tailored to help you stay fit and competitive
throughout the season.
</p>
</div>
</div>
<div class="collapse collapse-plus border-b rounded-none">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">Booking</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
Ready to take your game to the next level? Book a session
with us today, whether it's for a group class, private
lesson, or team training.
</p>
</div>
</div>
<div class="collapse collapse-plus">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold">Pricings</div>
<div class="collapse-content">
<p class="text-base font-normal text-[131318]">
We offer competitive pricing for all our programs and
services. Whether you're looking for a single session or a
full-season package, we have options that fit your needs
and budget.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Get In Touch section -->
<section class="mt-24">
<!-- title -->
<div class="text-center py-8 border-dashed border-y-2">
<h3 class="text-4xl font-extrabold">Get In Touch</h3>
<p
class="text-base font-medium text-customGray leading-[26px] mt-6 w-10/12 md:w-2/3 inline-flex"
>
Whether you’re interested in joining our hockey programs, have
questions about our services, or just want to learn more about what
we offer, we're here to help. Reach out to us, and we'll get back to
you as soon as possible.
</p>
</div>
<!-- form -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-12">
<!-- contact info -->
<div class="border p-6 lg:p-12 rounded-2xl">
<!-- phone -->
<div class="p-8 bg-customGreen rounded-2xl">
<img src="images/Group 1171275317.png" alt="" />
<p class="text-base font-normal text-[#131318] mt-6 mb-2">
Phone Number:
</p>
<p class="text-lg font-extrabold">(+62) 123-321-543</p>
</div>
<!-- email -->
<div class="p-8 bg-customGreen rounded-2xl my-6">
<img src="images/Group 1171275318.png" alt="" />
<p class="text-base font-normal text-[#131318] mt-6 mb-2">
Email:
</p>
<p class="text-lg font-extrabold">hockeys@support.com</p>
</div>
<!-- location -->
<div class="p-8 bg-customGreen rounded-2xl">
<img src="images/Group 1171275321.png" alt="" />
<p class="text-base font-normal text-[#131318] mt-6 mb-2">
Location:
</p>
<p class="text-lg font-extrabold">
36/7 Red July Street, Dinajpur
</p>
</div>
</div>
<!-- contact form -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mt-4">
<div>
<h3 class="text-xl font-bold mb-4">Your Name</h3>
<input
type="text"
placeholder="Enter your full name"
class="input w-full bg-customBlue"
/>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Your Email</h3>
<input
type="text"
placeholder="Enter your email"
class="input w-full bg-customBlue"
/>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Subject</h3>
<input
type="text"
placeholder="Enter your subject"
class="input w-full bg-customBlue"
/>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Phone Number</h3>
<input
type="text"
placeholder="Enter your phone number"
class="input w-full bg-customBlue"
/>
</div>
<div class="md:col-span-2">
<h3 class="text-xl font-bold mb-4">Message</h3>