.tw-testinomials_carousal {
    width: 100%;
}
/* Container */
.testimonial-slider-container {
    max-width: 1170px;
    margin: 0 auto;
    /* padding: 20px; */
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Slider */
.testimonial-slider {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Slides Container */
.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Slide */
.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

/* Content */
.testimonial-content {
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.testimonial-image img {
    width: 228px;
    height: 46px;
    object-fit: contain;
}

/* Text */
.testimonial-text {
    max-width: 1170px;
    margin: 0 auto;
}

.testimonial-text p {
    color: #4B5565;
    text-align: center;
    font-family: 'DM Sans';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.testimonial-text blockquote {
    box-shadow: none;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    width: fit-content;
    margin: auto;
    max-width: 100%;
}

.testimonial-text blockquote:before,
.testimonial-text blockquote:after {
    content: '"';
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
}

.testimonial-text blockquote:before {
    left: -20px;
    top: -10px;
}

.testimonial-text blockquote:after {
    right: -20px;
    bottom: -20px;
}


.testimonial-author-details {
    display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
}

.testimonial-author h4 {
    margin: 0;
    color: #001219;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 8px;
}

.testimonial-author .company, .testimonial-author .destination  {
    color: #4B5565;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    margin: 0;
}

/* Slider Controls */
.slider-controls {
    position: relative;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Navigation Arrows */
.slider-arrow {
    background: transparent;
    box-shadow: none !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    display: none;
}

.slider-arrow:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.slider-arrow:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #D0D5DD;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #0A7CD7;
    width: 24px;
}

.slider-dot:hover {
    background: #0A7CD7;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-slider-container {
        max-width: 90%;
    }


    .testimonial-text blockquote {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-container {
        padding: 10px;
        max-width: 95%;
    }

    /* Slides Container */
.testimonial-slides {
align-items: center;
}

    .testimonial-image img {
        height: 36px;
    }

    .testimonial-text blockquote {
        font-size: 16px;
        padding: 0 15px;
    }

    .testimonial-author h4 {
        font-size: 18px;
    }

    .testimonial-author .company {
        font-size: 15px;
    }

    .testimonial-author .destination {
        font-size: 13px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-container {
        padding: 5px;
        max-width: 100%;
    }

    .testimonial-image img {
        height: 26px;
    }

    .testimonial-text blockquote {
        font-size: 15px;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .testimonial-text blockquote:before,
    .testimonial-text blockquote:after {
        font-size: 30px;
    }

    .testimonial-author h4 {
        font-size: 16px;
    }

    .testimonial-author .company {
        font-size: 14px;
        margin: 3px 0;
    }

    .testimonial-author .destination {
        font-size: 12px;
    }

    .slider-controls {
        gap: 10px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }
}