.testimonials {
    position: relative;
    padding: 0 0 60px 0;
    background-color: #f5f5f5;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    background: url('../images/bg-pattern2.png') no-repeat center bottom;
    filter: blur(200px);
    z-index: 0;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.28px;
    line-height: normal;
    margin: 0 auto;
}

.title-highlight {
    color: #340061;
    font-weight: 600;
}

.title-normal {
    color: transparent;
    -webkit-text-stroke: 1px #340061;
    font-weight: 600;
}

.testimonials-grid {
    width: 100%;
    /* max-width: 1240px; */
    height: 332px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.testimonial-card {
    width: 610px;
    height: 332px;
    background: rgba(255, 255, 255, 0.03);
    /* border: 0.5px solid; */
    /* border-image: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%) 1; */
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.testimonial-image {
    width: 220px;
    height: 332px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.testimonial-content {
    width: 310px;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    flex-shrink: 0;
}

.testimonial-quote {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #231F20;
    opacity: 0.6;
    font-style: normal;
    margin: 0;
    width: 310px;
    height: 125px;
    display: flex;
    align-items: flex-start;
}

.testimonial-footer {
    width: 310px;
    height: 47px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.star-rating {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    width: 94.45px;
    height: 14px;
}

.star {
    width: 15.69px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.testimonial-author {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #231F20;
    font-style: normal;
    width: 310px;
    height: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        padding: 0 50px;
    }

    .testimonials-section {
        height: auto;
        min-height: 505px;
        padding: 50px 0;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .testimonials-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .testimonial-card {
        width: 100%;
        max-width: 610px;
    }

    .testimonials-section {
        height: auto;
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 16px;
    }

    .testimonials-header {
        margin-bottom: 60px;
    }

    .testimonials-title {
        font-size: 42px;
        letter-spacing: -0.8px;
    }

    .testimonial-card {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .testimonial-image {
        width: 100%;
        height: 200px;
    }

    .testimonial-image img {
        border-radius: 8px;
    }

    .testimonial-content {
        height: auto;
        gap: 20px;
        width: 100%;
    }

    .testimonial-quote {
        width: 100%;
        height: auto;
    }

    .testimonial-footer {
        width: 100%;
        height: auto;
    }

    .testimonial-author {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
        line-height: 36px;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testimonials-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .view-more-btn {
        width: 140px;
        font-size: 14px;
        padding: 16px 24px;
    }

    .testimonial-quote {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-author {
        font-size: 16px;
        line-height: 24px;
    }
}