.bg-bengkel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Gambar latar */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* di belakang overlay dan konten */
}

/* Gradasi gelap di atas gambar */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  z-index: 1; /* di atas gambar tapi di bawah konten */
}

/* Supaya konten tetap di atas */
.bg-bengkel .container {
  position: relative;
  z-index: 2;
}


    .bg-cover {
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
    }

.payment-card {
  width: 100px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 5px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
  font-size: 0.85rem;
}

.payment-card:hover {
  background-color: #f0f8ff;
  border-color: #0d6efd;
  color: #0d6efd;
}

.payment-card i {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #0d6efd;
}
 .foot-menu{
  height:45px; 
  bottom: 2px;
  position: fixed;
  right: 0;
  left: 0;
  text-align: center;
  z-index:999;

}