/* Modal Popup Styles */
.modal-gallery {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeInGallery 0.3s ease;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInGallery {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-gallery-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.close-modal-gallery {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal-gallery:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}





.clients .swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients .swiper-slide img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Baris grayscale dihapus agar warna normal */
    filter: none; 
    /* Ubah opacity ke 1 jika ingin langsung terang, atau biarkan 0.6 jika ingin efek menyala saat hover */
    opacity: 1; 
}

.clients .swiper-slide img:hover {
    /* Pastikan filter tetap none atau dihapus */
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.clients .swiper-slide a {
    display: inline-block;
    text-decoration: none;
}







.modal-gallery {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeInGallery 0.3s ease;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInGallery {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-gallery-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-gallery-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.close-modal-gallery {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  transition: 0.3s;
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal-gallery:hover {
  color: #ff6b6b;
  transform: scale(1.1);
}