body {
            background: #f8fafc;
        }

        .testimonial-hero {
            background: radial-gradient(ellipse at top left, #1b2a55 0, transparent 55%), radial-gradient(ellipse at bottom right, #243066 0, transparent 55%), linear-gradient(180deg, #0d1430, #070b20);
            padding:60px 0;
            color: #fff;
            margin-bottom: 60px;
        }

        .hero-badge {
            background: rgba(255, 255, 255, .15);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            font-size: 13px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .testimonial-hero h1 {
            font-size: 58px;
            font-weight: 800;
            margin: 25px 0;
        }

        .testimonial-hero p {
            font-size: 18px;
            opacity: .9;
        }

        .btn-filter {
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(90deg, #7c3aed, #6623d8);
            box-shadow: 0 10px 40px -10px rgba(158, 204, 150, .6);
            border-radius: 50px;
            padding: 10px 20px;
            margin: 5px;
            font-weight: 600;
        }

        .btn-filter:hover {
            background: #2563eb;
            color: #fff;
        }

        /* CARD */

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            height: 100%;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
            transition: .3s;
            border: 1px solid #edf2f7;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
        }

        .testimonial-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .quote-icon {
            width: 50px;
            height: 50px;
            background: #2563eb;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .rating {
            color: #f59e0b;
            font-size: 18px;
        }

        .video-wrapper {
            margin-bottom: 20px;
        }

        .video-wrapper video {
            width: 100%;
            border-radius: 12px;
        }

        .testimonial-link {
            display: inline-block;
            margin-bottom: 15px;
            font-weight: 600;
            color: #2563eb;
        }

        .testimonial-content p {
            color: #475569;
            line-height: 1.8;
            min-height: 50px;
        }

        .testimonial-footer {
            border-top: 1px solid #e2e8f0;
            margin-top: 20px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .testimonial-footer h5 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
        }

        .testimonial-footer span {
            color: #64748b;
            font-size: 14px;
        }

        .customer-type {
            background: #eff6ff;
            color: #2563eb;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }

        /* PAGINATION */

        .pagination .page-link {
            border-radius: 8px;
            margin: 0 3px;
            border: none;
            color: #2563eb;
        }

        .pagination .active .page-link {
            background: #2563eb;
            color: #fff;
        }

        /* MOBILE */

        @media(max-width:991px) {

            .testimonial-hero h1 {
                font-size: 42px;
            }

        }

        @media(max-width:767px) {

            .testimonial-hero {
                padding: 70px 0;
            }

            .testimonial-hero h1 {
                font-size: 30px;
            }

            .testimonial-content p {
                min-height: auto;
            }

        }