.testimonial-slider {
    max-width: 1200px;
    width: 100%;
    background-image: linear-gradient(45deg, #0020fd17, transparent);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-slider h2 {
    color: #07125e;
    font-weight: 500;
    font-size: 42px;
    text-decoration: underline 1px;
    margin-bottom: 0;
}

.testimonial-list {
    display: flex;
    overflow: hidden;
}

.testimonial {
    flex: 1 0 100%;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial .bi-quote {
    font-size: 4rem;
    color: var(--sunglow);
    opacity: 0.75;
}

.testimonial blockquote {
    font-size: 22px;
    font-weight: 100;
    color: black;
    font-family: sans-serif;
    line-height: 35px;
}

.user-info {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-details .name {
    font-size: 20px;
    font-weight: 500;
    color: #ffd706;
}

.user-details .company {
    color: var(--muted-color);
}


/* button test-botigation */

.test-bot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--paynes-gray);
    transition: 0.3s;
    opacity: 0;
}

.testimonial-slider:hover .test-bot {
    opacity: 1;
}

.test-bot:hover {
    background-color: var(--dark-cyan);
    color: var(--light-color);
}

.test-bot.back {
    left: 10px;
}

.test-bot.go {
    right: 10px;
}


/* dot test-botigation */

.dots-container {
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-inline: 5px;
    background-color: var(--dot-color);
    transition: width 0.5s;
}

.dot.active {
    width: 30px;
    background-color: var(--paynes-gray);
}