.review-animation-container {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    max-width: 100% !important;
    background-image: url("https://longhaullaw.com/wp-content/uploads/2025/03/review-bg.jpg");
    background-size: cover;
    background-position-y: 70%;
}

.review-track {
    display: flex;
    gap: 200px;
    position: relative;
    height: 100%;
}

.cart-shield-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 500px;
    flex-shrink: 0;
    animation: moveReview 20s linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.review-shield-container {
    position: relative;
    width: 100%;
    height: auto;
}

.shield-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.review-content {
    position: absolute;
    top: 35%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
    color: #1e2e65;
    font-size: 20px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    padding: 0 10px;
}

.review-stars {
    color: #ffd700;
    font-size: 48px;
    margin-bottom: 15px;
}

@keyframes moveReview {
    0% {
        left: -800px;
        opacity: 1;
    }
    5% {
        opacity: 1;
    }
    15% {
        left: calc(50% - 400px);
    }
    85% {
        left: calc(50% - 400px);
    }
    95% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 1;
    }
}