    /* Main container styles */



section.our_clients .section-title{
   text-align: center; 
}

    section.our_clients h2 {
        display: inline-block;
        padding-bottom: 20px;
        position: relative;
        text-transform: capitalize;
        z-index: 1;
        font-size: 40px;
    }

    section.our_clients h2::before {
        background: #00a01d none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 2px;
        left: 50%;
        margin-left: -25px;
        position: absolute;
        width: 50px;
    }


    .clients-slider-container {
        max-width: 1200px;
        margin: 40px auto;
        position: relative;
        overflow: hidden;
    }

    /* Track for the sliding logos */
    .clients-track {
        display: flex;
        width: 100%;
        transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
        /* Easing function for smoother animation */
    }

    /* Individual logo slide */
    .client-slide {
        flex: 0 0 calc(20% - 40px);
        min-width: 180px;
        height: 100px;
        margin: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .client-slide img {
        max-width: 100%;
        max-height: 180px;
        /*filter: grayscale(100%);*/
        /*opacity: 0.7;*/
        transition: all 0.3s ease;
    }

    .client-slide img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Navigation controls */
    .slider-controls {
        /*display: flex;*/
        display: none;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .control-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #f5f5f5;
        border: 1px solid #e0e0e0;
        color: #333;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .control-btn:hover {
        background-color: #e0e0e0;
        transform: scale(1.05);
    }

    .control-btn:active {
        transform: scale(0.98);
    }

    /* Progress indicator dots */
    .slider-progress {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 54px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .progress-dot.active {
        background-color: #666;
        transform: scale(1.2);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .client-slide {
            flex: 0 0 calc(25% - 40px);
        }
    }

    @media (max-width: 768px) {
        .client-slide {
            flex: 0 0 calc(33.333% - 40px);
        }
    }

    @media (max-width: 576px) {
        .client-slide {
            flex: 0 0 calc(50% - 40px);
        }
    }