/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skill-card {
    background: var(--card-bg);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adobe-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-color);
    font-family: var(--font-heading);
}

.ps {
    background: #31A8FF;
    color: #001E36;
}

.ai {
    background: #FF9A00;
    color: #330000;
}

.pr {
    background: #9999FF;
    color: #00005B;
}

.ae {
    background: #9999FF;
    color: #00005B;
}

.cdr {
    background: #58C322;
    color: white;
}

/* Corel Green-ish */
.canva {
    background: linear-gradient(135deg, #00C4CC, #7D2AE8);
    color: white;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.skill-progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    border-radius: 10px;
    width: 0%;
    /* Will be set inline */
    transition: width 1.5s ease-in-out;
}

.skill-percent {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
    font-weight: 500;
}