
.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    animation: fadeIn 0.6s ease both;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}


.about-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
}


.about-text h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #6c63ff;
    border-radius: 2px;
    margin-top: 8px;
}

.about-text p {
    color: #9090a8;
    font-size: 1rem;
    margin-bottom: 16px;
    max-width: 560px;
}

.about-text .btn {
    margin-top: 12px;
}


.about-card {
    background-color: #16161f;
    border: 1px solid #2a2a3a;
    border-top: 3px solid #6c63ff;
    border-radius: 12px;
    padding: 30px;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}


.about-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.about-card ul li {
    color: #9090a8;
    font-size: 0.9rem;
    padding: 10px 14px;
    background-color: #0d0d14;
    border-radius: 8px;
    border-left: 3px solid #6c63ff;
}



.skills-section {
    background-color: #16161f;
    padding: 70px 60px;
    text-align: center;
    animation: fadeIn 0.6s ease both;
}

.skills-section h2 {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
}

.skills-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #6c63ff;
    border-radius: 2px;
    margin: 8px auto 0;
}


.skills {
    max-width: 700px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
}

.skill-box p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f0f0f8;
}


.progress {
    background-color: #2a2a3a;
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
}


.progress div {
    height: 100%;
    background-color: #6c63ff;
    border-radius: 20px;
}



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px;
    animation: fadeIn 0.6s ease both;
}

.container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.container h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #6c63ff;
    border-radius: 2px;
    margin-top: 8px;
}


.resume-card {
    background-color: #16161f;
    border: 1px solid #2a2a3a;
    border-top: 3px solid #6c63ff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 32px;
}

.resume-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.resume-role {
    color: #6c63ff;
    font-size: 0.95rem;
    margin-bottom: 36px;
}


.resume-section-title {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9090a8;
    border-bottom: 1px solid #2a2a3a;
    padding-bottom: 8px;
    margin-bottom: 20px;
    margin-top: 28px;
}


.resume-item {
    margin-bottom: 20px;
}


.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.resume-item-header strong {
    font-size: 0.95rem;
    color: #f0f0f8;
}

.resume-item-header span {
    font-size: 0.8rem;
    color: #9090a8;
}

.resume-item-sub {
    color: #6c63ff;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.resume-item p {
    color: #9090a8;
    font-size: 0.85rem;
    line-height: 1.7;
}



@media (max-width: 768px) {

    .about-section {
        padding: 40px 24px;
    }

    
    .about-container {
        grid-template-columns: 1fr;
    }

    .skills-section {
        padding: 50px 24px;
    }

    .container {
        padding: 50px 24px;
    }

    .resume-card {
        padding: 24px 18px;
    }

    .resume-item-header {
        flex-direction: column;
        gap: 4px;
    }
}
