.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}


.quote-icon {
    opacity: 0.7;
}

.testimonial-text {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #333;
}

/* .testimonial-text p:before {
    content: "“";
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.2);
    font-family: Georgia, serif;
    position: absolute;
    left: 30px;
    top: 30px;
    line-height: 1;
} */

.testimonial-text p {
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.author-title {
    font-size: 0.95rem;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .author-photo .photo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 1.2rem !important;
        padding-left: 15px;
    }
    
    .testimonial-text p:before {
        left: 25px;
        top: 25px;
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 25px 20px !important;
    }
    
    .author-photo .photo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .testimonial-text p {
        font-size: 1.1rem !important;
        padding-left: 10px;
    }
    
    .testimonial-text p:before {
        left: 20px;
        top: 20px;
        font-size: 2.5rem;
    }
}