/* Skill Bars with Draggable Functionality Styles */
#myrobot {
    position: absolute;
    left: 40%;
}
.skill-bar-container {
    margin: 20px 0;
    position: relative;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    color: #333;
}

.skill-level {
    color: #666;
}

.skill-bar-bg {
    background: #f0f0f0;
    height: 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    border-radius: 6px;
    transition: width 0.3s ease;
}

.skill-handle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: grab;
    z-index: 2;
}

.skill-handle:active {
    cursor: grabbing;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1rem 0;
    }
}

.skill-bar-fill.animated {
    animation: moveStripes 2s linear infinite;
}
.skill-section-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.skill-container {
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill-container:hover {
    transform: translateY(-5px);
}

.skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.skill-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #f5f5f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.skill-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.skill-percentage {
    font-weight: 700;
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress {
    height: 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.progress-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.drag-handle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.2s ease;
}

.drag-handle:hover {
    transform: translate(50%, -50%) scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.drag-handle:active {
    cursor: grabbing;
}

.drag-handle i {
    color: #555;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skill-container {
        padding: 12px;
    }
    #myrobot {
      
        left: 0;     
    }
    .skill-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .skill-name {
        font-size: 14px;
    }
}