
    .sharabesh-testimonials {
        background-color: #F5F7FA;
        padding: 80px 24px;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .sharabesh-testimonials__header {
        text-align: center;
        margin-bottom: 50px;
    }

    .sharabesh-section-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: #1B5E20;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .sharabesh-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: #2ECC71;
        border-radius: 2px;
    }

    .sharabesh-testimonials__container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: flex-start; /* Aligns video top with carousel top */
    }

    /* Stats positioned ABOVE video */
    .sharabesh-testimonials__stat-top {
        display: flex;
        align-items: baseline;
        gap: 15px;
        margin-bottom: 20px;
    }

    .sharabesh-testimonials__stat-number {
        font-size: 4rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1B5E20, #2ECC71);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .sharabesh-testimonials__stat-text {
        font-size: 1.4rem;
        font-weight: 600;
        color: #333;
    }

    .sharabesh-testimonials__video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
        background: #000;
    }

    .sharabesh-testimonials__video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Carousel Window */
    .sharabesh-testimonials__carousel-window {
        height: 520px; /* Adjusted to keep video and carousel heights balanced */
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    }

    .sharabesh-testimonials__carousel-track {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sharabesh-testimonials__card {
        background: white;
        padding: 35px;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border: 1px solid rgba(0,0,0,0.05);
        flex-shrink: 0;
    }

    .sharabesh-testimonials__stars { color: #FFB83B; margin-bottom: 12px; font-size: 1.1rem; }
    .sharabesh-testimonials__quote { font-size: 1rem; line-height: 1.6; color: #444; margin-bottom: 20px; font-style: italic; }
    .sharabesh-testimonials__customer h4 { font-size: 1.1rem; color: #111; margin: 0; }
    .sharabesh-testimonials__customer p { font-size: 0.85rem; color: #777; margin: 0; }

    @media (max-width: 1000px) {
        .sharabesh-testimonials__container { grid-template-columns: 1fr; gap: 40px; }
        .sharabesh-testimonials__carousel-window { height: 400px; }
        .sharabesh-section-title { font-size: 2.2rem; }
    }

