/* Wrapper */
.sbc-wrapper-cd7cdd31 {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0 50px;
    background: transparent;
}

/* Track and Animation */
.sbc-track-cd7cdd31 {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sbc-scroll-cd7cdd31 25s linear infinite;
    /* gap will be set via Elementor controls */
}

.sbc-wrapper-cd7cdd31:hover .sbc-track-cd7cdd31 {
    animation-play-state: paused;
}

@keyframes sbc-scroll-cd7cdd31 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Individual Item */
.sbc-item-cd7cdd31 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image Container */
.sbc-img-wrap-cd7cdd31 {
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding: 4px; /* Space for the animated gradient border */
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* The gradient border illusion using a pseudo element behind the image */
.sbc-img-wrap-cd7cdd31::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    z-index: -1;
    transition: background 0.4s ease;
}

.sbc-img-wrap-cd7cdd31 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #fff;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Overlay on Hover */
.sbc-img-glass-overlay-cd7cdd31 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Title */
.sbc-title-cd7cdd31 {
    margin-top: 18px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Hover Effects */
.sbc-item-cd7cdd31:hover {
    transform: translateY(-8px);
}

.sbc-item-cd7cdd31:hover .sbc-img-wrap-cd7cdd31 {
    /* Box shadow is injected via Elementor settings dynamically */
    transform: scale(1.05);
}

.sbc-item-cd7cdd31:hover .sbc-img-wrap-cd7cdd31::before {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); /* Neon glowing gradient */
    animation: sbc-spin-cd7cdd31 4s linear infinite;
}

@keyframes sbc-spin-cd7cdd31 {
    100% { transform: rotate(360deg); }
}

.sbc-item-cd7cdd31:hover .sbc-img-wrap-cd7cdd31 img {
    transform: scale(1.1);
}

.sbc-item-cd7cdd31:hover .sbc-img-glass-overlay-cd7cdd31 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .sbc-img-wrap-cd7cdd31 {
        /* Adjusted automatically by Elementor responsive settings if needed, fallback scaling here */
        max-width: 100px;
        max-height: 100px;
    }
    .sbc-title-cd7cdd31 {
        font-size: 14px;
        margin-top: 12px;
    }
}