.products-banner-image {
  /* background-image: url(./assets/img/banner/banner-img-2.png);
    height: 80vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
  background-color: #232122;
  margin-top: -20px;
  height: auto;
  padding: 50px;
}

/* .contact-banner-image-overlay{
    background-color: rgba(0, 0, 0, 0.534);
    height: 80vh;
} */


.products-heading {
  text-align: center;
  text-shadow: 0 0 5px #fd8623, 0 0 15px #fd8623, 0 0 20px #fd8623, 0 0 40px #fd8623, 0 0 60px #232122, 0 0 10px #ff8d00, 0 0 98px #232122;
  color: #232122;
  font-size: 60px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 300px;
  background: #232122;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
  border-bottom: 5px solid #fd8623;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 250px;
  border-radius: 6px;
}

.card-title {
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Concert One", sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.card.active {
  background-color: #fd8623 !important;
  border: 2px solid #232122;
}

.content-box {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: #232122;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.content-box.active {
  display: block;
}

@media (max-width: 600px) {
  .card-container {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .card {
    flex: 0 0 auto;
    width: 160px;
  }
}

.products-borde-style{
  box-shadow: 3px 3px 0px -0.5px #fd8623;
  /* height: 300px;
  width: 300px; */
  padding: 10px;
  border-radius: 24px;
  margin-bottom: 30px;
  cursor: pointer;
}

.products-borde-style:hover{
  transition: 0.5s;
  margin-top: -10px;
}

.products-borde-style-one{
  height: 100px;
}

.img-fluid{
  border-radius: 20px;
}
/* Slider buttons */
.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px;
  margin-bottom: 20px;
  scroll-behavior: smooth;
}

.slider-btn {
  background-color: #232122;
  color: #fff;
  padding: 33px 50px;
  font-size: 18px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  width: 120px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.slider-btn:hover {
  background-color: #232122;
}


.slider-btn.active {
  background-color: #fd8623;
  color: #232122;
  font-weight: bold;
}

.content {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #232122;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.content.active {
  display: block;
}


@media screen and (max-width: 600px) {
  .slider-btn {
      width: auto;
      font-size: 23px;
      white-space: nowrap;
      min-width: 280px;
      height: 100px;
  }


  .slider {
      overflow-x: auto;
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      padding: 10px;
      justify-content: flex-start;
  }

  .slider-btn {
      padding: 8px 16px;
  }

  .content {
      font-size: 14px;
  }
}


