  /* CSS Hero Section Swiper */
  .hero {
    position: relative;
    overflow: visible; /* Agar panah tidak terpotong */
    height: 500px; /* Pastikan ada tinggi supaya swiper terlihat */
  }
  .hero .swiper {
    width: 100%;
    height: 100%;
    position: absolute; /* Agar gambar mengisi latar belakang hero section */
    top: 0;
    left: 0;
    z-index: 10; /* Pastikan di belakang konten teks */
  }
  .hero .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar mengisi area tanpa terdistorsi */
  }
  /* Swiper Pagination (titik-titik navigasi) */
  .hero .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6); /* Warna titik default */
    opacity: 1;
  }
   .hero .swiper-pagination-bullet-active {
    background-color: #007aff; /* Warna titik aktif */
  }
  /* Swiper Navigation (tombol panah) */
  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8); /* Warna panah */
    transition: 0.3s;
  }
  .hero .swiper-button-next:hover,
  .hero .swiper-button-prev:hover {
    color: #007aff; /* Warna panah saat hover */
  }