
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px; 
  position: relative;
}


.carousel-container {
  flex: 1;
  position: relative;
  min-width: 0; 
}
.mySwiper {
    width: 100%;
    padding-bottom: 20px;
}
.swiper-wrapper {
    overflow: visible;
}
.swiper-slide {
    position: relative;
    z-index: 1;
}
.swiper-slide .slide-inner {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    transform: scale(0.8);
    transition: all 0.5s ease;
    opacity: 0.2;
    box-shadow: 0px 10px 19.3px 2.44px #E4E2F178;
}
.swiper-slide-active {
    z-index: 3;
}
.swiper-slide-active .slide-inner {
    transform: scale(1);
    opacity: 1;
}
.swiper-slide-prev,
.swiper-slide-next {
    z-index: 2;
}
.slide-image {
    width: 100%;
    object-fit: cover;
    background-color: #eee;
}
.slide-content {
    padding: 50px;
}
.slide-label {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    font-family: Poppins;
    color: #e53935;
    border: #e53935 1px solid;
    border-radius: 60px;
}
.slide-title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
    display: block;
    padding: 20px 0;
}
.slide-text {
    display: block;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3em;
    color: #9A9A9A;
}

.nav-button {
  width: 56px;
  height: 56px;
  border: 2px solid #e53935;
  background-color: white !important;
  color: #e53935 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.nav-button:hover {
  background-color: #e53935 !important;
  color: white !important;
}

