.parsley-required{
    color: white !important;
}

.bg-service-pattern {
    background-image: url(../images/pattern1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 98% auto;
    opacity: 0.3;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    min-width: 200%;
}
.contact-form::before {
    content: "";
    position: absolute;
    top: -48px;
    right: -1px;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-left: 60px solid #be3d90;
    z-index: 3;
}

/* Apply icon only for cards except the last one */
.swiper-slide.process-item:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 4px solid #9e3998;
    color: #3e2ab0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-bg {
    background-image: linear-gradient(180deg, #9e38985e 50%, #3228b2 100%);
}

@media only screen and (max-width: 768px) {
    .stats-bg {
        background-image: linear-gradient(180deg, #381436c7 50%, #3228b2 100%);
    }
}

@media only screen and (max-width: 577px) {
    .swier-slide.process-item {
        margin-bottom: 3rem; /* add spacing so arrow does not overlap next card */
    }

    .swiper-slide.process-item:not(:last-child)::after {
        content: "\f063";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: auto; /* remove top positioning */
        right: auto; /* remove right positioning */
        bottom: -5px; /* position below card */
        left: 50%; /* center horizontally */
        transform: translateX(-50%);
    }
}
