/* Vision Container */
.vision-container {
    position: relative;
    height: 400px;
    margin: 60px 0;
    perspective: 1000px;
    width: 100%;
}

/* Central Idea */
.central-idea {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    /* background: linear-gradient(135deg, #6366f1, #8b5cf6); */
    /* background-color: rgb(98, 0, 238, 0.2); */
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.idea-icon {
    font-size: 48px;
    color: white;
}

.idea-text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #e5e5e5;
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Orbiting Elements */
.orbit {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 360px;
    height: 360px;
    animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 440px;
    height: 440px;
    animation: rotate 40s linear infinite;
}

@media (max-width: 768px) {
    .orbit-1 {
        width: 170px;
        height: 170px;
    }

    .orbit-2 {
        width: 240px;
        height: 240px;
    }

    .orbit-3 {
        width: 100%;
        height: 280px;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background: rgba(15, 15, 15, 0.8);
    /* border: 2px solid rgba(99, 102, 241, 0.3); */
    border: 2px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: counterRotate 20s linear infinite;
}

.orbit-2 .orbit-item {
    animation: counterRotate 30s linear infinite reverse;
}

.orbit-3 .orbit-item {
    animation: counterRotate 40s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.orbit-item:hover {
    transform: scale(1.2);
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.orbit-icon {
    font-size: 24px;
    margin-bottom: 4px;
    color: #6200ee;
}

.orbit-label {
    font-size: 0.7em;
    font-weight: 600;
    color: var(--font-color);
    text-align: center;
}

/* Position orbit items */
.orbit-1 .orbit-item:nth-child(1) {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-1 .orbit-item:nth-child(2) {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.orbit-1 .orbit-item:nth-child(3) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-1 .orbit-item:nth-child(4) {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.orbit-2 .orbit-item:nth-child(1) {
    top: -40px;
    left: 25%;
    transform: translateX(-50%);
}

.orbit-2 .orbit-item:nth-child(2) {
    top: -40px;
    right: 25%;
    transform: translateX(50%);
}

.orbit-2 .orbit-item:nth-child(3) {
    bottom: -40px;
    left: 25%;
    transform: translateX(-50%);
}

.orbit-2 .orbit-item:nth-child(4) {
    bottom: -40px;
    right: 25%;
    transform: translateX(50%);
}

.orbit-3 .orbit-item:nth-child(1) {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-3 .orbit-item:nth-child(2) {
    top: 30%;
    right: -40px;
    transform: translateY(-50%);
}

.orbit-3 .orbit-item:nth-child(3) {
    bottom: 30%;
    right: -40px;
    transform: translateY(50%);
}

.orbit-3 .orbit-item:nth-child(4) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-3 .orbit-item:nth-child(5) {
    bottom: 30%;
    left: -40px;
    transform: translateY(50%);
}

.orbit-3 .orbit-item:nth-child(6) {
    top: 30%;
    left: -40px;
    transform: translateY(-50%);
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
    animation: flowingLine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes flowingLine {

    0%,
    100% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

/* Progress Indicator */
.progress-section {
    margin: 80px 0 40px;
    text-align: center;
}

.progress-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #e5e5e5;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #272727bd !important;
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    width: 0;
    animation: progressAnimation 4s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }

    100% {
        width: 65%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(20px);
    }
}

.progress-label {
    margin-top: 12px;
    font-size: 14px;
    color: #6366f1;
    font-weight: 600;
}

/* Current Status */
.current-status {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(30, 30, 30, 0.6));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 40px;
    /* margin: 40px 0; */
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.current-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    animation: borderScan 3s infinite;
}

@keyframes borderScan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.status-title {
    font-size: 24px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 16px;
}

.status-description {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.6;
}

.status-highlight {
    color: #6366f1;
    font-weight: 600;
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .vision-container {
        height: 600px;
        margin: 0;
        overflow-x: hidden;
    }

    .central-idea {
        width: 100px;
        height: 100px;
    }

    .idea-icon {
        font-size: 32px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 260px;
        height: 260px;
    }

    .orbit-3 {
        width: 320px;
        height: 320px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
    }

    .orbit-icon {
        font-size: 18px;
    }

    .orbit-label {
        font-size: 8px;
    }
}