.orbit-showcase-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    box-sizing: border-box;
    --rotation-speed: 25s;
}

.orbit-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* responsive defaults governed by Elementor Styles */
    --orbit-radius: 200px;
    --orbit-diameter: calc(var(--orbit-radius) * 2);
    width: var(--orbit-diameter);
    height: var(--orbit-diameter);
    overflow: visible;
}

/* Background Paths (dotted rings) */
.orbit-paths-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.orbit-path-line {
    position: absolute;
    border-radius: 50%;
    border-width: 1px;
    box-sizing: border-box;
    border-color: rgba(0, 0, 0, 0.05);
    border-style: dashed;
}

.orbit-path-line.path-inner {
    width: calc(var(--orbit-radius) * 0.7);
    height: calc(var(--orbit-radius) * 0.7);
}

.orbit-path-line.path-middle {
    width: calc(var(--orbit-radius) * 1.4);
    height: calc(var(--orbit-radius) * 1.4);
}

.orbit-path-line.path-outer {
    width: calc(var(--orbit-radius) * 2);
    height: calc(var(--orbit-radius) * 2);
}

/* Center Static Node - Solid visibility fix */
.orbit-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20; /* Ensure on top */
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.orbit-center-node:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.orbit-center-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.orbit-center-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.orbit-center-icon i {
    font-size: inherit;
    color: inherit;
}

.orbit-center-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.orbit-center-image {
    object-fit: cover;
    border-radius: inherit;
}

/* Orbiting Nodes Rotator Wrapper */
.orbit-items-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    overflow: visible;
}

/* Enable rotation through CSS */
.orbit-showcase-container.orbit-rotation-enabled.orbit-dir-normal .orbit-items-rotator {
    animation: orbitRotation_630baba7 var(--rotation-speed, 25s) linear infinite;
}

.orbit-showcase-container.orbit-rotation-enabled.orbit-dir-reverse .orbit-items-rotator {
    animation: orbitRotationReverse_630baba7 var(--rotation-speed, 25s) linear infinite;
}

/* Individual Node Wrapper - Positions node mathematically */
.orbit-node-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 15;
    overflow: visible;
    transform: translate(-50%, -50%) rotate(var(--node-angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--node-angle)));
}

/* Node content wraps both icon container + label and counter-rotates dynamically */
.orbit-node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
}

/* Counter rotation to keep elements upright */
.orbit-showcase-container.orbit-rotation-enabled.orbit-dir-normal .orbit-node-content {
    animation: orbitRotationReverse_630baba7 var(--rotation-speed, 25s) linear infinite;
}

.orbit-showcase-container.orbit-rotation-enabled.orbit-dir-reverse .orbit-node-content {
    animation: orbitRotation_630baba7 var(--rotation-speed, 25s) linear infinite;
}

/* Pause animations on hover */
.orbit-showcase-container.orbit-hover-pause:hover .orbit-items-rotator,
.orbit-showcase-container.orbit-hover-pause:hover .orbit-node-content,
.orbit-showcase-container.orbit-hover-pause:hover .orbit-node-container {
    animation-play-state: paused !important;
}

.orbit-node-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

/* Shape Presets */
.orbit-shape-630baba7-square .orbit-node-container {
    border-radius: 0;
}
.orbit-shape-630baba7-rounded .orbit-node-container {
    border-radius: 16px;
}
.orbit-shape-630baba7-circle .orbit-node-container {
    border-radius: 50%;
}

.orbit-node-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-node-image {
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.orbit-node-title {
    display: block;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Animations: Orbit Rotation keyframes */
@keyframes orbitRotation_630baba7 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotationReverse_630baba7 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

/* Animations: Breathing Effect - applies on container to not collide with counter rotation */
@keyframes breathingEffect_630baba7 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

.breathing-active .orbit-node-container {
    animation: breathingEffect_630baba7 3.5s ease-in-out infinite;
}

/* Scale individual nodes further on direct hover */
.orbit-node-wrapper:hover {
    z-index: 30;
}

.orbit-node-wrapper:hover .orbit-node-container {
    transform: scale(1.18);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
