

/*  Google Testimonial Page */

.bg-gradient {
    background: linear-gradient(126deg, #2872d1, #35dbb7);
}

.testimonial-card {
    transition: all 0.6s ease;
    overflow: hidden;
}

.testimonial-card .position-relative{
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card .hover-bg {
    opacity: 0;
    background: linear-gradient(126deg, #2872d1, #35dbb7);
    transition: opacity 0.6s ease;
    z-index: 0;
}

.testimonial-card:hover .hover-bg {
    opacity: 1;
}

.testimonial-card:hover p,
.testimonial-card:hover h5,
.testimonial-card:hover small {
    color: #fff !important;
}

.testimonial-card:hover img {
    border-color: #fff !important;
}