.orbital-wrapper-19c80564 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 100px 50px;
    overflow: visible;
}

.orbit-path-19c80564 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-sizing: border-box;
}

.orbit-center-19c80564 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 5;
}

.orbit-center-19c80564 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.orbit-items-container-19c80564 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 10;
}

/* 
  CRITICAL FIX: 
  orbit-item is the outer shell handled ONLY by JS (GSAP handles its x/y translate and counter-rotation).
  Do NOT add any hover transforms here.
*/
.orbit-item-19c80564 {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 10;
    /* Elementor item size control applies here to define bounding box */
}

/* 
  orbit-item-inner is the target for the CSS hover effect. 
  It handles background, shadow, and CSS scaling entirely separate from GSAP's x/y.
*/
.orbit-item-inner-19c80564 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    will-change: transform, box-shadow;
}

.orbit-item-inner-19c80564 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15%;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
}

/* Z-index elevation on hover */
.orbit-item-19c80564:hover {
    z-index: 20;
}

/* Hover Scaling Effect isolated to the inner layer */
.orbit-item-19c80564:hover .orbit-item-inner-19c80564 {
    transform: scale(var(--hover-scale, 1.2));
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.orbit-item-19c80564:hover img {
    transform: scale(1.1);
}
