    /* Design Tokens & Variables */
    
     :root {
        --bg-dark: #070707;
        --bg-card-start: #1f1f1f;
        --bg-card-end: #111111;
        --border-color: rgba(255, 255, 255, 0.05);
        --text-primary: #ffffff;
        --text-muted: #cccccc;
        --text-dark: #777777;
        --brand-red: #ec1f26;
        --brand-red-hover: #ec1f26;
        --brand-red-glow: rgba(255, 30, 30, 0.15);
        --star-gold: #f3a80a;
        --vw: 100vw;
        /* Default fallback overridden dynamically by JS */
        --card-width: 280px;
        --card-height: 240px;
        --slider-gap: 28px;
        --transition-speed: 0.5s;
        --card-scale-active: 1.05;
        --card-scale-side: 0.95;
        --card-scale-far: 0.90;
    }
    /* Reset & Base Styles */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    /* body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */
    /* Testimonial Section */
    
    .testimonial-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        z-index: 1;
    }
    /* Radial Glow Backgrounds */
    
    .glow-bg {
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        pointer-events: none;
        z-index: -1;
        filter: blur(80px);
        opacity: 0.85;
    }
    
    .glow-left {
        background: radial-gradient(circle, rgba(255, 30, 30, 0.07) 0%, rgba(255, 30, 30, 0.01) 60%, rgba(0, 0, 0, 0) 80%);
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%);
    }
    
    .glow-right {
        background: radial-gradient(circle, rgba(255, 30, 30, 0.07) 0%, rgba(255, 30, 30, 0.01) 60%, rgba(0, 0, 0, 0) 80%);
        bottom: 10%;
        right: 20%;
        transform: translate(50%, 50%);
    }
    /* Layout Container */
    
    .container {
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Section Header */
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
        z-index: 10;
    }
    
    .header-badge {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-red);
        letter-spacing: 2.5px;
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .header-title {
        font-family: 'Outfit', sans-serif;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.5px;
        color: var(--text-primary);
        margin-bottom: 15px;
    }
    
    .header-line {
        width: 50px;
        height: 3px;
        background-color: var(--brand-red);
        margin: 0 auto;
        border-radius: 2px;
    }
    /* Slider Viewport */
    
    .slider-viewport {
        width: 100%;
        overflow: hidden;
        /* Constrains the visible cards to exactly 5 (desktop) or 3 (tablet) */
        position: relative;
        /* cursor: grab; */
    }
    /* .slider-viewport:active {
    cursor: grabbing;
} */
    /* Slider Track */
    
    .slider-track {
        display: flex;
        gap: var(--slider-gap);
        width: max-content;
        will-change: transform;
        /* CSS Transition handles sliding */
        transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
    }
    /* Testimonial Card */
    
    .testimonial-card {
        width: var(--card-width);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        user-select: none;
        transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1), opacity var(--transition-speed) ease, filter var(--transition-speed) ease;
        will-change: transform, opacity;
        background: #FFFFFF05;
        padding: 13px 13px 24px 13px;
        backdrop-filter: blur(104px);
        border-radius: 19px;
    }
    
     :root {
        --card-width: calc((var(--vw) - 4 * var(--slider-gap)) / 5);
    }
    /* Card Speech Bubble */
    
    .pd120.our_customer_sec {
        padding-top: 0 !important;
    }
    
    .card-bubble {
        position: relative;
        width: 100%;
        height: auto;
        background: linear-gradient(135deg, var(--bg-card-start), var(--bg-card-end));
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 24px 19px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
        backdrop-filter: blur(104px)
    }
    
    .hk_testimonial_content_box.intro {
        height: auto;
        overflow: visible;
    }
    
    .hk_testimonial_btn {
        line-height: 1;
        cursor: pointer;
    }
    /* Speech Bubble Tail */
    
    .card-bubble::after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 22px;
        width: 0;
        height: 0;
        z-index: 1;
        transition: border-color var(--transition-speed) ease;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 15px solid #202020;
        backdrop-filter: blur(104px);
    }
    /* Quote Icon */
    
    .quote-icon {
        width: 32px;
        height: 26px;
        margin-bottom: 15px;
        flex-shrink: 0;
    }
    /* Testimonial Text */
    
    .hk_testimonial_content_box {
        font-size: 16px;
        line-height: 34px;
        color: #C5C5C5;
        font-weight: 400;
        height: 165px;
        overflow: hidden;
        margin: 10px 0 12px;
    }
    
    .tog_btn {
        font-size: 15px;
        color: #ec1f26;
        font-weight: 500;
        text-decoration: underline;
        cursor: pointer;
        transition: 0.6s ease;
    }
    
    .tog_btn:hover {
        color: #fff;
    }
    /* Bottom User Information */
    
    .card-user {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 22px;
        padding: 0 8px;
        width: 100%;
    }
    
    .user-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    /* Avatar Container */
    
    .avatar-container {
        position: relative;
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        background: #ec1f26;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 27px;
        font-weight: 500;
        line-height: 1;
    }
    
    .user-avatar {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
    }
    
    .user-avatar-svg {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
    }
    /* Google Local Guide Badge */
    
    .guide-badge {
        position: absolute;
        bottom: -1px;
        right: -1px;
        width: 12px;
        height: 12px;
        background-color: #f3a80a;
        border-radius: 50%;
        border: 1.5px solid #000000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Guide badge star icon inside */
    
    .guide-badge::before {
        content: '';
        width: 5px;
        height: 5px;
        background-color: #ffffff;
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }
    
    .user-details {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .user-name {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.2;
        padding-bottom: 5px;
    }
    
    .user-stars {
        display: flex;
        gap: 2px;
    }
    
    .user-stars i.fa {
        color: #FDB101 !important;
        font-size: 12px;
    }
    /* Google G Logo Right */
    
    .user-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .google-icon {
        width: 25px;
        height: 25px;
    }
    /* --------------------------------------------------------------------------
   Slider Item States (Active / Depth styling)
   -------------------------------------------------------------------------- */
    /* Active Card */
    
    .testimonial-card.active {
        opacity: 1;
        /* transform: scale(var(--card-scale-active)); */
        z-index: 5;
    }
    
    .testimonial-card.active .card-bubble {
        /* border-color: rgba(255, 30, 30, 0.2); */
        /* box-shadow: 0 15px 40px rgba(255, 30, 30, 0.12), 0 5px 15px rgba(0, 0, 0, 0.4); */
        background: #FFFFFF0D;
        border: none;
    }
    /* Sibling Cards (Depth Effect) */
    
    .testimonial-card.sibling {
        opacity: 0.5;
        transform: scale(var(--card-scale-side));
        z-index: 3;
    }
    /* Far Cards (Depth Effect) */
    
    .testimonial-card.far {
        opacity: 0.2;
        transform: scale(var(--card-scale-far));
        z-index: 2;
    }
    /* Card Hover Animations */
    
    .testimonial-card:hover {
        /* transform: translateY(-8px) scale(calc(var(--card-scale, 1) * 1.02)); */
        z-index: 10;
    }
    /* Dynamic Hover scale adjustments based on current card depth */
    /* .testimonial-card.active:hover {
    --card-scale: var(--card-scale-active);
} */
    /* .testimonial-card.sibling:hover {
    --card-scale: var(--card-scale-side);
    opacity: 0.5;
}

.testimonial-card.far:hover {
    --card-scale: var(--card-scale-far);
    opacity: 0.4;
} */
    /* Hover bubble glow enhancement */
    /* .testimonial-card:hover .card-bubble {
    border-color: rgba(255, 30, 30, 0.4);
    box-shadow: 0 20px 40px rgba(255, 30, 30, 0.18), 0 8px 20px rgba(0, 0, 0, 0.5);
} */
    /* .testimonial-card:hover .card-bubble::after {
    border-right-color: rgba(255, 30, 30, 0.4);
    border-bottom-color: rgba(255, 30, 30, 0.4);
} */
    /* Slider Navigation Controls */
    
    .slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        z-index: 10;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        outline: none;
        user-select: none;
    }
    
    .prev-btn {
        background-color: #ec1f26;
        border: 1px solid var(--border-color);
        color: var(--text-primary);
    }
    
    .prev-btn:hover {
        background-color: #222222;
        border-color: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--brand-red);
    }
    
    .next-btn {
        background-color: var(--brand-red);
        border: none;
        color: var(--text-primary);
        border: 1px solid var(--brand-red);
    }
    
    .next-btn:hover {
        background-color: #222222;
        border-color: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--brand-red);
    }
    /* Progress Line Container */
    
    .progress-container {
        width: 280px;
        height: 2px;
        background-color: #FFFFFF33;
        border-radius: 1px;
        position: relative;
        overflow: hidden;
    }
    /* Active Sliding Segment */
    
    .progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 20%;
        /* 100% / 5 real slides */
        background-color: var(--brand-red);
        border-radius: 1px;
        will-change: transform;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    @media all and (min-width: 320px) and (max-width: 767px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 15px;
        }
        .nav-btn {
            width: 36px;
            height: 36px;
        }
        .progress-container {
            width: 150px;
        }
        .slider-controls {
            margin-top: 20px;
        }
         :root {
            --card-width: var(--vw);
        }
    }
    
    @media all and (min-width: 481px) and (max-width: 767px) {}
    
    @media all and (min-width: 768px) and (max-width: 980px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 15px;
        }
        .nav-btn {
            width: 36px;
            height: 36px;
        }
        .progress-container {
            width: 200px;
        }
        .slider-controls {
            margin-top: 20px;
        }
         :root {
            --card-width: calc((var(--vw) - 1 * var(--slider-gap)) / 2);
        }
    }
    
    @media only screen and (min-width: 981px) and (max-width: 1024px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 15px;
        }
        .nav-btn {
            width: 36px;
            height: 36px;
        }
        .progress-container {
            width: 200px;
        }
        .slider-controls {
            margin-top: 20px;
        }
         :root {
            --card-width: calc((var(--vw) - 2 * var(--slider-gap)) / 3);
        }
    }
    
    @media all and (min-width: 1025px) and (max-width: 1140px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 15px;
        }
        .nav-btn {
            width: 36px;
            height: 36px;
        }
        .progress-container {
            width: 200px;
        }
        .slider-controls {
            margin-top: 20px;
        }
         :root {
            --card-width: calc((var(--vw) - 2 * var(--slider-gap)) / 3);
        }
    }
    
    @media all and (min-width: 1141px) and (max-width: 1280px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 14px;
        }
        .nav-btn {
            width: 36px;
            height: 36px;
        }
        .progress-container {
            width: 200px;
        }
        .slider-controls {
            margin-top: 20px;
        }
         :root {
            --card-width: calc((var(--vw) - 2 * var(--slider-gap)) / 3);
        }
    }
    
    @media all and (min-width: 1281px) and (max-width: 1440px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 14px;
        }
        .nav-btn {
            width: 40px;
            height: 40px;
        }
        .progress-container {
            width: 240px;
        }
        .slider-controls {
            margin-top: 30px;
        }
         :root {
            --card-width: calc((var(--vw) - 3 * var(--slider-gap)) / 4);
        }
    }
    
    @media all and (min-width: 1441px) and (max-width: 1680px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 14px;
        }
        .nav-btn {
            width: 40px;
            height: 40px;
        }
        .progress-container {
            width: 240px;
        }
        .slider-controls {
            margin-top: 30px;
        }
         :root {
            --card-width: calc((var(--vw) - 3 * var(--slider-gap)) / 4);
        }
    }
    
    @media all and (min-width: 1681px) and (max-width: 1880px) {
        .slider-track {
            gap: 10px;
        }
        .hk_testimonial_content_box {
            font-size: 15px;
            line-height: 26px;
            height: 130px;
            margin: 10px 0 12px;
        }
        .avatar-container {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }
        .user-name {
            font-size: 16px;
            padding-bottom: 3px;
        }
        .testimonial-card {
            padding: 10px 10px 20px 10px;
        }
        .tog_btn {
            font-size: 14px;
        }
        .nav-btn {
            width: 40px;
            height: 40px;
        }
        .progress-container {
            width: 240px;
        }
        .slider-controls {
            margin-top: 30px;
        }
         :root {
            --card-width: calc((var(--vw) - 3 * var(--slider-gap)) / 4);
        }
    }