/* About Section Styles */
.about-section {
    padding: 100px 5%;
    background: transparent;
    color: white;
    position: relative;
    z-index: 5;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 160px;
    align-items: center;
}

.section-title, .skills-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title span, .skills-title span {
    color: #38bdf8;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.personal-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    background: rgba(56, 189, 248, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 3px solid #38bdf8;
    font-size: 0.95rem;
}

/* Skills Bars Styling */
.skill-box {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    border-radius: 10px;
    position: relative;
    transition: width 1.5s ease-in-out;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .personal-info {
        justify-content: center;
    }

    .section-title, .skills-title {
        font-size: 2rem;
    }
}