section {
    margin-bottom: 5px;
}

.portfolio {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.portfolio h2 {
  font-size: 32px;
  color: #0a3d2c;
}

.portfolio p {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}

.portfolio-slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.portfolio-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.portfolio-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

.portfolio-image img {
  width: 250px;
  border-radius: 10px;
  margin-right: 40px;
}

.portfolio-info {
  text-align: left;
}

.portfolio-info h3 {
  font-size: 22px;
  color: #0a3d2c;
}

.portfolio-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-btn {
  background: #0a3d2c;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.portfolio-btn.demo {
  background: #f9a825;
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #0a3d2c;
  cursor: pointer;
  background: rgba(223, 223, 223, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.portfolio-arrow.prev {
  left: 120px;
}

.portfolio-arrow.next {
  right: 120px;
}

.portfolio-arrow:hover {
  color: #f9a825;
}

.portfolio-indicators {
  margin-top: 20px;
}

.portfolio-indicators .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.portfolio-indicators .dot.active {
  background: #0a3d2c;
}

/* 🌟 Responsif untuk perangkat kecil */
@media (max-width: 768px) {
  .portfolio-slide {
    flex-direction: column;
    gap: 15px;
  }

  .portfolio-image img {
    width: 80%;
    margin-right: 0;
  }

  .portfolio-info {
    text-align: center;
  }

  .portfolio-info h3 {
    font-size: 20px;
    color: #0a3d2c;
  word-wrap: break-word; /* Memaksa kata panjang terpecah */
  overflow-wrap: break-word; /* Versi modern dari word-wrap */
  max-width: 100%; /* Batasan lebar */
  white-space: normal;
  }

  .portfolio-arrow.prev {
    left: 10px;
  }

  .portfolio-arrow.next {
    right: 10px;
  }

  .portfolio-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .portfolio h2 {
    font-size: 24px;
  }

  .portfolio p {
    font-size: 12px;
  }

  .portfolio-arrow {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .portfolio-indicators .dot {
    width: 10px;
    height: 10px;
  }
}
