/* HOME TESTIMONIALS */

.home-testimonials{
    position:relative;
    background:#000;
    overflow:hidden;
}

.home-testimonials .inner-section{
    position:relative;
    z-index:2;
}

.testimonial-heading{
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.testimonial-heading span{
    display:inline-block;
    color:#00c6ff;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.testimonial-heading p{
    color:#b5c0d0;
    font-size:16px;
    line-height:28px;
}

/* Added slight padding so hover transform doesn't get cut off by Swiper overflow */
.testimonialsSwiper {
    padding-top: 15px;
    padding-bottom: 50px; /* Room for pagination dots */
}

/* Ensure slides stretch to equal heights if content length varies */
.testimonialsSwiper .swiper-slide {
    height: auto; 
}

.testimonial-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:5px solid rgba(255,255,255,1);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:35px;
    height:100%;
    transition:.4s;
    overflow:hidden;
    margin-bottom:0px; /* Removed bottom margin, handled by Swiper padding */
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color: #06b453;
}

.quote-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    background: linear-gradient(135deg, #06b453, #048a3f);
}

.quote-icon i{
    color:#fff;
    font-size:24px;
}

.testimonial-card p {
    color: #d4deea;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    font-family: var(--font-02);
}

.testimonial-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:20px;
}

.client-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--font-03);
}

.client-info span {
    color: #06b453;
    font-size: 16px;
    font-family: var(--font-03);
}

.stars{
    color:#ffbf00;
    font-size:18px;
    letter-spacing:2px;
}

/* Swiper Pagination Dot styling to match dark theme */
.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.3;
}
.swiper-pagination-bullet-active {
    background: #06b453;
    opacity: 1;
}
.testimonialsSwiper .swiper-pagination-bullet-active{
    background: #05a14a !important;
    border: 2px solid #05a14a !important;
    width: 25px !important;
    height: 25px !important;
}
/* Responsive */
@media(max-width:991px){
    .testimonial-heading h2{
        font-size:34px;
    }
}

@media(max-width:767px){
    .home-testimonials{
        padding:70px 0;
    }
    .testimonial-heading h2{
        font-size:28px;
    }
}