/* 1 */
.image-circle-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle-wrapper img.circle-img {
  width: 100%;
  height: auto;
}

/* Card */

.innovation-card-custom {
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
  will-change: transform;
}

.icon-animate:active {
  animation: bounce 0.4s;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Judul Inovasi */
.innovation-title {
  color: #1976d2;
  font-weight: bold;
  font-size: 1.35rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.innovation-desc {
  color: #666;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.testimonials {
  position: relative;
  padding-bottom: 40px;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.swiper {
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial-item {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.39);
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  height: 250px;
  margin: auto;
}

@media (max-width: 576px) {
  .testimonial-item {
    max-width: 90%;
    height: 200px;
  }
}

.testimonial-item p {
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-item h6,
.testimonial-item small {
  color: #fff !important;
  text-align: center;
}

.testimonial-img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(2, 2, 2, 0.08);
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: box-shadow 0.5s, transform 0.5s;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.swiper-button-prev {
  left: -50px;
  right: auto;
}

.swiper-button-next {
  right: -50px;
  left: auto;
}

@media (max-width: 767px) {
  .swiper-button-prev {
    width: 32px;
    height: 32px;
    left: 0; /* posisikan ke kiri */
    right: auto;
  }

  .swiper-button-next {
    width: 32px;
    height: 32px;
    right: 0; /* posisikan ke kanan */
    left: auto;
  }
  .testimonial-img {
    width: 80px;
    height: 100px;
  }
}

/* Contact Section Styling */
#contact {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding-bottom: 60px;
}

#contact .section-title h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

#contact .section-title p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #334155;
  transition: box-shadow 0.2s, border 0.2s;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 1.5px solid #38bdf8;
}

.contact-icon {
  font-size: 2.2rem;
  color: #38bdf8;
  margin-bottom: 0.7rem;
}

.contact-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-link:hover {
  color: #000000;
  text-decoration: underline;
}

@media (max-width: 991px) {
  #contact .info-item {
    margin-bottom: 1.5rem;
  }

  #contact .contact-card {
    min-height: 180px;
  }
}

@media (max-width: 767px) {
  #contact .info-item {
    padding: 1.2rem !important;
  }

  #contact .contact-card {
    min-height: 120px;
  }

  #contact iframe {
    height: 120px !important;
  }
}
