section.pattern-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images//home/pattern.png');
    opacity: 0.5;

}

.video-overlay:before {
    background-color: rgba(0, 0, 0, .65);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}


.role-marquee-content {
    display: flex;
    gap: 2.5rem;
    /* same gap */
    animation: marquee 35s linear infinite;
    width: max-content;
}

/* Apply icon only for cards except the last one */
.process-item:not(:last-child)::after {
    content: "\f061";
    /* Replace with your icon font unicode */
    font-family: "Font Awesome 6 Free";
    /* Replace with your icon font family */
    font-weight: 900;
    /* solid style */
    position: absolute;
    top: 50%;
    right: -34px;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 9999px;
    background-color: white;
    border: 7px solid #e6ebeb;
    color: #d4af37;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-testmonial .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(20px);
    opacity: 0.6;
}

.client-testmonial .swiper-slide.active {
    transform: translateY(-50px);
    opacity: 1;
    z-index: 10;
}

.role-slider .swiper-pagination-bullet-active {
    background-color: #d4af37 !important;
}

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

.animate-marquee {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

@media only screen and (max-width: 768px) {

    .process-item:not(:last-child)::after {
        top: 20%;
        right: 10%;
        width: 62px;
        height: 62px;
        font-size: 1.5rem;
        rotate: 90deg;

    }
    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }
}
