.marquee__text{
    color:white !important;
}

.isi p{
  padding-bottom: 3rem;
}

/* VIDEO BACKGROUND */
.bgvideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills screen */
  z-index: -1; /* Push video behind content */
}

.mxd-divider{
  border-radius:0px;
}

.mxd-divider__image img.mobile {
  display: block;
}
.mxd-divider__image img.desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .mxd-divider__image img.mobile {
    display: none;
  }
  .mxd-divider__image img.desktop {
    display: block;
  }
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Blue circle with plus icon */
.pill-btn .icon-circle {
  background-color: #0d6efd; /* Bootstrap primary blue */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-btn .icon-circle i {
  font-size: 16px;
  color: white;
}

/* --- Modal Backdrop --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --- Modal Box --- */
.modal {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.25s ease;
}

.modal-backdrop.active .modal {
  transform: translateY(0);
}

.modal h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  transition: color 0.2s;
}
.modal .close-btn:hover {
  color: #000;
}