.bike-section {
  padding: 30px 20px;
  /* background:#f8f9fc; */
}

.bike-container {
  max-width: 1300px;
  margin: auto;
}

/* Header */

.bike-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.bike-rental{
    color: #0052d4;
}

.bike-subtitle {
  color: #111111;
  font-weight: 400;
  font-size: 16px;

}

.bike-title {
  font-size:26px;
  margin-top: 5px;
}

.view-all {
  font-size: 16px;
  color: #0052d4;
  font-weight: 600;
}

.view-all i {
  margin-left: 6px;
}

/* Grid */

.bike-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}

/* Card */

.bike-card {
  background: #f8f9fc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */

.bike-img {
  height: 200px;
  padding:10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.bike-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Content */

.bike-content {
  padding:20px;
}

.bike-content h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.bike-type {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.bike-price {
  font-size: 17px;
  font-weight: 600;
  color: #0052d4;
  margin-bottom: 15px;
}

.day{
    color: rgb(82, 80, 80);
     font-weight: 500;
}
.bike-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0052d4;
  color: #fff;
  border-radius:15px 0px 15px 0px;
  font-size: 14px;
  border: none;
}

.bike-btn:hover {
  background: #003ea3;
}

/* Tablet */

@media (max-width: 992px) {
  .bike-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {
  .bike-grid {
    grid-template-columns: 1fr;
  }

  .bike-title {
    font-size: 26px;
  }
}
