.swiper {
  width: 100%;
  height: 100%;
  padding: 3em 0 5em 0;
}

.mySwiper {
  max-width: 1500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 30px rgba(124, 0, 218, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  padding: 40px;
  padding: 0;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.swiper-slide-active .card {
  box-shadow: 0 20px 50px rgba(124, 0, 218, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.swiper-slide .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(124, 0, 218, 0.2);
}

.card-body {
  flex: 1;
  padding: 30px 20px 10px 20px;
  position: relative;
  z-index: 1;
}

.card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #7c00da, #0a58ca);
}

.card-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a4a68;
  font-style: italic;
  font-weight: 500;
}

.card-footer {
  text-align: left;
  padding: 15px 20px 15px 20px;
  background: none !important;
  border-top: none !important;
}

.card-footer span:first-child {
  color: #7c00da;
  font-weight: 800;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0px;
  line-height: 1.2;
}

.card-footer span:last-child {
  color: #696984;
  font-weight: 500;
  font-size: 0.95rem;
}

.quote-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  opacity: 0.8;
  filter: drop-shadow(0 4px 6px rgba(124, 0, 218, 0.2));
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #7c00da;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #7c00da !important;
  color: #fff;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #7c00da;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 767px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}