.skills-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 20px;
}

/* BIGGER CARDS */
.skill-card {
    background-color: white;
    width: 140px; /* Increased from 80px */
    height: 140px; 
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eee;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: red;
}

.skill-card img {
    height: 65px; /* Increased from 35px */
    width: 65px;
    object-fit: contain;
    margin-bottom: 10px;
}

.skill-card span {
    font-size: 0.9rem; /* Increased */
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 0 5px;
}

.cert-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}