/* ABOUT SECTION */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    text-align: left;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.my-avatar {
    position: left;
    height: auto;
    width: 20%;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-list {
    list-style: none;
}

.info-item {
    margin-bottom: 1rem;
    display: flex;
}

.info-item span {
    font-weight: 600;
    margin-right: 0.5rem;
    min-width: 120px;
    color: var(--primary-color);
}

.skills {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-in-out;
}