.video-testimonials {
    padding: 6rem 0;
    background-color: var(--primary);
    
}

.video-testimonials .wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}


.video-testimonials .content {
    width: 50%;
}

.video-testimonials .label {
    font-size: 11px;
    letter-spacing: 1px;
    color: #8eb6c8;
    display: block;
    margin-bottom: 18px;
}

.video-testimonials .content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.video-testimonials .content p {
    color: #c6d5df;
    line-height: 1.7;
    font-size: 15px;
}



.video-testimonials .card {
    background: #fff;
    color: #333;
    border-radius: 6px;
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.video-testimonials .logo {
    width: 90px;
    margin-bottom: 24px;
}

.video-testimonials .card p {
    line-height: 1.75;
    font-size: 14px;
    color: #4d4d4d;
    flex: 1;
}

.video-testimonials .author {
    margin-top: 35px;
}

.video-testimonials .author strong {
    display: block;
    font-size: 14px;
}

.video-testimonials .author span {
    font-size: 12px;
    color: #888;
}

.video-testimonials .slider {
    width: 100%;
    display: flex;
    gap: 20px;
    position: relative;
}

.video-testimonials .slider-container {
    position: relative;
    width: 100%;
}

.video-testimonials .slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.video-testimonials .slider-nav button {
    position: absolute;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #17384d;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    cursor: pointer;
    font-size: 18px;
    transition: .25s;
    pointer-events: auto;
}

.video-testimonials .slider-prev {
    left: -27px;
}

.video-testimonials .slider-next {
    right: -27px;
}

.video-testimonials .slider-nav button:hover {
    transform: scale(1.08);
}


.testimonial-video {
    width: 100%;
    aspect-ratio: 9 / 10;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 24px;
    background: #000;
}

@media (max-width: 1000px) {
    .video-testimonials  .wrapper{
        flex-direction: column;
        padding-inline: 8rem;
    }

    .video-testimonials .content,
    .video-testimonials .slider {
        width: 100%;
    }

    .video-testimonials .slider {
        flex-direction: column;
    }
}