.testimonials__container {
    width: 100%;
    padding: 40px 20px;

}
.testimonials__wrapper{
	    max-width: 1000px;
    margin-inline: auto;
}

.testimonials__title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    /* color: #2d3748; */
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.testimonials__swiper {
    width: 100%;
    height: 100%;
    padding: 30px 10px 60px;
}

.testimonials__slide {
    text-align: center;

    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.testimonials__slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonials__quote {
    font-size: 2.5rem;
    color: #058ee4;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonials__text {
    font-size: 1.2rem;
    line-height: 1.7;
    /* color: #4a5568; */
    margin-bottom: 30px;
    margin-inline: auto;

    font-weight: 400;
    max-width: 700px;
}

.testimonials__client {
    margin-top: auto;
}

.testimonials__client-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    /* color: #2d3748; */
    margin-bottom: 5px;
}

.testimonials__client-company {
    display: block;
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
}

.testimonials__pagination {
    bottom: 0;
}

.testimonials__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonials__pagination .swiper-pagination-bullet-active {
    background: #058ee4;
    opacity: 1;
    width: 30px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .testimonials__text {
        font-size: 1rem;
    }

    .testimonials__slide {
        padding: 30px 20px;
    }

    .testimonials__title {
        font-size: 1.8rem;
    }
}