/* SECTION */
.skills-section {
    padding: 40px 20px 100px;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.section-title::before {
    display: none;
}

.section-title::after {
    display: none;
}

/* STACKED LAYOUT (READABLE) */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.skill-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 16px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

/* HOVER */
.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34,197,94,0.2);
    border: 1px solid rgba(34,197,94,0.3);
}

/* TITLE */
.skill-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* IMAGE */
.skill-image {
    width: 100%;
    height: 160px;   /* 🔥 bigger = readable */
    border-radius: 12px;
    overflow: hidden;
}

/* IMAGE FIT */
.skill-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}