.shimmer {
    position: relative;
    overflow: hidden;
    background: #f6f7f8;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            transparent,
            rgba(13, 108, 127, 0.15),
            rgba(255, 62, 9, 0.2),
            rgba(13, 108, 127, 0.15),
            transparent);
    animation: shimmer-expand 1.5s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes shimmer-expand {
    0% {
        width: 0%;
        left: 0%;
        opacity: 0.1;
    }

    50% {
        width: 100%;
        left: 0%;
        opacity: 0.4;
    }

    100% {
        width: 0%;
        left: 100%;
        opacity: 0.1;
    }
}

.shimmer-box {
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.shimmer-text {
    height: 20px;
    width: 70%;
    border-radius: 5px;
    margin: 10px 0;
}

.shimmer-small {
    height: 12px;
    width: 40%;
    border-radius: 5px;
}

.testimonial-shimmer {
    height: 150px;
    border-radius: 12px;
    margin-bottom: 20px;
}