
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
scroll-behavior:smooth;
}

body{
background:#021526;
color:white;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#021526;
border-bottom:2px solid red;
position:sticky;
top:0;
z-index:1000;
}

.logo-area{
display:flex;
align-items:center;
gap:20px;
}

.logo-area img{
width:90px;
}

.logo-area h2{
color:white;
font-size:30px;
font-weight:800;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:20px;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
url('images/hero.jpg') center/cover;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-content h1{
font-size:75px;
font-weight:800;
}

.white-text{
color:white;
display:block;
}

.yellow-text{
color:#ffd700;
display:block;
}

.section{
padding:80px 8%;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:42px;
color:#ffd700;
}

.hours-section{
padding:60px 8%;
}

.hours-box{
background:#0b2740;
padding:40px;
border-radius:20px;
text-align:center;
border:2px solid red;
}

.hours-box h2{
color:#ffd700;
margin-bottom:20px;
}

.hours-box h3{
margin:10px 0;
font-size:32px;
}

.hours-box span{
color:red;
font-weight:bold;
}

.video-container iframe{
width:100%;
height:550px;
border:none;
border-radius:20px;
}

.about-box,
.service-box,
.package-card,
.trainer-card,
.review-card,
.contact-box{
background:#0b2740;
padding:30px;
border-radius:20px;
}

.services-container,
.packages-container,
.trainer-container,
.review-container,
.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.service-box i{
font-size:50px;
color:#ffd700;
margin-bottom:20px;
}

.package-card{
text-align:center;
}

.package-card h2{
color:#ffd700;
margin:15px 0;
}

.featured{
border:2px solid #ffd700;
}

.gallery-container img,
.trainer-card img{
width:100%;
border-radius:15px;
}

.review-card h4{
margin-top:15px;
color:#ffd700;
}

.contact-box{
text-align:center;
margin-bottom:30px;
}

.contact-box p{
margin:12px 0;
}

.map-btn{
display:inline-block;
margin-top:20px;
padding:14px 25px;
background:red;
color:white;
text-decoration:none;
border-radius:10px;
}

.social-icons{
display:flex;
justify-content:center;
gap:25px;
}

.social-icons a{
width:60px;
height:60px;
background:red;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:25px;
text-decoration:none;
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:35px;
text-decoration:none;
z-index:1000;
}
