.skill_body {
    background-color: #222;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    margin: 0;
    margin-top: 30px;
}

.skills-section {
    text-align: center;
}

.skills-section h2 {
    font-size: 2.7em;
    margin-bottom: 50px;
    color: #fff;
    margin-top: 0px;
}

.skills-section .highlight {
    color: red;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skills-box {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skills-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.skills-box h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.skills-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    width: 48%;
}

.skill {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.skill i {
    font-size: 20px;
    margin-right: 10px;
    color: cyan;
}

.skill-info {
    display: flex;
    flex-direction: column;
}

.skill-info .heading {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
}

.skill-info .subheading {
    margin: 0;
    font-size: 0.9em;
    font-weight: normal;
    color: #aaa;
}

.read-more {
    background-color: #6A52CC;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.read-more:hover {
    background-color: #f1c40f;
    color: #333;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .skills-box {
        width: 80%;
        margin-bottom: 20px;
    }

    .skills-columns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .column {
        width: 48%;
    }
    
}

@media (max-width: 480px) {
    .column {
        width: 48%;
    }
    .skill_body
    {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}
