/* Testimonial Flip Effect Styles */

/* Testimonial Card Container */
.testimonial-card {
    perspective: 1000px;
    height: 300px;
    margin: 2rem 0;
    position: relative;
}

/* Testimonial Card Inner */
.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Flip the card when hovered */
.testimonial-card:hover .testimonial-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back sides */
.testimonial-front, .testimonial-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Style the front side */
.testimonial-front {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Style the back side */
.testimonial-back {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotateY(180deg);
}

/* Testimonial Text */
.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* Testimonial Author */
.testimonial-author {
    font-weight: 600;
    color: var(--light-purple);
}

/* Testimonial Icon */
.testimonial-icon {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Testimonial Rating */
.testimonial-rating {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Testimonial Date */
.testimonial-date {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Testimonial Source */
.testimonial-source {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
}

.testimonial-source i {
    margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-card {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        height: 400px;
    }
    
    .testimonial-front, .testimonial-back {
        padding: 1.5rem;
    }
}
