/* Company Slider Section */
.company-slider {
    text-align: center;
    padding: 40px 0;
    background-color: #fff; /* Change background to white */
}

.company-title-heading {
    font-size: 28px;
    margin-bottom: 20px; /* Add some space between the text and the slider */
    color: #333;
    padding-bottom: 40px;
}

.slider-container {
    width: 90%;
    position: relative;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box {
    background-color: transparent; /* Remove white box */
    padding: 0; /* Remove padding to eliminate extra space around the logos */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px; /* Adjust the width of the logo box as needed */
    height: 150px; /* Adjust the height of the logo box */
}

.logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure the logos fit properly */
}

.swiper-button-next, .swiper-button-prev {
    color: #333; /* Change the button color to match the overall theme */
}
