#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  /* Portrait View Optimization */
  @media (orientation: portrait) and (max-width: 767px) {
    #bg-video {
      height: 90vh;
      width: auto;
      object-fit: contain;
      background-color: black; /* Letterboxing filler */
    }
  }

  .red-pill {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 70, 70, 0.8));
}

.red-pill:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.notableworks{
  width:54px; 
  height:60px; 
  object-fit:contain;
  margin-right: 15px;
}

.vamplus-popup {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.brand-icons {
  transition: transform 0.5s ease;
}

.vamplus-container:hover .vamplus-popup,
.vamplus-container.active .vamplus-popup {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
}

.vamplus-container:hover .brand-icons,
.vamplus-container.active .brand-icons {
  transform: translateY(50px);
}
@media (max-width: 768px) {
  #contact .container-mid {
      max-height: 80vh; /* Set a viewport height limit */
      overflow-y: auto;  /* Enable scrolling inside container */
      -webkit-overflow-scrolling: touch; /* Smooth iOS scroll */
  }
}


#vamplus-countdown {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  t-webkit-transition: 1s 5.5s;
            transition: 1s 5.5s;
  
}

@media (max-width: 768px)
{
  .vamplus-countdown
  {
      width: 100%;
      
  }
}

#play-btn {
  position: absolute;
  top: 60px;
  left: 20px;
  padding: 10px 20px;
  z-index: 10;
  cursor: pointer;
  color: white;
  background: bottom;
}

/* Base style for the sound icon */
#sound-toggle {
  position: fixed;
  top: 60px;
  right: 20px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* Muted icon */
#sound-toggle.muted {
  background-image: url('../images/icons/mute.png');
}

/* Unmuted icon */
#sound-toggle.unmuted {
  background-image: url('../images/icons/sound.png');
}
