/* ── Appstechy Testimonial Carousel Styles ── */

.appstechy-testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* ── Heading / Title styling ── */
.appstechy-testimonial-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.appstechy-testimonial-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1.3;
    color: #333333;
    font-family: inherit;
}

.appstechy-testimonial-title-highlight {
    color: #0176ab; /* Primary accent */
    transition: color 0.3s ease;
}

.appstechy-testimonial-divider {
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0176ab;
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── Grid/Layout styling ── */
.appstechy-testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.appstechy-testimonial-col-image {
    flex: 1 1 400px;
    max-width: 623px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appstechy-testimonial-image-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.appstechy-testimonial-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

.appstechy-testimonial-col-carousel {
    flex: 1 1 630px;
    max-width: 630px;
    width: 100%;
}

/* Layout: Reversed (Image on the right) */
.appstechy-testimonial-grid.layout-reversed {
    flex-direction: row-reverse;
}

/* Layout: Stacked/No Image */
.appstechy-testimonial-grid.layout-no-image .appstechy-testimonial-col-carousel {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Swiper Testimonial Box/Card styling ── */
.appstechy-testimonial-card-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 50px 40px 50px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.appstechy-testimonial-card-container:hover {
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08); */
}

.appstechy-testimonial-carousel-wrapper .appstechy-swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* Individual Slide spacing & typography */
.appstechy-testimonial-slide {
    width: 100%;
    box-sizing: border-box;
}

.appstechy-testimonial-content {
    margin-bottom: 25px;
}

.appstechy-testimonial-text {
    font-size: 17px;
    line-height: 26px;
    font-style: italic;
    color: #4e4e4e;
    margin: 0;
    word-break: break-word;
}

.appstechy-testimonial-footer {
    display: block;
}

.appstechy-testimonial-cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.appstechy-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
    margin-bottom: 4px;
}

.appstechy-testimonial-title-company {
    font-size: 14px;
    font-weight: 500;
    color: #0176ab;
}

/* ── Custom Pagination Dots styling (inside card) ── */
.appstechy-testimonial-card-container .appstechy-swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.appstechy-testimonial-card-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bce2f5;
    opacity: 1;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appstechy-testimonial-card-container .swiper-pagination-bullet-active {
    background-color: #003b5c;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ── Responsive adjustments ── */
@media (max-width: 991px) {
    .appstechy-testimonial-card-container {
        padding: 40px 40px 30px 40px;
    }
    
    .appstechy-testimonial-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .appstechy-testimonial-grid {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .appstechy-testimonial-col-image,
    .appstechy-testimonial-col-carousel {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .appstechy-testimonial-card-container {
        padding: 30px 25px 25px 25px;
    }
    
    .appstechy-testimonial-title {
        font-size: 28px;
    }
    
    .appstechy-testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
}
