 .section6{
            width: 100%;
            margin-top: 3%;
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        /* Background image with opacity */
        .section6::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/waves-bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.02;
            z-index: -2;
        }

        /* Gradient overlay */
        .section6::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: -1;
        }

        /* Make sure your text content has proper z-index */
        .section6 > * {
            position: relative;
            z-index: 2;
        }

        .section6 h1{
            font-size: 19px;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; 
            text-align: center;
            margin-bottom: 10px;
        }

        .section6 h2{
            text-align: center;
            font-size: 35px;
            margin-top: 0%;
            margin-bottom: 50px;
            color: #fff;
        }

        .section6 h2 span{
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; 
        }

        .testimonials-container {
            max-width: 90%;
            width: 100%;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .testimonial-slide {
            min-width: calc(100% / 3);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 40px;
            box-sizing: border-box;
        }

        .testimonial-card {
            background: #261f39;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            border: 1px solid #2d2c31;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #fff;
            text-align: center;
            font-style: italic;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid #261f39;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #1e90ff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reviewer-details {
            color: #fff;
        }

        .reviewer-name {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 3px;
            color: #fff;
        }

        .reviewer-title {
            font-size: 0.85rem;
            color: #fff;
            opacity: 0.5;
        }

        .navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .nav-button {display: none;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
        }

        .nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(30, 144, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            transform: scale(1.2);
        }

        @media (max-width: 1024px) {
            .testimonial-slide {
                min-width: calc(100% / 2);
            }
        }

        @media (max-width: 768px) {
            .section6 h2 {
                font-size: 2rem;
            }
            
            .testimonial-slide {
                min-width: 100%;
            }
            
            .testimonial-card {
                padding: 20px;
                margin: 0 10px 20px 10px;
                height: auto;
                min-height: 150px;
                width: calc(100% - 20px);
            }
            
            .testimonial-text {
                font-size: 1rem;
                -webkit-line-clamp: none;
            }
            
            .navigation {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .reviewer-info {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .slider-wrapper {
                height: auto;
                min-height: 350px;
            }
        }