*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0d0d0d;
color:#fff;
line-height:1.6;
}

header{
background:#111;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 0 15px rgba(0,0,0,.5);
}

.logo{
font-size:30px;
font-weight:700;
color:#ffd700;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ffd700;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)),
url("../images/hero-bike.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero-content h1{
font-size:60px;
margin-bottom:15px;
color:#ffd700;
}

.hero-content p{
font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:25px;
}

.hero-btn{
display:inline-block;
padding:15px 35px;
background:#ffd700;
color:#000;
font-weight:600;
border-radius:8px;
text-decoration:none;
transition:.3s;
}

.hero-btn:hover{
transform:translateY(-3px);
}

.section{
padding:80px 8%;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
color:#ffd700;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#1b1b1b;
padding:30px;
border-radius:15px;
text-align:center;
transition:.3s;
border:1px solid #222;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#ffd700;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
}

.products-section{
padding:60px 8%;
}

#productContainer{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.product-card{
background:#1b1b1b;
border-radius:15px;
overflow:hidden;
padding:15px;
transition:.3s;
border:1px solid #222;
}

.product-card:hover{
transform:translateY(-8px);
}

.product-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

.product-card h3{
margin-top:15px;
color:#ffd700;
}

.product-card p{
margin:10px 0;
}

.product-card h4{
font-size:22px;
margin-bottom:15px;
}

.product-card button{
width:100%;
padding:12px;
border:none;
background:#25D366;
color:white;
font-weight:600;
border-radius:8px;
cursor:pointer;
}

.cta{
background:#ffd700;
color:#000;
text-align:center;
padding:70px 20px;
}

.cta h2{
font-size:40px;
margin-bottom:20px;
}

.whatsapp-btn{
display:inline-block;
background:#25D366;
color:white;
padding:15px 35px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

footer{
background:#111;
padding:30px;
text-align:center;
margin-top:50px;
}

footer p{
margin-top:10px;
}

.contact-section{
padding:60px 8%;
text-align:center;
}

.contact-section h2{
color:#ffd700;
margin-bottom:20px;
}

.contact-section a{
color:#ffd700;
text-decoration:none;
}

@media(max-width:768px){

header{
flex-direction:column;
}

nav{
margin-top:15px;
}

nav a{
display:inline-block;
margin:10px;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:16px;
}

.section-title{
font-size:30px;
}

}#searchBox{
width:100%;
padding:15px;
margin-bottom:30px;
border:none;
border-radius:10px;
font-size:16px;
background:#1b1b1b;
color:white;
}

#searchBox:focus{
outline:none;
border:1px solid #ffd700;
}
.contact-section{
max-width:800px;
margin:auto;
padding:60px 20px;
}

.contact-section h2{
text-align:center;
margin-bottom:30px;
color:#ffd700;
}

#contactForm{
display:flex;
flex-direction:column;
gap:15px;
}

#contactForm input,
#contactForm textarea{
padding:15px;
border:none;
border-radius:10px;
background:#1b1b1b;
color:white;
}

#contactForm textarea{
height:150px;
resize:none;
}

#contactForm button{
padding:15px;
border:none;
background:#ffd700;
color:black;
font-weight:bold;
border-radius:10px;
cursor:pointer;
}
.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
padding:30px;
}

.gallery-item{
background:#111;
padding:20px;
border-radius:10px;
text-align:center;
border:1px solid #333;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.gallery-item h3{
color:#ffd700;
margin-bottom:10px;
}

.gallery-item p{
margin:5px 0;
}

.gallery-item button{
margin-top:10px;
width:100%;
}
.search-box{
width:100%;
max-width:500px;
height:50px;
padding:0 15px;
margin:20px auto;
display:block;
border:none;
border-radius:10px;
font-size:16px;
background:#fff;
color:#000;
}