/* =============================================
   TESTIMONIALS SECTION STYLES
   ============================================= */

.paragraph--type--testimonials-section {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    padding-top: 1rem;
}

/* Background Heading */
.testimonials-bg-heading {
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Inter', sans-serif;
  text-align: center;
  background: linear-gradient(1deg, #f2f2f2 29%, #dcdcdc 53%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Swiper Slider */
.testimonials-slider {
    padding: 60px 0 100px;
    position: relative;
}

/* Testimonial Card */
.testimonial-card {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Card Header */
.tc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.tc-rating-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tc-rating-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
}

.tc-rating-label {
    font-size: 14px;
    font-weight: 400;
    color: #A0AEC0;
}

.tc-stars {
    display: flex;
    gap: 2px;
}

.tc-stars i,
.tc-stars .star {
    font-size: 14px;
    color: #30A3FF;
}

.tc-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.tc-info {
    display: flex;
    flex-direction: column;
}

.tc-name {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin: 0;
}

.tc-designation {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.tc-image img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

/* Quote Section */
.tc-quote-container {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    margin-top: 10px;
    flex-grow: 1;
}

.tc-quote-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

.tc-quote-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    opacity: 0.15;
}

.tc-quote-icon svg {
    width: 30px;
    height: 30px;
    fill: #2D3748;
}

/* Navigation Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #E2E8F0;
    opacity: 1;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: #2D3748;
    border-color: #2D3748;
    position: relative;
    display: block;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #2D3748;
    border-radius: 50%;
}

.testimonials-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2D3748;
}

.testimonials-nav-btn:hover {
    background: #F8F9FA;
    border-color: #CBD5E0;
}

.testimonials-nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonials-navigation-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.nav-line {
    flex-grow: 1;
    height: 1px;
    background: #E2E8F0;
}

.swiper-pagination-testimonials {
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 991px) {
    .testimonials-bg-heading {
        font-size: 120px;
        top: 30px;
    }

    .testimonials-slider {
        padding: 40px 0 60px;
    }

    .tc-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }

    .tc-profile {
        text-align: left;
    }
}