﻿/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    padding-top: 60px;
    position: relative;
}

    /* Heading */
    .testimonials h2 {
        text-align: center;
        margin-bottom: 40px;
    }

        .testimonials h2 span {
            color: #3190E7;
        }

/* Carousel Wrapper */
.testimonials__carousel {
    display: flex;
    justify-content: space-evenly;
    width: 85%;
    margin: 0 auto;
}

/* Item */
.testimonials__item {
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

/* Card */
.testimonials__card {
    width: 15rem;
    height: 20rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 28px;
    background: white;
    padding: 20px;
    border-radius: 6px;
}

/* Avatar */
.testimonials__avatar {
    width: 90px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

/* Description */
.testimonials__desc {
    color: black;
    font-size: 14px;
    line-height: 1.6;
}

/* Name */
.testimonials__name {
    margin: -18px auto 0;
    background: #3190E7;
    padding: 8px 30px;
    border-radius: 12px;
    color: #fff;
    display: inline-block;
}
.animate-slideInRight {
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}