*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'outfit',sans-serif;
}
specs
h3{
    font-size: 21px;
}

body{
overflow-x:hidden;
}

.topbar{
background:#234E9B;
color:white;
padding:8px 0;
font-size:14px;
}

.navbar-brand img{
width:120px;
}

.nav-link{
font-size:15px;
font-weight:600;
color:#222;
margin:0 12px;
transition:.3s;
}

.nav-link:hover{
color:#E64A22;
}

.call-btn{
background:#234E9B;
color:white;
border-radius:50px;
padding:12px 22px;
font-weight:600;
}

.call-btn:hover{
background:#17396e;
color:white;
}

.test-btn{
background:#E64A22;
color:white;
border-radius:50px;
padding:12px 22px;
font-weight:600;
}

.test-btn:hover{
background:#cc3f19;
color:white;
}

.hero-section{
background:linear-gradient(135deg,#edf4ff,#ffffff);
position:relative;
overflow:hidden;
}

.subheading{
color:#E64A22;
font-weight:700;
letter-spacing:1px;
}

.hero-section h1{
font-size:65px;
font-weight:800;
color:#234E9B;
line-height:1.2;
}

.hero-section p{
font-size:18px;
color:#666;
margin-top:20px;
margin-bottom:30px;
}

.btn-orange{
background:#E64A22;
color:white;
padding:15px 35px;
border-radius:50px;
font-weight:600;
}

.btn-orange:hover{
background:#c53c18;
color:white;
}

.bike-image{
animation:float 4s infinite ease-in-out;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.carousel-control-prev,
.carousel-control-next{
width:50px;
height:50px;
background:#234E9B;
border-radius:50%;
top:50%;
transform:translateY(-50%);
}

.carousel-control-prev{
left:30px;
}

.carousel-control-next{
right:30px;
}


@media(max-width:991px){

.hero-section h1{
font-size:42px;
}

.navbar-brand img{
max-height:60px;
}

}

.products{
background:#f7f9fc;
}

.sub-title{
color:#e64a22;
font-weight:600;
letter-spacing:2px;
}

.section-title{
font-size:48px;
font-weight:800;
color:#234E9B;
}

.product-filter button{
border:none;
padding:12px 28px;
border-radius:50px;
background:#fff;
margin:5px;
font-weight:600;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.product-filter .active{
background:#234E9B;
color:#fff;
}

.product-card{
background:#fff;
border-radius:25px;
overflow:hidden;
position:relative;
box-shadow:0 10px 40px rgba(0,0,0,.08);
transition:.4s;
}

.product-card:hover{
transform:translateY(-10px);
}

.badge-tag{
position:absolute;
top:15px;
left:15px;
background:#0c9b4e;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
z-index:9;
}

.product-image{
background:#eef4ff;
padding:20px;
height:240px;
display:flex;
align-items:center;
justify-content:center;
}

.product-image img{
max-height:180px;
transition:.4s;
}

.product-card:hover img{
transform:scale(1.08);
}

.product-content{
padding:25px;
}

.product-content h4{
font-weight:700;
color:#222;
}

.category{
color:#777;
font-size:14px;
}

.description{
background:#f2f2f2;
padding:12px;
border-radius:10px;
margin:15px 0;
font-size:14px;
}

.specs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 20px;
}

.specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.specs span i {
  font-size: 14px;
  color: #28a745; /* brand color */
}

/* Hover effect (optional premium touch) */
.specs span:hover {
  background: #28a745;
  color: #fff;
  transition: 0.3s;
}

.specs span:hover i {
  color: #fff;
}

.bottom{
display:flex;
justify-content:space-between;
align-items:center;
}

.bottom h3{
font-weight:600;
color:#222;

}

.call-btn{
background:#0d6efd;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.call-btn:hover{
background:#e64a22;
color:#fff;
}
.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev{
width:55px;
height:55px;
background:#0d6efd;
border-radius:50%;
color:#fff;
}

.swiper-button-next:after,
.swiper-button-prev:after{
font-size:20px;
}

@media(max-width:768px){

.section-title{
font-size:32px;
}

.bottom{
flex-direction:column;
gap:15px;
}

.call-btn{
width:100%;
text-align:center;
}

}