/* Testimonials Section Styling */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.testimonials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
}

.testimonials-header h2 span {
    color: #28a745;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding-top: 50px; /* Space for overlapping images */
}

/* Testimonial Card per Sample */
.testimonial-card {
    background: #0d2c23; /* Deep professional green */
    border-radius: 30px;
    padding: 60px 30px 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-img-box {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quote Icons */
.quote-icon {
    position: absolute;
    top: 20px;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

.quote-left { left: 40px; top: 10px; }
.quote-right { right: 40px; top: 10px; }

.testimonial-text {
    font-size: 16px;
    color: #e9ecef;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.testimonial-author h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}
