.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000; /* Ensures it's above other elements */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366; /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
  width: 70%;
  height: 70%;
}

.video-container-portrait {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 177.78%; /* Untuk rasio 9:16 (portrait) */
  max-width: 450px; /* Batasi lebar maksimum */
  margin: 0 auto; /* Pusatkan container */
}

.video-container-portrait video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-container-landscape {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container-landscape video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .video-container-landscape {
    width: 100%;
  }

  .video-container-landscape video {
    max-width: 100%;
    object-position: center;
  }
}

.navbar li > ul ul {
  z-index: 9;
}
