.testimonial-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 24px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            height: 500px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .profile-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 30px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            object-fit: cover;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .testimonial-text {
            color: #ffffff;
            font-size: 32px;
            font-weight: 300;
            line-height: 1.4;
            text-align: center;
            max-width: 900px;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }

        .author-name {
            color: #cccccc;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-arrows:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .prev {
            left: 30px;
        }

        .next {
            right: 30px;
        }

        .dots-container {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ffffff;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-section {
                margin: 0 20px;
                border-radius: 16px;
            }

            .slider-container {
                height: 400px;
            }

            .slide {
                padding: 40px 30px;
            }

            .testimonial-text {
                font-size: 14px;
                max-width: 250px;
            }

            .profile-image {
                width: 60px;
                height: 60px;
                margin-bottom: 20px;
            }

            .nav-arrows {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .prev {
                left: 20px;
            }

            .next {
                right: 20px;
            }
        }