/* Testimonial Slider Widget */
.noxx-testimonial-slider-widget {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.noxx-testimonial-slider-container {
    position: relative;
    width: 100%;
}
.noxx-company-logo {
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.noxx-company-logo img {
    width: 90px;
    height: auto;
    object-fit: contain;
    max-width: initial;
    max-height: initial;
}
.noxx-testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.noxx-testimonial-slide {
    flex: 0 0 auto;
    max-width: 648px;
    width: 648px;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 20px 20px 100px 0px rgba(44, 60, 80, 0.10);
    transition: all 0.3s ease;
    position: relative;
}

.noxx-testimonial-content {
    font-size: 18px;
    line-height: 1.6;
    color: #4D5F6F;
    margin-bottom: 25px;
    order: 3;
}

.noxx-testimonial-author {
    display: flex;
    flex-direction: column;
}

.noxx-author-name {
    font-size: 20px;
    font-weight: 700;
    color: #12153A;
    margin-bottom: 5px;
    order: 1;
}

.noxx-author-function {
    font-size: 16px;
    color: #4D5F6F;
    font-weight: 300;
    margin-bottom: 15px;
    order: 2;
}

.noxx-company-info {
    order: 4;
}

.noxx-company-name {
    font-size: 18px;
    font-weight: 600;
    color: #12153A;
}

.noxx-company-logo {
    position: absolute;
    right: 57px;
    bottom: -29px;
    border-radius: 50%;
    background-color: #E9E8F1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Navigation Dots */
.noxx-testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.noxx-testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D9D9D9;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.noxx-testimonial-dots .dot.active {
    background-color: #00B8B4;
}

.noxx-testimonial-content {
    margin: auto;
    margin-bottom: 70px;
    margin-top: 35px;
}
.noxx-testimonial-slide {
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    padding: 50px;
    box-shadow: 20px 20px 100px 0px rgba(44, 60, 80, 0.10);
}
.noxx-testimonial-slide {
    min-height: 432px !important;
}
.noxx-testimonial-content {
    min-height: 140px;
}
.noxx-testimonial-dots {
    margin-top: 70px;
}
/* Responsive Styles */
@media (max-width: 767px) {
    .noxx-testimonial-slider-container {
        display: flex;
        justify-content: center;
    }
    
    .noxx-testimonial-slider {
        width: auto;
        max-width: 100%;
    }
    
    .noxx-testimonial-slide {
        width: 80vw;
        max-width: 80vw;
        padding: 20px;
    }
    
    .noxx-testimonial-content {
        font-size: 16px;
    }
    
    .noxx-author-name {
        font-size: 18px;
    }
    
    .noxx-author-function {
        font-size: 14px;
    }
    
    .noxx-company-name {
        font-size: 16px;
    }
    
    .noxx-company-logo {
        right: 20px;
        bottom: -40px;
        width: 80px;
        height: 80px;
    }
    .noxx-testimonial-slider{
        justify-content: flex-start !important;
    }
    .noxx-company-logo img{
        width: 60px;
        height: 60px;
    }
} 