.about-section {
    position: relative;
    padding: 0;
    overflow: visible;

}

/* Removed tech-label styles as they're now in chip-label.css component */

.tech-icons {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
}

.orbit-container {
    position: relative;
    width: 100%;
    height: 100%;

}

.orbit-circle {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-1 {
    position: relative;
    width: 200px;
    height: 200px;
    animation: rotate 15s linear infinite;
}

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

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

.icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}





/* React at center */
#icon4 {
    top: calc(50% - 30px);
    left: calc(50% - 30px);


    z-index: 2;
}

#icon4 img {
    width: 100%;
    height: 100%;
}

/* Inner orbit */
#icon1 {
    top: 35%;
    left: 35%;
    animation: float 4s infinite ease-in-out;
}

#icon2 {
    top: 65%;
    left: 35%;
    animation: float 5s infinite ease-in-out;
}

#icon3 {
    top: 65%;
    left: 65%;
    animation: float 4.5s infinite ease-in-out;
}

/* Outer orbit */
#icon5 {
    top: 25%;
    left: 25%;
    animation: float 6s infinite ease-in-out;
}

#icon6 {
    top: 75%;
    left: 25%;
    animation: float 5.5s infinite ease-in-out;
}

#icon7 {
    top: 75%;
    left: 75%;
    animation: float 5s infinite ease-in-out;
}

#icon8 {
    top: 25%;
    left: 75%;
    animation: float 4.5s infinite ease-in-out;
}

#icon9 {
    top: 50%;
    left: 85%;
    animation: float 6s infinite ease-in-out;
}

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

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

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(-10px);
    }
}

.tech-icon {
    font-style: normal;
    font-size: 1.2rem;
    font-weight: bold;
}

#connections-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Removed duplicate tech-label styles */

.about-content {
    text-align: left;
    max-width: 500px;
    margin-right: 2rem;
    align-content: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.section-heading {
    background: var(--gradient, linear-gradient(90deg, #06F562 0%, #03FE94 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    font-family: Audiowide;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: flex-start;
    width: 100%;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-family: bahnschrift;
}

.connect-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: all 0.3s ease;
    text-align: left;
}

.connect-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

@media (max-width: 1100px) {
    .orbit-container {
        position: relative;
        width: 100%;
        height: 100%;
        margin-top: 130px;
    }

    .about-section {
        padding: 4rem 1.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .col-5,
    .col-7 {
        grid-column: 1 / -1;
    }

    /* Removed duplicate tech-label styles */

    .tech-icons {
        height: 400px;
        order: -1;
    }

    .about-content {
        text-align: left;
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 130px;
    }

    .section-heading {
        background: var(--gradient, linear-gradient(90deg, #06F562 0%, #03FE94 100%));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: left;
        font-family: Audiowide;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        align-self: flex-start;
        width: 100%;
    }

    .about-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* Align chip-label to center in mobile view */
    .chip-label {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    /* Removed duplicate tech-label styles */

    .tech-icons {
        height: 300px;
    }

    /* Scale down orbits for mobile */
    #icon1,
    #icon2,
    #icon3,
    #icon4,
    #icon5,
    #icon6,
    #icon7,
    #icon8,
    #icon9 {
        transform-origin: center;
        transform: scale(0.7) rotate(var(--rotation)) translateX(var(--distance)) rotate(calc(-1 * var(--rotation)));
    }

    .orbit-1 {

        width: 140px;
        height: 140px;
    }

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

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