.i360-wrapper-6bd9264e {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    perspective: 1200px;
}

.i360-header {
    text-align: center;
    margin-bottom: 50px;
}

.i360-badge {
    font-size: 13px;
    font-weight: 700;
    color: #0052cc;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.i360-title {
    font-size: 36px;
    font-weight: 800;
    color: #0c2540;
    line-height: 1.2;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.i360-subtitle {
    font-size: 16px;
    color: #627d98;
    max-width: 700px;
    margin: 0 auto;
}

/* 3D Scene and Container */
.i360-diagram-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.i360-3d-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Center Core Elements */
.i360-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(40px);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #0052cc 0%, #002266 100%);
    box-shadow: 0 20px 50px rgba(0, 34, 102, 0.35), 
                0 0 30px rgba(0, 82, 204, 0.5), 
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.i360-globe-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.i360-glow-ring, .i360-glow-ring-two {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 216, 0.3);
    animation: i360PulseRing 3s infinite linear;
}

.i360-glow-ring {
    width: 110%;
    height: 110%;
}

.i360-glow-ring-two {
    width: 125%;
    height: 125%;
    animation-delay: 1.5s;
}

.i360-center-text {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.i360-center-num {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.i360-center-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 8px 0 0 0;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Orbit Dots inside Scene */
.i360-nodes-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.i360-orbit-dot {
    position: absolute;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%) translateZ(25px);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.i360-dot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
    transform: scale(1.2);
    animation: i360DotPulse 2s infinite ease-in-out;
}

.i360-dot-number {
    position: relative;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* SVG Lines Overlay */
.i360-svg-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%) translateZ(5px);
    pointer-events: none;
    z-index: 1;
}

/* Cards Layout */
.i360-cards-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: relative;
}

.i360-column {
    width: 31%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 580px;
}

.i360-col-left {
    align-items: flex-end;
}

.i360-col-right {
    align-items: flex-start;
}

.i360-pillar-card {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f4f8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: translateZ(10px);
}

.i360-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    border-radius: 4px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.i360-col-left .i360-pillar-card::before {
    right: 0;
}

.i360-col-right .i360-pillar-card::before {
    left: 0;
}

.i360-pillar-card:hover, .i360-pillar-card.is-active {
    transform: translateZ(35px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.i360-pillar-card:hover::before, .i360-pillar-card.is-active::before {
    opacity: 1;
    transform: scaleY(1.1);
}

.i360-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
}

.i360-col-left .i360-card-header {
    justify-content: flex-end;
    text-align: right;
}

.i360-card-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.i360-card-num-title {
    display: flex;
    flex-direction: column;
}

.i360-card-badge {
    font-size: 11px;
    font-weight: 800;
}

.i360-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0c2540;
    margin: 2px 0 0 0;
    line-height: 1.3;
}

.i360-card-desc {
    font-size: 13px;
    color: #627d98;
    line-height: 1.5;
    margin: 0;
}

.i360-col-left .i360-card-desc {
    text-align: right;
}

/* Animations */
@keyframes i360PulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes i360DotPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.05;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Focused / Dimmed state classes managed by JS */
.i360-cards-container.has-focus .i360-pillar-card:not(.is-active) {
    opacity: 0.4;
    filter: blur(1px) grayscale(20%);
    transform: scale(0.98);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .i360-cards-container {
        flex-direction: column;
        gap: 20px;
    }
    .i360-column {
        width: 100%;
        min-height: auto;
        gap: 20px;
    }
    .i360-center-node, .i360-nodes-orbit, .i360-svg-lines {
        display: none;
    }
    .i360-diagram-container {
        min-height: auto;
    }
    .i360-pillar-card {
        transform: none !important;
    }
    .i360-col-left .i360-pillar-card::before, .i360-col-right .i360-pillar-card::before {
        left: 0;
        right: auto;
    }
    .i360-col-left .i360-card-header, .i360-col-left .i360-card-desc {
        text-align: left;
        justify-content: flex-start;
    }
    .i360-col-left .i360-card-header {
        flex-direction: row-reverse;
    }
    .i360-cards-container.has-focus .i360-pillar-card:not(.is-active) {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
