/* Testimonial Section Implementation */

.testimonial-one {
    position: relative;
    display: block;
    background-color: #0d0124; /* Base dark color */
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* High contrast map overlay */
    z-index: -1;
}

.testimonial-one__carousel {
    margin-top: 50px;
}

/* Title Refinement */
.testimonial-one .block-title__tagline-wrapper {
    margin-bottom: 25px;
}

.testimonial-one .block-title__line {
    background-color: #6e54f3;
    border: none;
}

.testimonial-one .block-title__dot {
    border: 2px solid #0d0124; /* Match dark background */
}

.testimonial-one .section-title__title {
    font-size: 40px;
}

.testimonial-one .section-title__title span {
    color: #6e54f3;
}

.testimonial-one__single {
    position: relative;
    display: block;
    background-color: rgb(240, 244, 255); /* Light blue cards */
    border-radius: 5px;
    padding: 30px 30px 30px;
    transition: all 500ms ease;
    height: 100%;
}

.testimonial-one__single-inner {
    position: relative;
    display: block;
}

.testimonial-one__star {
    margin-bottom: 15px;
}

.testimonial-one__star i {
    font-size: 14px;
    color: #6e54f3; /* Primary purple color */
}

.testimonial-one__text {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Nunito', sans-serif;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.testimonial-one__client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-one__client-content {
    position: relative;
    display: block;
}

.testimonial-one__client-name {
    font-size: 20px;
    font-weight: 700;
    color: #070d1a;
    line-height: 24px;
    margin-bottom: 2px;
    font-family: 'Barlow', sans-serif;
}

.testimonial-one__client-title {
    font-size: 14px;
    font-weight: 500;
    color: #6e54f3;
}

.testimonial-one__quote {
    position: absolute;
    bottom: -10px;
    right: 0;
    opacity: 0.2;
}

.testimonial-one__quote span {
    font-size: 40px;
    color: #6e54f3;
}

/* Custom Dots for OwlCarousel */
.testimonial-one .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonial-one .owl-dots .owl-dot {
    display: inline-block;
}

.testimonial-one .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(110, 84, 243, 0.2);
    display: block;
    margin: 5px 7px;
    border-radius: 50%;
    transition: all 400ms ease;
}

.testimonial-one .owl-dots .owl-dot.active span {
    background: #6e54f3;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .testimonial-one .section-title__title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .testimonial-one {
        padding: 80px 0 80px;
    }
    
    .testimonial-one .section-title__title {
        font-size: 30px;
    }
    
    .testimonial-one__text {
        font-size: 16px;
    }
}
