/* Testimonial Slider Styles */
.testimonial-slider-section {
    position: relative;
    padding-top: 37px;
    padding-bottom: 31px;
}

.testimonial-swiper {
    padding: 0 60px;
}

.testimonial-swiper .swiper-slide {
    text-align: center;
    padding: 20px 40px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.testimonial-swiper .swiper-slide-active {
    opacity: 1;
}

.testimonial-slider-section ::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0);
    width: 7px;
    height: 7px;
}

.testimonial-slider-section ::-webkit-scrollbar-thumb {
    background-color: var(--antique-gold);
}

.testimonial-slider-section ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.testimonial-slider-section ::-webkit-scrollbar-button {
    background-color: var(--antique-gold);
    height: 15px;
    display: none;
}

.testimonial-swiper .swiper-slide p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: 24px;
    font-weight: 500;
    max-width: 100%;
    /* height: 138px; */
}
.tst-card__text {
    margin: 0px 0px 10px;
    overflow: auto;
    color: rgba(13, 59, 76, 0.75);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
   height: 174px;
}
/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 20px;
}

.testimonial-stars i.fa-regular {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-swiper .swiper-slide h2 {
    color: var(--limestone-ivory);
    font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 24px;
    font-style: italic;
    max-width: 100%;
}

/* .testimonial-swiper .swiper-slide p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: 24px;
    font-weight: 500;
} */

/* Swiper Navigation Buttons */
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: var(--limestone-ivory);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.testimonial-swiper .swiper-pagination {
    bottom: 5px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: background 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--limestone-ivory);
}
.c4t-ornament {
    color: var(--antique-gold);
    font-family: "Source Serif Pro", Georgia, serif;
    /* color: #1F1F1F; */
    font-size: 21px;
    line-height: 1.75;
    margin: 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-swiper {
        padding: 0 20px;
    }

    .testimonial-swiper .swiper-slide {
        padding: 20px 10px;
    }

    .testimonial-swiper .swiper-slide h2 {
        font-size: 24px;
    }

    .testimonial-swiper .swiper-slide p {
        font-size: 16px;
    }

    .testimonial-swiper .swiper-button-next,
    .testimonial-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .testimonial-swiper .swiper-button-next::after,
    .testimonial-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}