.skills-section {
    margin-top: 85px;
    min-height: calc(100vh - 85px);
    padding: clamp(1rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(135deg, #2a1b3d 0%, #44318d 50%, #632c7a 100%);
    width: 100%;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(230, 126, 212, 0.2);
    width: 100%;
}

.skills-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.skills-header h1 {
    color: #e67ed4;
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.skills-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(230, 126, 212, 0.1);
}

.skill-category h2 {
    color: #e67ed4;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(230, 126, 212, 0.2);
    padding-bottom: 0.8rem;
}

.skill-category h2 i {
    font-size: 1.3rem;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.7rem 1rem;
    border-radius: 6px;
    border-left: 3px solid #e67ed4;
}

.skill-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}

.key-strengths {
    margin-bottom: 2.5rem;
}

.key-strengths h2 {
    color: #e67ed4;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1rem;
}

.strength-item {
    background: rgba(230, 126, 212, 0.1);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(230, 126, 212, 0.2);
}

.strength-item i {
    color: #e67ed4;
    font-size: 1.2rem;
    width: 24px;
}

.strength-item span {
    color: #fff;
    font-size: 0.95rem;
}

.cert-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(230, 126, 212, 0.2);
}

.cert-summary h2 {
    color: #e67ed4;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.cert-item i {
    color: #e67ed4;
    font-size: 1.1rem;
}

.cert-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .skills-section {
        margin-top: 70px;
        padding: 0.8rem;
    }
    
    .skills-container {
        padding: 1.2rem;
    }
    
    .skill-category {
        padding: 1rem;
    }
    
    .skill-category h2 {
        font-size: 1.1rem;
    }
    
    .skill-item {
        padding: 0.6rem 0.8rem;
    }
    
    .skill-name {
        font-size: 0.9rem;
    }
    
    .strength-item {
        padding: 0.8rem;
    }
    
    .strength-item i {
        font-size: 1rem;
    }
    
    .strength-item span {
        font-size: 0.9rem;
    }
    
    .cert-item {
        padding: 0.6rem;
    }
    
    .cert-item i {
        font-size: 1rem;
    }
    
    .cert-item span {
        font-size: 0.9rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .skills-section {
        margin-top: 70px;
        padding: 0.8rem;
    }
    
    .skills-container {
        padding: 1.2rem;
    }
    
    .skills-header {
        margin-bottom: 1.2rem;
    }
    
    .skills-header h1 {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}