/* General Styles */
.logos-section2 {
    height: 20vh;
    background-color: #000000;
}

.logo2 {
    display: inline-block;
    width: 60px; /* Reduced width */
    height: 60px; /* Reduced height */
    background-color: #55555550;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px; /* Further reduced horizontal margin */
    transition: transform 0.3s ease;
}

.logo2:hover {
    transform: translateY(-5px); /* Lift on hover */
}

.logo2 img {
    width: 40px; /* Reduced image width */
    height: 40px; /* Reduced image height */
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile view styles */
@media (max-width: 768px) {
    .logos-section2 .row {
        flex-direction: row; /* Ensure logos stack horizontally */
        flex-wrap: nowrap; /* Prevent wrapping to next line */
        gap: 2px; /* Minimal gap between logos */
    }
    
    .logo2 {
        margin-bottom: 0 !important; /* Remove bottom margin */
    }
    
    .logo2 img {
        max-width: 40px; /* Consistent image size */
    }
    
    .logos-section2 .row {
        justify-content: center; /* Center logos on mobile */
    }
}
