/* Importing Google Font - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
 background: url("<?php echo base_url(); ?>assets2/img/display/bg.jpg") #030728 no-repeat center;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

/* --------------------------
   CARD NORMAL (ORANG)
--------------------------- */
.card-list .card-item {
  height: auto;
  color: #fff;
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
}

/* Foto profil circle */
.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
}

.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  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;
}

/* --------------------------
   CARD GAMBAR (FULL IMAGE)
--------------------------- */
.card-list .card-item-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* gambar memenuhi card */
.card-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-item-image .message-button {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
   background: rgba(255, 255, 255, 0.6); 
  color: #030728;
  border: none;            
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.card-item-image .message-button:hover {
  background: #00acaa; 
  color: white;
  border: none;          
}

.card-item-image .message-button:link,
.card-item-image .message-button:visited {
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.judul-produk {
  text-align: center;
  font-size: 30px;       /* besar */
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;        
  animation: fadeIn 2s ease-out;
}

.btn-wrapper {
  text-align: center;
  margin-top: -35px;
  animation: fadeIn 1s ease-out;
}

.btn-inovasi {
  background: #00acaa;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.25s ease;
}

.btn-inovasi:hover {
  background: #008d8b;
}


/* BULLET pagination jadi MERAH */
.slider-wrapper .swiper-pagination-bullet {
  background: red !important;
  height: 13px;
  width: 13px;
  opacity: 0.4;       /* sedikit transparan */
}

.slider-wrapper .swiper-pagination-bullet-active {
  background: red !important;
  opacity: 1;
}

/* POSISI pagination naik ke atas tombol */
.swiper-pagination {
  position: relative !important;
  margin-top: 30px;        /* jarak dari slider */
  margin-bottom: 10px;     /* jarak ke tombol */
}


.slider-wrapper .swiper-slide-button {
  color: #000;
  margin-top: -55px;
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: red;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

}
