.video-section{
    width: 100%;
    height: 100vh;
    margin-top: -8% !important;
    
}



@media  (max-width: 1024px) {
  

  .video-section{
      margin-top: -11% !important;

  }

  
}

@media  (max-width: 768px) {
  /* For small screens, adjust the font size and the image layout */
  .video-section{
      margin-top: -15% !important;;
      
  }

  
}

@media  (max-width: 480px) {
  /* For very small screens, further reduce the text size */
  .video-section{
      margin-top: -26% !important;;
  }

  
}

.textcontainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #eaeaea; /* Light gray background */
    
    padding: 20px;
    gap: 20px; /* Space between the two contents */
}

/* Individual Content Styling */
.content {
    flex: 1; /* Ensure both contents take equal space */
    
    text-align: center;
    font-family: 'Courier New', monospace;
    color: #333;
    
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack contents vertically */
    }
}

.carousel-wrapper {
    margin-top: 45px;
    margin-bottom: 30px;
    width: 100%; /* Set to desired width */
    overflow: hidden; /* Hide anything outside the container */
  }
  
  .carousel {
    display: flex;
    animation: scroll 30s linear infinite; /* Continuous scrolling with animation */
  }
  
  .carousel img {
    width: 100%; /* Ensure each image takes up the full width */
    height: 25vh; /* Maintain aspect ratio */
    padding-right: 5px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0); /* Start at the beginning */
    }
    100% {
      transform: translateX(-100%); /* Scroll to the end */
    }
  }