/* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 C50,0 50,100 100,100 L100,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.1;
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials .section-title::after {
            background: white;
        }

        .testimonials-carousel {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            background: #fff;
            border: 1px solid #007bff;
            color: #007bff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.2s, color 0.2s;
            box-shadow: 0 2px 8px rgba(0,123,255,0.08);
        }

        .carousel-btn:hover {
            background: #007bff;
            color: #fff;
        }

        .testimonials-grid {
            display: flex;
            gap: 1.5rem;
            min-width: 250px;
            max-width: 900px;
            justify-content: center;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,123,255,0.10);
            padding: 2.2rem 1.7rem;
            min-width: 250px;
            max-width: 350px;
            margin: 0 auto;
            text-align: left;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1.5px solid #e3f0ff;
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 0 12px 36px rgba(0,123,255,0.16);
            border-color: #007bff;
        }

        .testimonial-text {
            font-size: 1.08rem;
            color: #333;
            font-style: italic;
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1.2rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .author-avatar img {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.1rem;
            border: 2.5px solid #007bff;
            box-shadow: 0 2px 8px rgba(0,123,255,0.10);
        }

        .author-info h4 {
            margin: 0;
            font-size: 1.13rem;
            font-weight: 700;
            color: #007bff;
        }

        .author-info p {
            margin: 0;
            font-size: 0.97rem;
            color: #555;
        }

        .testimonial-rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-left: 0.5rem;
            letter-spacing: 1px;
            display: block;
        }

        .testimonial-cta {
            text-align: center;
            margin-top: 2.5rem;
        }

        .testimonial-cta h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: #007bff;
        }

        /* Responsive Testimonials Section */
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .testimonial-card {
                padding: 1.2rem;
            }
            .author-avatar {
                width: 40px;
                height: 40px;
            }
        }
        @media (max-width: 480px) {
            .testimonial-card {
                padding: 0.7rem;
            }
            .author-info h4 {
                font-size: 1rem;
            }
        }
        @media (max-width: 900px) {
            .testimonials-grid {
                flex-direction: column;
                align-items: center;
            }
        }