/* Animated background particles */
.bg-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

.container-fluid {
    /* position: relative;
    z-index: 2;
    min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center logo with glow effect */
.center-logo {
    position: absolute;
    width: 150px;
    height: 150px;
    /* background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%); */
    background: linear-gradient(135deg, #00404D 0%, #04262E 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.center-logo:hover {
    transform: scale(1.1);
}

.center-logo svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4),
            0 0 40px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 20px 80px rgba(0, 212, 255, 0.6),
            0 0 60px rgba(0, 212, 255, 0.5);
    }
}

/* Orbit circles - visible guides */
.orbit-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-circle-1 {
    /* width: 400px;
    height: 400px; */
    width: 380px;
    height: 380px;
}

.orbit-circle-2 {
    /* width: 500px;
    height: 500px; */
    width: 480px;
    height: 480px;
}

/* Orbital items */
.orbit-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #2d3748;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 16px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    top: 50%;
    left: 50%;
}

.orbit-item:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* background: rgba(255, 255, 255, 1); */
    /* border-color: #667eea; */
}

/* Animation for items on circle 1 (inner) - 3 items */
.circle1-item1 {
    animation: revolve-circle1 20s linear infinite;
    border: 2px solid #4169e1;
    background: rgba(65, 105, 225, 0.15);
    color: #fff;
}

.circle1-item2 {
    animation: revolve-circle1 20s linear infinite;
    animation-delay: -6.67s;
    border: 1px solid #d35400;
    background: rgba(211, 84, 0, 0.15);
    color: #fff;
}

.circle1-item3 {
    animation: revolve-circle1 20s linear infinite;
    animation-delay: -13.34s;
    border: 1px solid #00a8ff;
    background: rgba(0, 168, 255, 0.15);
    color: #fff;
}

@keyframes revolve-circle1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

/* Animation for items on circle 2 (outer) - 3 items, counter-clockwise */
.circle2-item1 {
    animation: revolve-circle2 25s linear infinite;
    border: 2px solid #9b59b6;
    background: rgba(155, 89, 182, 0.15);
    color: #fff;
}

.circle2-item2 {
    animation: revolve-circle2 25s linear infinite;
    animation-delay: -8.33s;
    border: 1px solid #00a86b;
    background: rgba(0, 168, 107, 0.15);
    color: #fff;
}

.circle2-item3 {
    animation: revolve-circle2 25s linear infinite;
    animation-delay: -16.66s;
    border: 2px solid #4169e1;
    background: rgba(65, 105, 225, 0.15);
    color: #fff;
}

@keyframes revolve-circle2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(250px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg) translateX(250px) rotate(360deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .orbit-container {
        width: 400px;
        height: 400px;
    }

    .center-logo {
        width: 120px;
        height: 120px;
    }

    .center-logo svg {
        width: 80px;
        height: 80px;
    }

    .orbit-circle-1 {
        width: 280px;
        height: 280px;
    }

    .orbit-circle-2 {
        width: 350px;
        height: 350px;
    }

    .orbit-item {
        padding: 10px 20px;
        font-size: 14px;
    }

    @keyframes revolve-circle1 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(360deg) translateX(140px) rotate(-360deg);
        }
    }

    @keyframes revolve-circle2 {
        0% {
            transform: translate(-50%, -50%) rotate(0deg) translateX(175px) rotate(0deg);
        }

        100% {
            transform: translate(-50%, -50%) rotate(-360deg) translateX(175px) rotate(360deg);
        }
    }
}

/* Info text */
.info-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}