@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  min-width: 80vw;
  margin: 0;
  padding: 0;
}
.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  /* Ensures children stretch to same height */
}

.card-list .card-item {
  color: #fff;
  user-select: none;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  text-align: center;
  justify-content: center;
  border-radius: 8px;
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .card-image {
  width: 100%;
  height: auto;
  /* border-radius: 50%; */
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: #000000b5 1px 1px 1px;
}

.card-list .card-item .card-tech,
.card-list .card-item .card-type {
  font-size: 1.15rem;
  color: #000000b5;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;

  transition: 0.2s ease;
}

.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

@media (max-width: 767px) {
  .slider-wrapper {
    min-width: 100%;
  }

  /* Optional: if you want each slide to take full width */
  .swiper-slide {
    min-width: 100%;
  }

  /* Optional: hide navigation buttons */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
