:root {
            --wbdo-gold: #FFC107;
            --wbdo-orange: #FF9800;
            --wbdo-dark: #1a1a1a;
            --wbdo-grey: #f4f6f8;
            --wbdo-text-sub: #555;
            --wbdo-radius: 20px;

            --mwsg-gold: #FFC107;
            --mwsg-orange: #FF9800;
            --mwsg-bg: #ffffff;
            --mwsg-text: #333333;
            --mwsg-text-light: #777777;
            --mwsg-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .mwsg-review-section {
            padding: 3rem 1rem;
            background: #fff;
            overflow: hidden;
            display: flex; flex-direction: column; align-items: center;
        }

        /* --- Header --- */
        .mwsg-header {
            text-align: center; margin-bottom: 2rem;
            display: flex; flex-direction: column; align-items: center; gap: 5px;
        }
        .mwsg-rating-badge {
            background: #000; color: #fff; padding: 5px 15px; border-radius: 20px;
            font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
            margin-bottom: 5px;
        }
        .mwsg-rating-badge i { color: var(--mwsg-gold); }
        .mwsg-header h2 { font-size: 1.8rem; margin: 0; color: var(--mwsg-text); }

        /* --- Carousel Viewport --- */
        .mwsg-carousel {
            width: 100%; max-width: 1000px;
            height: 220px; /* Minimal Height */
            position: relative;
            /* Fade effect on sides */
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .mwsg-track {
            display: flex; gap: 25px;
            position: absolute; left: 0;
            /* Infinite Scroll Animation */
            animation: mwsgScroll 30s linear infinite;
        }

        /* Stop scrolling on hover so users can read */
        .mwsg-track:hover { animation-play-state: paused; }

        @keyframes mwsgScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-300px * 6 - 20px * 6)); } /* Adjust based on card width & count */
        }

        /* --- Review Card --- */
        .mwsg-card {
            flex: 0 0 300px; /* Fixed Width */
            background: #8080804a;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex; flex-direction: column;
            position: relative;
            transition: 0.3s;
        }
        
        .mwsg-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
            border-color: var(--mwsg-gold);
        }

        /* Top Row: Initials + Stars */
        .mwsg-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        
        .mwsg-user { display: flex; align-items: center; gap: 10px; }
        
        /* Custom Initials Avatar */
        .mwsg-avatar {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--mwsg-orange), var(--mwsg-gold));
            color: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.9rem;
            box-shadow: 0 3px 8px rgba(255, 152, 0, 0.3);
        }

        .mwsg-user-name { font-size: 0.95rem; font-weight: 600; color: var(--mwsg-text); }
        .mwsg-user-verified { font-size: 0.7rem; color: #28a745; display: flex; align-items: center; gap: 3px; margin-top: 2px;}

        .mwsg-stars { color: var(--mwsg-gold); font-size: 0.8rem; }

        /* Comment Text */
        .mwsg-text {
            font-size: 0.9rem; line-height: 1.5; color: var(--mwsg-text-light);
            display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
            font-style: italic;
        }

        /* Decorative Quote Icon */
        .mwsg-card::after {
            content: '\f10d'; /* FontAwesome Quote */
            font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; bottom: 15px; right: 15px;
            font-size: 1.5rem; color: rgba(0,0,0,0.03);
        }

        /* Mobile Adjust */
        @media (max-width: 600px) {
            .mwsg-card { flex: 0 0 280px; }
        }




        /* --- Section Container --- */
        .wbdo-section-responsive {
            padding: 5rem 1.5rem;
            background: #fff;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        /* --- Header --- */
        .wbdo-header-resp {
            text-align: center; margin-bottom: 3.5rem; padding: 0 1rem;
        }
        .wbdo-header-resp h2 {
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 900; color: var(--wbdo-dark); margin: 0 0 15px 0;
            line-height: 1.2;
        }
        .wbdo-header-resp p {
            font-size:23px; color: #777; max-width: 600px; margin: 0 auto;
        }

        /* --- Grid --- */
        .wbdo-grid-resp {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Card Container --- */
        .wbdo-card-resp {
            display: grid;
            grid-template-areas: "stack"; 
            border-radius: var(--wbdo-radius);
            overflow: hidden;
            background: var(--wbdo-grey);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: auto; 
        }

        .wbdo-card-resp:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        /* --- Side Styling --- */
        .wbdo-card-side {
            grid-area: stack;
            padding: 3rem 2rem;
            display: flex; flex-direction: column; 
            align-items: center; justify-content: center;
            text-align: center;
            min-height: 320px;
            transition: opacity 0.3s ease;
        }

        /* --- Problem Layer (Grey) --- */
        .wbdo-side-problem { background: var(--wbdo-grey); z-index: 1; }
        
        .wbdo-icon-grey { font-size: 3rem; color: #e59d02; margin-bottom: 1.5rem; transition: 0.3s; }
        .wbdo-card-resp:hover .wbdo-icon-grey { transform: scale(0.9); opacity: 0.7; }

        .wbdo-side-problem h3 { font-size: 1.5rem; color: var(--wbdo-dark); margin-bottom: 0.8rem; font-weight: 800; }
        .wbdo-side-problem p { font-size: 1rem; color: var(--wbdo-text-sub); line-height: 1.5; margin: 0; }
        
        .wbdo-indicator {
            margin-top: 2rem; font-size: 0.8rem; color:#fff; font-weight: 700; text-transform: uppercase; 
            display: flex; align-items: center; gap: 8px;
            padding: 10px 20px; border-radius: 50px; border: 1px solid #e0e0e0; background:#e59d02;
            transition: 0.3s;
        }
        .wbdo-card-resp:hover .wbdo-indicator { background: var(--wbdo-orange); color: #fff; border-color: var(--wbdo-orange); }

        /* --- Solution Layer (Gold) --- */
        .wbdo-side-solution {
            background: linear-gradient(135deg, var(--wbdo-gold), var(--wbdo-orange));
            z-index: 2; color: #fff;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .wbdo-icon-white { font-size: 3rem; color: #fff; margin-bottom: 1.5rem; }
        .wbdo-side-solution h3 { font-size: 1.6rem; margin-bottom: 0.8rem; color: #fff; font-weight: 800; }
        .wbdo-side-solution p { font-size: 1.1rem; line-height: 1.5; color: rgba(255,255,255,0.95); margin: 0; font-weight: 500; }

        /* Animation Trigger */
        .wbdo-card-resp:hover .wbdo-side-solution, .wbdo-card-resp.active .wbdo-side-solution {
            transform: translateY(0);
        }
        .wbdo-card-resp.active .wbdo-indicator { background: var(--wbdo-orange); color: #fff; }

        /* Mobile Tweaks */
        @media (max-width: 768px) {
            .wbdo-section-responsive { padding: 3rem 1rem; }
            .wbdo-card-side { padding: 2.5rem 1.5rem; min-height: 280px; }
            .wbdo-indicator span { display: none; }
            .wbdo-indicator::after { content: "Tap to see how"; }
        }