.testimonial {
    background-color: #121212;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-title {
    font-size: 36px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 30px;
}

.testimonial-controls {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-content {
    display: none;
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-content.active {
    display: block;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    color: #ff5722;
}

.author-role {
    font-size: 14px;
    color: #ccc;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
}

.quote-symbol {
    font-size: 40px;
    color: #ff5722;
    position: absolute;
    top: -20px;
    left: -20px;
}

.testimonial-controls button {
    background-color: transparent;
    border: 2px solid #ff5722;
    color: #ff5722;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.testimonial-controls .prev-slide {
    left: 20px;
}

.testimonial-controls .next-slide {
    right: 20px;
}

.testimonial-controls button:hover {
    background-color: #ff5722;
    color: #fff;
}

.testimonial-controls button:focus {
    outline: none;
}

@media (max-width: 768px) {
    .testimonial-slider {
        width: 90%;
    }

    .testimonial-content {
        max-width: 100%;
    }

    .testimonial-title {
        font-size: 28px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-role {
        font-size: 12px;
    }
}

.testimonial-content {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .testimonial-content {
        margin-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-content {
        margin-right: 15px;
    }
}

@media (min-width: 1024px) {
    .testimonial-content {
        margin-right: 20px;
    }
}
