/* Skills Section Custom Styles */
.skill-category {
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.skill-category h3 {
    font-size: 1.5em;
    font-weight: 600;
    border-bottom: 2px solid #e4e4ea;
    padding-bottom: 15px;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f5;
}

.skill-item:last-child {
    border-bottom: none;
}

.skill-name {
    font-size: 1.05em;
    color: #374054;
    font-weight: 500;
}

.skill-level {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e4e4ea;
    transition: all 0.3s ease;
}

.dot.filled {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.4);
}

.skill-item:hover .dot.filled {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.6);
}

/* Responsive Design for Skills */
@media only screen and (max-width: 768px) {
    .skill-category {
        margin-bottom: 25px;
        padding: 20px;
    }
    
    .skill-category h3 {
        font-size: 1.3em;
    }
    
    .skill-name {
        font-size: 0.95em;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .skill-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .skill-level {
        margin-top: 5px;
    }
}
