
/* =====================
   SKILLS SECTION
   ===================== */

.skills-wrapper {
    height: 400vh;
    position: relative;
    background: #130f1e;
}

.skills-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.skills-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-top: 70px;
}

.skills-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Avatar */
.skills-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 4px solid #7873f5; */
    box-shadow: 0 0 40px rgba(120, 115, 245, 0.6),
                0 0 60px rgba(255, 110, 196, 0.4);
    z-index: 10;
    background: conic-gradient(#7873f5, #ff6ec4, #7873f5);
    /* filter: blur(10px); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 25px;

}

.skills-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
}

/* Skill Orbit Container */
.skill-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.5s ease-out;
}

/* Skill Meter (Gauge Container) */
.skill-meter {
    position: relative;
    width: 90px;
    height: 90px;
}

/* SVG Gauge */
.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: #2a2438;
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 2s ease;
}

/* Skill Icon (Center of Gauge) */
.skill-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e162b;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #7873f5;
}

.skill-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Labels */
.skill-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff36a;
    text-align: center;
}

.skill-percent {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    background-clip: text;
    color: transparent;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .skills-container {
        height: 500px;
    }
    
    .skills-center {
        width: 100px;
        height: 100px;
    }
    
    .skill-meter {
        width: 90px;
        height: 90px;
    }
    
    .skill-icon {
        width: 45px;
        height: 45px;
    }
    
    .skill-icon img {
        width: 28px;
        height: 28px;
    }
    
    .skill-label {
        font-size: 12px;
    }
    
    .skill-percent {
        font-size: 14px;
    }
}

