/* Main Container */
.choose-us-widget-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}


	    .choose-us-review-card {
        width: 380px;
        height: 300px !important;
    }




/* Header Section */
.choose-us-header {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.choose-us-header-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .choose-us-header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
}

.choose-us-title {
    font-size: 2.25rem;
    /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.025em;
    /* tracking-tight */
    margin: 0;
}

@media (min-width: 768px) {
    .choose-us-title {
        font-size: 3rem;
        /* text-5xl */
        line-height: 1;
    }
}

/* Header Controls (Arrows + Button) */
.choose-us-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .choose-us-controls {
        width: auto;
        justify-content: flex-end;
        margin-left: auto;
        flex-grow: 0;
        gap: 1rem;
    }
}

/* Navigation Arrows */
.choose-us-nav-arrows {
    display: flex;
    gap: 0.5rem;
}

.choose-us-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    /* gray-200 */
    background-color: #fff;
    color: #374151;
    /* gray-700 */
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.choose-us-arrow:hover {
    background-color: #f3f4f6;
    /* gray-100 */
    border-color: #d1d5db;
    /* gray-300 */
}

/* See All Button */
.choose-us-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #006B8D;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    /* text-sm */
    transition: background-color 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .choose-us-see-all {
        font-size: 1rem;
        /* text-base */
    }
}

.choose-us-see-all:hover {
    background-color: #005570;
    color: #fff;
}

/* Scroll Container */
.choose-us-scroll-container {
    display: flex;
    gap: 1.25rem;
    /* gap-5 */
    overflow-x: auto;
    padding-bottom: 1rem;
    width: 100%;
    scroll-behavior: smooth;
}

/* Hide scrollbar */
.choose-us-scroll-container::-webkit-scrollbar {
    display: none;
}

.choose-us-scroll-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Snap properties */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

/* Item Wrapper (Holds Image + Review Card) */
.choose-us-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* gap-5 */
    flex-shrink: 0;
    width: 89vw;
    /* transition removed */
}

@media (min-width: 768px) {
    .choose-us-item-wrapper {
        flex-direction: row;
        width: auto;
    }
}

/* Image Card */
.choose-us-item-image {
    position: relative;
    width: 100%;
    height: 32vh;
    border-radius: 1.5rem;
    /* rounded-3xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .choose-us-item-image {
        width: 280px;
        height: 380px;
    }
}

.choose-us-image-tag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.choose-us-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.choose-us-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    color: #fff;
}

.choose-us-person-name {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.choose-us-person-case {
    font-size: 0.875rem;
    /* text-sm */
    color: #e5e7eb;
    /* gray-200 */
    opacity: 0.9;
    margin: 0;
}

/* Review Card */
.choose-us-review-card {
    width: 100%;
    height: 44vh;
    background-color: #F0F9FF;
    border-radius: 1.5rem;
    /* rounded-3xl */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .choose-us-review-card {
        width: 380px;
        height: 380px;
    }
}

/* Review Header */
.choose-us-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.choose-us-reviewer-name {
    margin: 0;
}

.choose-us-reviewer-case {
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.choose-us-reviewer-img {
    width: 3rem;
    /* w-12 */
    height: 3rem;
    /* h-12 */
    border-radius: 0.75rem;
    /* rounded-xl */
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Review Body */
.choose-us-review-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow-y: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Hide Scrollbar in review body */
.choose-us-review-body::-webkit-scrollbar {
    display: none;
}

.choose-us-review-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.choose-us-review-text {
    margin: 0;
}

/* Review Footer */
/* Review Footer - spacing managed by flex parent */

.choose-us-read-more {
    display: inline-block;
    text-decoration: none !important;
}