.logo-section {
    padding: 75px 0; /* Adjust the padding as needed */
    background: #ffffff; /* Or any background color as needed */
  }

  .logo-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .client-logo {
    max-width: 120px; /* Maximum logo width, adjust as needed */
    max-height: 50px; /* Maximum logo height, adjust as needed */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    margin: 0 10px; /* Space out logos evenly */
    /* opacity: 0.7;  */
    transition: opacity 0.3s ease-in-out; /* Smooth transition for hover effect */
  }
  
  .client-logo:hover {
    opacity: 1; /* Full opacity on hover */
  }
  
  @media (max-width: 1024px) {
    .logo-section .container {
        display: flex;
        flex-direction: row;
    }

    .client-logo {
        max-width: 75px;
    }
  }

  @media (max-width: 800px) {
    .logo-section .container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .client-logo {
        max-width: 125px;
        padding: 30px;
    }
  }