
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --warning-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            
            --white-bg: #ffffff;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --border-light: rgba(0, 0, 0, 0.08);
            --border-medium: rgba(0, 0, 0, 0.12);
            --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.12);
            
            --text-primary: #1a1a1a;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(240, 147, 251, 0.03));
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
            animation: bgFloat 30s ease-in-out infinite;
        }

        @keyframes bgFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, -30px) rotate(180deg); }
        }

        .testimonials-container {
            position: relative;
            z-index: 2;
        }

        /* Left Side - Title and Controls */
        .testimonials-header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* Navigation Controls */
        .testimonial-controls {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .control-btn {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: var(--white-bg);
            border: 2px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-secondary);
            font-size: 1.2rem;
            box-shadow: var(--shadow-light);
        }

        .control-btn:hover {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
        }

        .control-btn:active {
            transform: translateY(-1px);
        }

        /* Testimonials Slider */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
            padding: 20px;
        }

        .testimonial-card {
            min-width: 100%;
            background: var(--white-bg);
            border-radius: 24px;
            padding: 40px 35px;
            box-shadow: var(--shadow-medium);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--primary-gradient);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }

        /* Quote Icon */
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            font-size: 1.5rem;
        }

        /* Author Section */
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--light-bg);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
        }

        .testimonial-card:hover .author-avatar {
            transform: scale(1.05);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .author-info h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .author-info h6 {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            margin: 0;
        }

        /* Testimonial Text */
        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        /* Rating Stars */
        .rating {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .star {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        /* Slider Indicators */
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-light);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-gradient);
            transform: scale(1.2);
        }

        .indicator:hover {
            background: rgba(102, 126, 234, 0.5);
        }

        /* Multiple Cards View */
        .testimonials-grid {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonials-grid.active {
            display: grid;
        }

        .testimonials-slider.hidden {
            display: none;
        }

        /* View Toggle */
        .view-toggle {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .toggle-btn {
            padding: 12px 24px;
            border: 2px solid var(--border-light);
            border-radius: 25px;
            background: var(--white-bg);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .toggle-btn.active {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
        }

        .toggle-btn:hover:not(.active) {
            border-color: rgba(102, 126, 234, 0.3);
            background: rgba(102, 126, 234, 0.05);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .testimonials-header {
                text-align: center;
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .testimonial-controls {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonial-card {
                padding: 30px 25px;
            }

            .author-avatar {
                width: 60px;
                height: 60px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        

        /* Floating Animation */
        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Pulse Animation for Active Elements */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
            100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
        }