/* Testimonial Section Styles */
.testimonials-sec {
    background-color: #f8f9fa;
}

.testimonials-sec .head-sec h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
}

.testimonials-sec .head-sec h2 span {
    color: #6c757d;
}

.testimonials-sec .sec-line {
    width: 50px;
    height: 3px;
    background-color: #d1b06b;
    margin-top: 10px;
}

.testimonial-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-card .avatar-1 {
    background-color: #293e5e;
}

.testimonial-card .avatar-2 {
    background-color: #5e4b29;
}

.testimonial-card .avatar-3 {
    background-color: #295e4e;
}

.testimonial-card .avatar-4 {
    background-color: #5e2929;
}

.testimonial-card .avatar-5 {
    background-color: #c9af7e;
}

.testimonial-card .avatar-6 {
    background-color: #3b3b3b;
}

.testimonial-card h5 {
    color: #2c2c2c;
}

.testimonial-card .stars {
    color: #d1b06b;
}

.testimonial-card .card-text {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.testimonial-card .card-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.footer-p-3 {
    padding: 2rem 3rem !important;
}

@media screen and (max-width:567px) {
    .testimonials-sec {
        background-color: #f8f9fa;
        padding: 0px;
    }

    .testimonials-sec .head-sec h2 {
        font-size: 30px;
        font-weight: 700;
        color: #212529;
    }

    .footer-p-3 {
        padding: 1rem 1rem !important;
    }

}