/* Custom Video Background Styles for Profound World IT Solutions */

/* Full viewport height for hero section */
.hero-full-viewport {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Ensure video covers entire hero section */
.hero-full-viewport video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Video Background Optimizations for Mobile */
@media (max-width: 768px) {
  /* Hide video on mobile devices for better performance */
  .hero-full-viewport video {
    display: none;
  }
  
  /* Fallback gradient background for mobile */
  .hero-full-viewport {
    background: linear-gradient(135deg, #0A1E42 0%, #2D3748 100%);
  }
  
}

/* Optimize video loading for larger screens */
@media (min-width: 769px) {
  /* Ensure smooth video playback */
  .hero-full-viewport video {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .hero-full-viewport video {
    display: none;
  }
  
  .hero-full-viewport {
    background: linear-gradient(135deg, #0A1E42 0%, #2D3748 100%);
  }
}