.marquee-container {
    display: flex;
    align-items: center;
    animation: scrollAnimation 20s linear infinite;
  }
  
  /* Each item in the marquee (image + text) */
  .marquee-item {
    display: flex;
    align-items: center;
    margin-right: 40px;
    --marquee-duration: 36s;
    --marquee-items: 9;
  }
  
  /* Image styling */
  .marquee-image {
    margin-right: 10px;
    width: 100px;
    height: 100px;
  }
  
  /* Keyframes for the scrolling animation */
  @keyframes scrollAnimation {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  
  .marquee-text {
    font-size: 12px; /* Slightly larger font */
    /* font-weight: 600; */
    font-family: 'Arial', sans-serif; /* Choose a clean font */
    color: #333; /* Dark gray for readability */
    
    
   
    
   
}

/* .marquee-text:hover {
    background-color: #3498db; 
    color: white;
    transform: scale(1.05); 
} */

  
  
  .marquee-section-career {
    overflow: hidden;
    padding: 20px 0;
    background: #add7eb2b;
  }
  
  .marquee-container-career {
    display: flex;
    white-space: nowrap;
  }
  
  .marquee-content-career {
    display: flex;
    animation: marquee 20s linear infinite reverse; /* Scroll without reverse */
  }


  /* .marquee-content-career-right {
    display: flex;
    animation: marquee 20s linear infinite reverse; 
  }
   */
  .marquee-item-career {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
  }
  
  .marquee-image-career {
    width: 45pxpx;
    height: 40px;
    margin-bottom: 5px;
  }
  
  /* Animation for continuous scrolling effect */
  @keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Shift by 50% to ensure the loop */
    }
  }


  
  