/* Essential Swiper Styles Fallback */
.swiper {
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition: transform 0.3s ease;
}

.swiper-slide.swiper-slide-active {
    transform: translateY(-60px);
}

.tarteele-testimonial-wrapper {
    position: relative;
    padding: 30px 0 0;
    overflow: hidden;
}

.tarteele-testimonial-swiper {
    padding: 100px 20px 20px !important;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0.5;
    /* Faded side slides */
}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon svg {
    width: 50px;
    height: 50px;
    fill: #6B9EFF;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    color: #03060E;
    margin: 0;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.1px;
}

.author-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.36px;
    color: #03060E;
}

/* Navigation */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {
    .testimonial-navigation {
        transform: translateY(-50px);
    }
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #03060E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #03060E;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #6B9EFF;
    border-color: #6B9EFF;
    color: #fff;
}

.swiper-pagination-custom {
    font-size: 16px;
    font-weight: 600;
    color: #03060E;
    width: auto;
}