.section-testimonial {
    width: 100%;
    padding: 2rem 1.5rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .testimonial-card-wrapper {
        width: 100%;
        max-width: 70rem;
        background-color: rgba(33, 10, 83, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 2rem;
        padding: 3.5rem 2rem 2.5rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-icon {
    width: 3.5rem;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2rem 0;
        max-width: 52rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.author-name {
    font-size: 1.125rem;
    color: #b3e4bd;
}

.author-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
        transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.25rem;
    width: 3rem;
        height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #b3e4bd;
    color: #0a132e;
    border-color: #b3e4bd;
}

.prev-btn {
    left: -1rem;
}

.next-btn {
    right: -1rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
        margin-top: 2rem;
    justify-content: center;
}

.dot {
    width: 0.65rem;
        height: 0.65rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #b3e4bd;
    width: 1.75rem;
    border-radius: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 48rem) {
    .compliance-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .compliance-badge-circles {
            width: 16rem;
            height: 16rem;
        }

        .compliance-list li {
            text-align: left;
        }

        .testimonial-card-wrapper {
            padding: 2.5rem 1rem 2rem;
            border-radius: 1.25rem;
        }
    .testimonial-item {
        padding: 0 0.5rem;
    }

    .carousel-btn {
        display: none;
    }
}
