
.Marquee_marqueeWrap__PF38u {
    --themeht-text-color: #233050;
    --themeht-white-color: #FFFFFF;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: none; /* Mobile First: Hidden */
    padding: 40px 0;
    background-color: #fff;
}

@media (min-width: 992px) {
    .Marquee_marqueeWrap__PF38u {
        display: block;
    }
}

.Marquee_marqueeText__3T9rH {
    animation: Marquee_marquee__dv2gy 90s linear infinite;
    position: relative;
    width: max-content;
    white-space: nowrap;
    display: flex; 
}

/* Stop animation on hover */
.Marquee_marqueeWrap__PF38u:hover .Marquee_marqueeText__3T9rH {
    animation-play-state: paused;
}

.Marquee_marqueeText__3T9rH span {
    font-size: 25px; 
    line-height: 25px; 
    margin: 0 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Sora", sans-serif; 
}

.Marquee_marqueeText__3T9rH span a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Styling for odd items (Default filled look with prominent shadow) */
.Marquee_marqueeText__3T9rH span:nth-child(odd) a {
    color: #fff;
    text-shadow: 0 4px 12px rgba(35, 48, 80, 0.35), 0 2px 4px rgba(35, 48, 80, 0.2);
    -webkit-text-stroke: 0.5px rgba(35, 48, 80, 0.1);
}

/* Styling for even items (Outline look with prominent shadow) */
.Marquee_marqueeText__3T9rH span:nth-child(even) a {
    color: var(--themeht-white-color);
    text-shadow: -1px -1px 0 var(--themeht-text-color), 
                 1px -1px 0 var(--themeht-text-color), 
                 -1px 1px 0 var(--themeht-text-color), 
                 1px 1px 0 var(--themeht-text-color),
                 0 6px 10px rgba(35, 48, 80, 0.3);
    -webkit-text-stroke: 0.5px rgba(35, 48, 80, 0.2);
}

/* No color change on hover, only subtle scale */
.Marquee_marqueeText__3T9rH span a:hover {
    color: inherit !important;
    text-shadow: inherit;
    transform: scale(1.05);
}

/* Gradient overlays for smooth fading edges */
.Marquee_marqueeWrap__PF38u:before,
.Marquee_marqueeWrap__PF38u:after {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    content: "";
    z-index: 9;
    pointer-events: none;
}

.Marquee_marqueeWrap__PF38u:before {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.Marquee_marqueeWrap__PF38u:after {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

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