/* Video Showcase Section */
.video__showcase__container {
    padding: 4rem 1rem;
    background-color: var(--extra-light);
  }
  
  .video__container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .video__container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  
  /* Custom video controls styling
  .video__container video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.5);
  }
   */
  .video__container video::-webkit-media-controls-panel {
    padding: 5px;
  }
  
  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .video__container {
      margin: 1.5rem auto;
    }
    
    .video__showcase__container {
      padding: 3rem 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .video__container {
      border-radius: 0.5rem;
    }
  }