.slider-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        /* Slides */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* Background layers with diagonal mask */
        .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide-background::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: inherit;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            opacity: 0.9;
            z-index: 2;
        }

        /* Individual slide backgrounds */
        .slide:nth-child(1) .slide-background {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .slide:nth-child(2) .slide-background {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .slide:nth-child(3) .slide-background {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .slide:nth-child(4) .slide-background {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .slide:nth-child(5) .slide-background {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        /* Diagonal transition overlay */
        .diagonal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
            z-index: 3;
            pointer-events: none;
        }

        /* Content */
        .slide-content {
            position: relative;
            z-index: 4;
            max-width: 900px;
            padding: 60px;
            color: var(--text-light);
            text-align: left;
        }

        .quote-mark {
            font-size: 120px;
            line-height: 0.8;
            opacity: 0.3;
            font-family: 'Space Mono', monospace;
            margin-bottom: 20px;
            display: block;
            animation: slideInFromLeft 0.6s ease-out forwards;
        }

        .testimonial-text {
            font-size: 28px;
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: slideInFromLeft 0.8s ease-out forwards;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: slideInFromLeft 0.8s 0.2s ease-out forwards;
            opacity: 0;
        }

        .author-details {
            border-left: 3px solid rgba(255, 255, 255, 0.6);
            padding-left: 20px;
        }

        .author-name {
            font-size: 22px;
            font-weight: 600;
            font-family: 'Space Mono', monospace;
            margin-bottom: 5px;
        }

        .author-position {
            font-size: 16px;
            opacity: 0.9;
            font-style: italic;
        }

        /* Dot Navigation */
        .dot-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .dot.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        /* Arrow Controls */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-left {
            left: 30px;
        }

        .arrow-right {
            right: 30px;
        }

        .arrow::before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
        }

        .arrow-left::before {
            border-width: 10px 15px 10px 0;
            border-color: transparent white transparent transparent;
            margin-right: 3px;
        }

        .arrow-right::before {
            border-width: 10px 0 10px 15px;
            border-color: transparent transparent transparent white;
            margin-left: 3px;
        }

        /* Progress indicator */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 10;
        }

        .progress-fill {
            height: 100%;
            background: white;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slider-wrapper {
                height: 500px;
            }

            .slide-content {
                padding: 40px 30px;
            }

            .testimonial-text {
                font-size: 22px;
            }

            .quote-mark {
                font-size: 80px;
            }

            .arrow {
                width: 50px;
                height: 50px;
            }

            .arrow-left {
                left: 15px;
            }

            .arrow-right {
                right: 15px;
            }
        }