.video-scroll-section {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color:#1E73BE;
    /* background-image: url('https://banner2.cleanpng.com/20240330/lgw/transparent-hand-drawn-cartoon-ocean-with-waves-and-clouds6608d4e5e9f814.96309525.webp'); */
  }
  
  .video-scroll-container {
    display: flex;
    gap: 20px; /* space between videos */
    animation: scroll-left 30s linear infinite; /* continuous scrolling */
  }
  
  .video-item {
    flex: 0 0 auto; /* ensures items do not shrink or grow */
  }
  
  @keyframes scroll-left {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .video-scroll-container:hover {
      animation-play-state: paused;
  }
  
  .team-style01 .image {
    background-color: #fff !important;
  }
  
      .owl-carousel .image-wrapper {
  padding: 10px;
}

.owl-carousel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.owl-carousel img:hover {
  transform: scale(1.1);
}