/* Feature: Premium Glassmorphism Testimonial Grid with Hover Effects */

.testimonials-section {
    padding: 80px 50px;
    background-color: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #38bdf8;
}

.section-header p {
    color: #aaaaaa;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rating-stars {
    color: #facc15; /* Yellow glowing stars */
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.client-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.company-name {
    color: #38bdf8;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 20px;
    }
    .section-header h2 {
        font-size: 28px;
    }
}