/* Testimonials Section Styles */
.testimonials-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

.testimonials-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Header Container */
.testimonials-header {
    display: flex;
    gap: 72px;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.testimonials-text-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.testimonials-heading {
    font-family: 'IvyOra Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 1;
    color: #005b68;
    margin: 0;
}

.testimonials-heading strong {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
}

.testimonials-description {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #403936;
    margin: 0;
}

.testimonials-note {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 1;
    color: #403936;
    margin: 0;
}

/* Arrow Container */
.testimonials-arrows {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.testimonials-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.testimonials-arrow:hover {
    opacity: 0.7;
}

.testimonials-arrow img {
    width: 46.107px;
    height: 30.58px;
    display: block;
}

/* Testimonials Cards Container */
.testimonials-cards-container {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-cards-container::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 32px 80px 32px;
    min-width: 357.33px;
    max-width: 357.33px;
    min-height: 394px;
    background-color: #005b68;
    border-radius: 4px 4px 200px 200px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    width: 100%;
}

.testimonial-quote-icon {
    flex-shrink: 0;
}

.testimonial-quote-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.testimonial-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

.testimonial-name {
    font-family: 'IvyOra Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

/* Testimonial Content */
.testimonial-content {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    flex: 1;
    overflow: hidden;
}

.testimonial-content p {
    margin: 0 0 16px 0;
    color: #ffffff;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

/* Responsive - Below 1200px: Switch to mobile layout */
@media (max-width: 1200px) {
    .testimonials-section {
        padding: 0 60px;
    }

    .testimonials-container {
        gap: 40px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testimonials-arrows {
        display: none;
    }

    .testimonials-text-container {
        gap: 16px;
    }

    .testimonials-heading {
        font-size: 24px;
    }

    .testimonials-description {
        line-height: 1.5;
    }

    .testimonials-note {
        line-height: 1.5;
    }

    .testimonials-cards-container {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 24px;
    }

    .testimonial-card {
        min-width: 262px;
        max-width: 262px;
        min-height: 402px;
        height: 402px;
        padding: 14.691px 23.505px 40px 23.505px;
        gap: 17.629px;
        border-radius: 2.938px 2.938px 146.907px 146.907px;
        flex-shrink: 0;
    }

    .testimonial-card:hover {
        transform: scale(1.02);
    }

    .testimonial-quote-icon img {
        width: 29.381px;
        height: 29.381px;
    }

    .testimonial-info {
        gap: 5.876px;
    }

    .testimonial-name {
        font-size: 16px;
        font-weight: 700;
        font-style: italic;
    }

    .testimonial-content {
        line-height: 1.5;
    }
}

/* Mobile - Below 768px */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 0 16px;
    }
}
