.container-banner-maklon {
  width: 100%;
  display: flex;
  height: 90vh;
  justify-content: center;
  align-items: center;
  background-color: rgb(66, 114, 61, 0.3);
}

.banner-maklon-text {
  display: flex;
  margin: 0 auto;
  font-weight: 600;
  color: #42723d;
  text-align: justify;
  font-size: 48px;
  width: 70%;
}

.banner-maklon-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.carousel-indicators {
  display: none;
}

.banner-maklon-content h1 {
  font-size: 50px; /* Ukuran font untuk judul */
  color: #44623d;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-maklon-content p {
  font-size: 36px; /* Ukuran font untuk teks */
  color: #44623d;
  font-weight: 600;
  margin-bottom: 50px;
}

.btn-tgm {
  font-size: 20px; /* Ukuran font untuk tombol */
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  align-self: center;
  width: 300px;
}

.btn-download {
  background-color: #f9d541;
  color: #fff;
  outline: none;
  padding: 10px 30px;
  border-radius: 20px;
  border: none;
  transition: background-color 0.3s;
}

.btn-download:hover {
  background-color: #ffd700;
  outline: none;
}

.row {
  margin: 0;
  width: 100%;
}

.col-sm-12,
.col-md-6 {
  flex: 1;
  /* Pastikan elemen ini mendukung flexbox layout */
}

.banner-maklon {
  background-color: rgba(66, 114, 61, 0.3);
  width: 100%;
}

#productCarousel {
  width: 100%;
}

.product-image {
  width: 100%;
}

.carousel-item {
  height: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  height: 30px; /* Sesuaikan tinggi dengan kebutuhan */
  background-color: transparent; /* Menjadikan background transparan */
  top: 50%;
  border: none;
  position: absolute;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(66, 114, 61, 0.5);
  border-radius: 50%;
  padding: 20px;
}

.container-maklon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.maklon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: rgba(66, 114, 61, 0.25);
  padding: 20px 0; /* Added padding for better spacing */
}

.maklon-image-container {
  width: 70%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.maklon h1 {
  margin: 50px 0 0 0;
  font-weight: 700;
  color: #42723d;
}

.maklon img {
  margin: 50px 0;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
}
.maklon-container {
  width: 75%;
  display: flex;
}

.water-image {
  margin: 0 auto;
  width: 80%;
  height: 650px;
}

/* CONTAINER TGM */
.containertgm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.title {
  color: #4c7a47;
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.subtitle {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  color: #4c7a47;
  font-style: italic;
  font-size: 18px;
}

.subtitle-container {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.right-icon {
  transform: scaleX(-1);
}

.left-line,
.right-line {
  flex: 1;
  height: 1px;
  background-color: #000;
}

.subtitle {
  margin: 0 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.grid-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px; /* Agar sudutnya lebih halus */
}

.image-container img {
  width: 100%;
  height: auto;
  backface-visibility: hidden; /* Sembunyikan bagian belakang saat gambar berputar */
  transition: transform 0.6s; /* Transisi gambar saat hover */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 208, 208, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img {
  transform: rotateY(180deg);
}

.overlay h3,
.overlay p {
  color: #000000;
  margin: 0;
  padding: 10px;
  text-align: center;
}

/* ICON SECTION */

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  color: #44623d;
  font-weight: bold;
}

.line-left,
.line-right {
  height: 2px;
  background-color: #000;
  width: 50px;
  position: absolute;
  top: 50%;
}

.line-left {
  left: -70px;
}

.line-right {
  right: -70px;
}

.icon-boxes {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
}

.icon-box {
  text-align: center;
  width: 20%;
}

.icon-box img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.icon-box h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 16px;
  color: #333;
}

/* KOLABORASI */
.carousel-section {
  background: linear-gradient(90deg, #42723d 0%, #60a759 60%, #6bc861 100%);
  padding: 50px;
  display: flex;
  max-width: 100%;
  overflow: hidden;
  justify-content: space-around;
  align-items: center;
}

.carousel-title {
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 0 100px;
  width: 400px;
  font-size: 36px;
  line-height: 1.2;
}

.carousel-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 470px;
  flex-direction: column;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 0;
  min-width: 100%;
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  margin: 0 5px;
  cursor: pointer;
}

.background-image {
  display: block;
  width: 100%; /* Atur ukuran gambar */
  transition: transform 0.3s ease-in-out;
}

.background-image:hover {
  transform: translateY(
    -10px
  ) !important; /* Paksa CSS hover untuk diterapkan */
}

.carousel-dot.active {
  background-color: #ddd;
}

.partner-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.carousel-dots {
  text-align: center;
  margin-top: 50px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.col-md-4:nth-child(1) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(2) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(3) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(4) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(5) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(6) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(7) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(8) .step-container:hover {
  transform: translateY(-10px);
}

.col-md-4:nth-child(9) .step-container:hover {
  transform: translateY(-10px);
}

.dot.active {
  background-color: #ffffff;
}

.step-container {
  height: 100%;
  padding: 20px 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.step-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.btn-tgm {
  color: #ffffff;
  background-color: #fdd835;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

/* Responsive styles */
@media (max-width: 1280px) {
  .banner-maklon-content {
    padding: 0;
  }

  .banner-maklon-content h1 {
    font-size: 32px;
  }

  .btn-tgm {
    width: 40%;
  }

  .banner-maklon-content p {
    font-size: 24px;
  }

  .carousel-title {
    font-size: 32px;
    width: 60%;
    text-align: center;
    margin: 0;
  }

  .carousel-slide {
    grid-gap: 20px 10px;
  }

  .carousel-content {
    margin: 40px 0 20px 0;
  }

  .partner-images {
    grid-gap: 20px;
  }

  .partner-image {
    width: 100%;
  }

  .carousel-section {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .row {
    display: flex;
    flex-direction: row;
  }

  .product-image {
    width: 100%;
  }

  .banner-maklon-content {
    padding: 0 10px;
  }

  .btn-tgm {
    width: 50%;
  }

  .banner-maklon-content h1 {
    font-size: 28px;
  }

  .banner-maklon-content p {
    font-size: 18px;
  }

  .carousel-title {
    font-size: 32px;
    width: 80%;
    text-align: center;
    margin: 0;
  }

  .carousel-content {
    margin: 40px 0 20px 0;
  }

  .partner-images {
    grid-gap: 20px;
  }

  .partner-image {
    width: 100%;
  }

  .carousel-slide {
    grid-gap: 20px;
  }

  .carousel-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: row;
  }
  .product-image {
    width: 100%;
    margin: auto;
  }

  .banner-maklon-content {
    width: 100%;
  }

  .maklon-image-container {
    width: 95%;
  }

  .maklon img {
    max-height: 250px; /* Sesuaikan tinggi maksimum */
    width: auto;
  }

  .banner-maklon-content h1 {
    font-size: 24px;
  }

  .banner-maklon-content p {
    font-size: 18px;
  }

  .image-container-banner-maklon {
    width: 48%;
  }

  .carousel-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 20px;
    min-width: 100%;
  }

  .carousel-title {
    font-size: 28px;
    width: 80%;
    text-align: center;
    margin: 0;
  }

  .carousel-content {
    margin: 40px 0 20px 0;
  }

  .partner-images {
    grid-gap: 20px;
  }

  .partner-image {
    width: 100%;
  }

  .carousel-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    font-size: 14px;
  }

  .title {
    font-size: 18px;
  }

  .icon-boxes {
    display: flex;
  }

  .overlay h3 {
    font-size: 18px;
  }

  .overlay p {
    font-size: 14px;
  }

  .icon-box {
    margin: auto;
    width: 75%;
  }

  .maklon h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-tgm {
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .row {
    display: flex;
    flex-direction: column;
  }
  .banner-maklon {
    width: 100%;
  }

  .banner-maklon-content {
    padding: 0 10px;
  }

  .product-image {
    width: 80%;
    height: 250px;
    margin-top: 80px;
  }

  .banner-maklon-content h1 {
    font-size: 20px;
  }

  .banner-maklon-content p {
    font-size: 16px;
  }

  .carousel-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 0;
    min-width: 100%;
    justify-items: center;
  }

  .carousel-title {
    font-size: 24px;
    width: 80%;
    text-align: center;
    margin: 0;
  }

  .carousel-container {
    width: 90%;
  }

  .carousel-content {
    margin: 40px 0;
  }

  .partner-images {
    grid-gap: 20px;
  }

  .partner-image {
    width: 140px;
    height: 140px;
  }

  .carousel-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    font-size: 14px;
  }

  .title {
    font-size: 18px;
  }

  .icon-boxes {
    display: flex;
    flex-direction: column;
  }

  .overlay h3 {
    font-size: 20px;
  }

  .overlay p {
    font-size: 16px;
  }

  .icon-box {
    margin: auto;
    width: 75%;
  }

  .maklon h1 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 14px;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1281px) {
}
