        .testimonial-section {
            padding: 80px 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-container {
            background: #8a60b18e;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 50px 60px;
            position: relative;
            min-height: 350px;
            overflow: hidden;
        }

        .testimonial-wrapper {
            position: relative;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-slide {
            position: absolute;
            left: 100%;
            text-align: center;
            width: 100%;
            opacity: 0;
            transition: all 0.6s ease;
        }

        .testimonial-slide.active {
            position: relative;
            left: 0;
            opacity: 1;
        }

        .testimonial-slide.prev {
            left: -100%;
            opacity: 0;
        }

        .stars {
            font-size: 2rem;
            color: #f4cd59;
            margin-bottom: 25px;
            letter-spacing: 5px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: white;
            opacity: 0.95;
            margin-bottom: 30px;
            font-style: italic;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .testimonial-project {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }

        .testimonial-link {
            display: inline-block;
            color: #f4cd59;
            text-decoration: none;
            font-size: 1rem;
            transition: opacity 0.3s;
            border-bottom: 1px solid #f4cd59;
            padding-bottom: 2px;
        }

        .testimonial-link:hover {
            opacity: 0.7;
        }

        /* Navigation Arrows */
        .testimonial-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            padding: 0 10px;
            pointer-events: none;
        }

        .nav-arrow {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            pointer-events: all;
            font-size: 1.2rem;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        /* Dots Navigation */
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #f4cd59;
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-container {
                padding: 40px 30px;
                min-height: 400px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }
        }