/* Testimonials Page Specific Styles */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

/* Hero Section */
.testimonials-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    margin-bottom: 4rem;
}

.testimonials-hero h1 {
    font-family: sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #1961a0;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 115, 190, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 115, 190, 0.1);
    border-color: #1E73BE;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #1E73BE;
    opacity: 0.2;
    font-family: sans-serif;
    line-height: 1;
}

.testimonial-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-logo img {
    max-width: 200px;
    height: auto;
    max-height: 60px;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

blockquote {
    font-style: italic;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.testimonial-author {
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* CTA Section */
.testimonials-cta {
    background: linear-gradient(135deg, #1E73BE 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 4rem;
}

.testimonials-cta h2 {
    font-family: sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonials-cta .btn {
    background: white;
    color: #1E73BE;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.testimonials-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Staggered Animation for Testimonials */
.testimonial-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 100px 1rem 2rem;
    }
    
    .testimonials-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }
    
    blockquote {
        font-size: 1rem;
    }
    
    .testimonials-cta {
        padding: 3rem 2rem;
    }
    
    .testimonials-cta h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-hero h1 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-logo img {
        max-width: 150px;
    }
    
    .testimonials-cta {
        padding: 2rem 1rem;
    }
    
    .testimonials-cta h2 {
        font-size: 1.5rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }