/* video credit Section */
.video-credit {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    opacity: 0.8;
    z-index: 2;
  }
  
  .video-credit a {
    color: #ffffff;
    text-decoration: underline;
  }
  
  
   /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  /* Video Background */
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Hero Content */
  .hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
  }
  