/* ********* Testimonial ********* */
.testimonialUi_2340 .testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: none;
}

.testimonialUi_2340 .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Decorative elements */
.testimonialUi_2340 .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.testimonialUi_2340 .shape-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
}

.testimonialUi_2340 .shape-2 {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 40px;
}

.testimonialUi_2340 .card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 12px 13px 60px;
    text-align: center;
    position: relative;
}

.testimonialUi_2340 .card-2 .card-header {
    background: linear-gradient(135deg, #7209b7, #3a0ca3);
}

.testimonialUi_2340 .card-body {
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.testimonialUi_2340 .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    background: white;
    padding: 30px 20px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonialUi_2340 .client-info h4 {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.3rem;
}

.testimonialUi_2340 .client-info p {
    margin: 5px 0 0;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonialUi_2340 .client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonialUi_2340 .testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}