.insurance-home-banner.custom-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.insurance-home-banner .banner-marquee {
    position: absolute;
    width: 200%;
    height: 100%;
    animation: bannerMarquee 30s linear infinite;
}

.insurance-home-banner .banner-marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes bannerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.banner-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.insurance-home-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.insurance-home-banner .banner-marquee img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.insurance-home-banner .banner-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 30, 66, 0.85);
    z-index: 2;
}

.insurance-home-banner .banner-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.banner-text .banner-icon {
    width: 80px;
    margin-bottom: 15px;
}

.btn-insurance {
    background-color: #cf2128;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-insurance:hover {
    background-color: #a9191f;
    color: #fff;
}











.insurance-marquees {
    background: #032b61;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Each row */
.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 220px;
}

/* Marquee content */
.marquee-content {
    display: flex;
    gap: 20px;
}

.marquee-content img {
    height: 220px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Left-moving marquee */
.marquee-row.left .marquee-content {
    animation: marqueeLeft 25s linear infinite;
}

/* Right-moving marquee */
.marquee-row.right .marquee-content {
    animation: marqueeRight 25s linear infinite;
}

/* Keyframes */
@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}






