        /* ===== Premium Testimonials Section ===== */
        #testimonial-v2 {
            padding: 80px 0;
            position: relative;
            background: #fafafa;
            overflow: hidden;
        }

        .ts2-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.1);
            color: #2563eb;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 14px;
        }
        .ts2-title {
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 700;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        .ts2-sub {
            font-size: 16px;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto 48px;
        }

        /* slider */
        .ts2-slider { position: relative; }
        .ts2-overflow { overflow: hidden; padding: 20px 0; }
        .ts2-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* cards */
        .ts2-card {
            flex-shrink: 0;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px 32px 32px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .ts2-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
        }
        
        /* top right shape */
        .ts2-card::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 140px; height: 140px;
            background: #e0f2fe;
            border-radius: 50%;
            z-index: 0;
        }

        .ts2-quote-icon {
            width: 42px; height: 42px;
            background: #2563eb;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 24px;
            flex-shrink: 0;
            position: relative; z-index: 1;
        }
        .ts2-quote-icon i { color: #fff; font-size: 18px; }

        .ts2-text {
            font-size: 16px;
            line-height: 1.7;
            color: #475569;
            font-style: italic;
            font-weight: 500;
            flex: 1;
            margin-bottom: 24px;
            position: relative; z-index: 1;
        }

        .ts2-divider { 
            height: 1px; 
            background: #e2e8f0; 
            margin-bottom: 24px; 
            position: relative; z-index: 1;
        }

        .ts2-footer { 
            display: flex; 
            align-items: center; 
            gap: 16px; 
            position: relative; z-index: 1;
        }

        .ts2-av {
            width: 50px; height: 50px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; font-weight: 600;
            flex-shrink: 0;
            border: 2px solid #bfdbfe;
            background: #f8fafc;
            color: #4f46e5;
        }

        .ts2-name { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
        .ts2-role { font-size: 13px; color: #64748b; }

        /* nav */
        .ts2-nav {
            display: flex; align-items: center; justify-content: center;
            gap: 16px; margin-top: 32px;
        }
        .ts2-arrow {
            width: 44px; height: 44px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            background: #fff;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: #64748b;
            transition: 0.2s;
        }
        .ts2-arrow:hover {
            border-color: #2563eb;
            color: #2563eb;
        }
        .ts2-arrow:disabled { opacity: 0.4; pointer-events: none; }
        
        .ts2-dots { display: flex; gap: 8px; align-items: center; }
        .ts2-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: 0.3s;
        }
        .ts2-dot.on {
            width: 24px;
            border-radius: 4px;
            background: #2563eb;
        }

        @media(max-width:600px){ 
            .ts2-card{padding:32px 24px 24px;} 
            .ts2-text{font-size:15px;} 
        }
