nav{
    background-color:rgb(71, 88, 145);
}
.color-bg{
       background-color: rgb(71, 88, 145);
}

  .car-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      transition: 0.3s;
    }
    .car-card:hover {
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .discount-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #4f65ae;
      color: #fff;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 14px;
    }
    .price {
      color: #00a859;
      font-weight: bold;
      font-size: 22px;
    }
    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 16px;
    }
    .car-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card-body small {
      display: block;
      color: #555;
      margin-top: 5px;
    }