.kian-testimonials-slider-wrapper {
    position: relative;
    width: 100%;
}

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

.kian-testimonials-slide {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kian-testimonials-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.kian-testimonials-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.kian-testimonials-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.kian-testimonials-stars {
    display: inline-block;
}

.kian-testimonials-stars img {
    width: 250px;
    height: auto;
    display: block;
}

.kian-testimonials-subheading {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'GeoSansLight', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Kerning 100 */
    margin-bottom: 30px;
    line-height: 1.4;
}

.kian-testimonials-heading {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    font-family: 'GeoSansLight', sans-serif;
    text-transform: uppercase;
}

.kian-testimonials-description {
    color: #ffffff;
    font-size: 18px;
    font-family: 'GeoSansLight', sans-serif;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.kian-testimonials-bottom-bar {
    background-color: #6b7a5d;
    padding: 15px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: -30px auto 0;
}

.kian-testimonials-bottom-link {
    color: #ffffff;
    text-decoration: underline !important;
    font-size: 18px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.kian-testimonials-bottom-link:hover {
    opacity: 0.8;
}

/* Slick Slider Dots Customization */
.kian-testimonials-slider-wrapper .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 3;
}

/* Hide dots when there's only one slide */
.kian-testimonials-slider-wrapper.single-slide .slick-dots {
    display: none !important;
}

.kian-testimonials-slider-wrapper .slick-dots li {
    margin: 0;
    padding: 0;
}

.kian-testimonials-slider-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kian-testimonials-slider-wrapper .slick-dots li button:before {
    display: none;
}

.kian-testimonials-slider-wrapper .slick-dots li.slick-active button {
    background-color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .kian-testimonials-slide {
        min-height: 400px;
    }

    .kian-testimonials-slide-content {
        padding: 40px 20px;
    }

    .kian-testimonials-subheading {
        font-size: 18px;
    }

    .kian-testimonials-description {
        font-size: 14px;
    }

    .kian-testimonials-bottom-bar {
        padding: 15px 20px; 
        align-items: flex-start;
    }

    .kian-testimonials-bottom-link {
        font-size: 14px;
    }

    .kian-testimonials-stars img {
        max-width: 150px;
    }
}

