    .swiper {
      width: 100%;
      /* max-width: 1200px; */
      margin: auto;
      padding: 40px 0;
    }
    .swiper-slide {
      /* width: 280px;  atur sesuai kebutuhan */
      transition: transform 0.4s ease, opacity 0.4s ease;
      transform: scale(0.85);
      opacity: 0.6;
      height: 400px !important;
    }
    
    


    .swiper-slide-active {
      transform: scale(1);
      opacity: 1;
      z-index: 2;
      width: 740px !important;
    }
    .img-star { width: 30px; }

    .swiper-slide-next,
    .swiper-slide-prev {
      transform: scale(0.9);
      opacity: 0.8;
    }



/* Panah prev */
.swiper-button-prev {
  left: -20px;   /* geser ke kiri sejauh 30px dari card */
}

/* Panah next */
.swiper-button-next {
  right: -20px;  /* geser ke kanan sejauh 30px dari card */
}

/* Styling tambahan biar lebih rapi */
.swiper-button-prev,
.swiper-button-next {
  color: #6B2B07;         /* warna panah */
  font-weight: bold;
  transition: all 0.7s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
  color: #6B2B07;
}
.swiper {
  overflow: visible; /* biar elemen di luar container tetap kelihatan */
}

/***************************************************/
.text-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 180px;
  font-family: Montserrat-Regular; font-size: 20px;
}

.text-short {
  display: block;
}

.text-full {
  display: none;
  white-space: normal;
}

.text-wrapper:hover .text-short {
  display: none;
}

.text-wrapper:hover .text-full {
  display: block;
  transition: max-height 0.3s ease;
}

.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}
    .card2 {
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0px 5px 10px 0px #222222;
    }

    .card2:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .card2 img {
      /* width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid #ff005c; */
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .card2 img:hover {
      transform: scale(1.1);
    }

    .card {
      background: #6B2B07; /** linear-gradient(135deg, #2a2a72, #009ffd); **/
      border-radius: 35px;
      text-align: left;
      padding: 30px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0px 5px 10px 0px #222222;
      height: 400px !important;
    }

    .card:hover {
      transform: translateY(10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    /* .card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid #ff005c;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .card img:hover {
      transform: scale(1.1);
    } */

    .card h3 {
      font-size: 20px;
      margin: 10px 0 5px;
    }

    .card p {
      font-size: 14px;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 8px;
      background: #ff005c;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #ff3366;
    }

/* Responsive */
@media (max-width: 768px) {
  /* .card img {
    width: 100px;
    height: 100px;
  } */
  .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    width: 100% !important;
  }
  .img-star { width: 20px !important; height: 18px !important; }
    
  .swiper-pagination {
    margin-top: 50px !important;
  }
  .text-wrapper {
    height: auto;
  }
  .swiper-slide {
    height: auto !important;
  }
}