body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Dark Sub-Header Styles */
.sub-header {
  background: #061325 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sub-header .left-content li {
  color: #fff !important;
}

.sub-header .left-content li em {
  color: #d4af37 !important;
  font-style: normal;
  font-weight: 700;
}

.sub-header .right-icons ul li a i {
  color: #fff !important;
  transition: all 0.3s ease;
}

.sub-header .right-icons ul li a i:hover {
  color: #d4af37 !important;
}

/* WhatsApp Close Button */
.whatsapp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-whatsapp {
  cursor: pointer;
  font-size: 14px;
  color: #ff4d4d;
  transition: all 0.3s ease;
  background: none;
  width: auto;
  height: auto;
  display: inline-block;
  margin-left: 10px;
  opacity: 0.8;
}

.close-whatsapp:hover {
  color: #ff4d4d;
  opacity: 1;
  transform: scale(1.05);
}

/* Premium Video Modal Styling */
.video-modal-container {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #d4af37;
  color: #0a192f;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-modal-close:hover {
  background: #fff;
  transform: scale(1.1) rotate(90deg);
}

.video-modal-close i {
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .video-modal-container {
    border-radius: 12px;
    margin: 10px;
  }

  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
}

/* Performance Video Play Button Style */
.play-btn-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.play-btn-wrapper:hover {
  background: #fff;
  color: #0a192f;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.play-btn-wrapper i {
  margin-left: 4px;
  /* Centering the play triangle */
}