/* HERO VIDEO SECTION */
#videoHero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transition: all 0.4s ease;
}

/* VIDEO STYLE */
#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* TITLE ON VIDEO */
.video-title {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  z-index: 2;
  transition: all 0.4s ease;
}

/* CONTENT SCROLLS FROM FRONT */
#pageContent {
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.9);
}

<style>
.marquee-wrap{
overflow:hidden;
width:100%;
}
.marquee-track{
display:flex;
width:max-content;
animation:marquee 28s linear infinite;
}
.marquee-track img{
height:45px;
margin:0 60px;
flex-shrink:0;
}
@keyframes marquee{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}
</style>

<div class="marquee-wrap">
  <div class="marquee-track">

    <img src="https://sitebuilder-60059390517.zohositescontent.in/Google%20Logo.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Meta.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Amazon.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Swiggy%20Instamart.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Blinkit.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Zepto.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Flipkart%20Minutes.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Bigbasket.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/AEO.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/SEO.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Jiomart.png">

    <!-- Duplicate for seamless loop -->

    <img src="https://sitebuilder-60059390517.zohositescontent.in/Google%20Logo.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Meta.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Amazon.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Swiggy%20Instamart.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Blinkit.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Zepto.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Flipkart%20Minutes.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Bigbasket.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/AEO.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/SEO.png">
    <img src="https://sitebuilder-60059390517.zohositescontent.in/Jiomart.png">

  </div>
</div>
