  .testimonial-section {
        width: 100%;
        padding: 90px 20px;
        overflow: hidden;
    }

    .testimonial-container {
        max-width: 1180px;
        margin: auto;
    }

    /* Heading */
    .testimonial-heading {
        text-align: center;
        margin-bottom: 50px;
    }

    .testimonial-heading .small-title {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #7c3aed;
        margin-bottom: 14px;
    }

    .testimonial-heading h2 {
        font-size: clamp(32px, 5vw, 52px);
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -1.5px;
        margin-bottom: 15px;
    }

    .testimonial-heading h2 span {
        background: linear-gradient(90deg, #7c3aed, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .testimonial-heading p {
        max-width: 650px;
        margin: auto;
        color: #6b7280;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Slider */
    .testimonial-slider {
        position: relative;
        overflow: hidden;
        padding: 10px 5px 30px;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(.77,0,.18,1);
    }

    .testimonial-slide {
        min-width: 100%;
        padding: 10px;
    }

    /* Card */
    .testimonial-card {
        position: relative;
        max-width: 900px;
        min-height: 360px;
        margin: auto;
        padding: 55px 70px;
        background: #ffffff;
        border: 1px solid #e8e8ef;
        border-radius: 28px;
        box-shadow: 0 20px 60px rgba(30, 20, 60, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .quote-icon {
        position: absolute;
        top: 28px;
        left: 38px;
        font-family: Georgia, serif;
        font-size: 72px;
        line-height: 1;
        color: #e9d5ff;
        font-weight: bold;
    }

    .stars {
        display: flex;
        gap: 4px;
        margin-bottom: 22px;
        color: #f59e0b;
        font-size: 19px;
    }

    .testimonial-text {
        font-size: clamp(18px, 2.2vw, 24px);
        line-height: 1.7;
        font-weight: 500;
        color: #27272a;
        margin-bottom: 30px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #7c3aed, #ec4899);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        font-weight: 800;
    }

    .author-info strong {
        display: block;
        font-size: 22px;
        color: #18181b;
        margin-bottom: 4px;
    }

    .author-info span {
        font-size: 14px;
        color: #71717a;
    }

    /* Arrows */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: 1px solid #e4e4e7;
        background: #ffffff;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        color: #27272a;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        z-index: 5;
    }

    .slider-arrow:hover {
        background: #7c3aed;
        color: #fff;
        border-color: #7c3aed;
        transform: translateY(-50%) scale(1.08);
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    /* Dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 9px;
        margin-top: 15px;
    }

    .dot {
        width: 9px;
        height: 9px;
        border: none;
        border-radius: 50%;
        background: #d4d4d8;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 28px;
        border-radius: 10px;
        background: linear-gradient(90deg, #7c3aed, #ec4899);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .testimonial-section {
            padding: 65px 15px;
        }

        .testimonial-heading {
            margin-bottom: 35px;
        }

        .testimonial-card {
            min-height: 390px;
            padding: 55px 28px 35px;
            border-radius: 22px;
        }

        .quote-icon {
            left: 22px;
            top: 20px;
            font-size: 60px;
        }

        .testimonial-text {
            font-size: 17px;
            line-height: 1.65;
        }

        .slider-arrow {
            width: 42px;
            height: 42px;
            font-size: 20px;
        }

        .prev {
            left: 5px;
        }

        .next {
            right: 5px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-card {
            min-height: 430px;
            padding: 60px 22px 30px;
        }

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

        .slider-arrow {
            display: none;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            font-size: 15px;
        }
    }
