/* About Section Redesign */
.about-redesign {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 2rem 0;
    margin-bottom: 4rem;
}

/* Left Column: Text Content */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    height: 100%;
}

.about-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.6;
    margin-bottom: -1rem;
}

.about-headline {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    background: radial-gradient(circle at top left, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 90%;
}

.about-footer-text {
    margin-top: auto;
    font-size: 1.1rem;
    color: var(--text-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.about-footer-text strong {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.about-footer-text span {
    opacity: 0.7;
}



/* Right Column: Skills Grid */
.skills-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.skill-card-block {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
    margin: -1px 0 0 -1px;
}

.skill-card-block:hover {
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.2);
}

.skill-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.skill-card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
}

.skill-card-stat {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0.5rem 0 0 0;
}

.skill-card-stat-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    background: radial-gradient(circle at top left, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    justify-content: center;
}

.skill-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.skill-card-block:hover .skill-tag {
    border-color: var(--primary-color);
    color: var(--text-color);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-redesign {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-text-content {
        gap: 2rem;
    }

    .about-headline {
        font-size: 2.5rem;
    }

    .skills-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .skills-grid-layout {
        grid-template-columns: 1fr;
    }

    .skill-card-block {
        min-height: auto;
        padding: 2rem;
        border-width: 1px;
        margin: 0 0 -1px 0;
    }

    .skill-card-stat-large {
        font-size: 2rem;
    }

    .skill-card-description {
        font-size: 0.85rem;
    }
}

/* Right Column Wrapper */
.about-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}

/* Skills List Styling */
.about-skills-list {
    width: 100%;
    padding: 0 1rem;
}

.skills-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    /* Increased spacing */
    letter-spacing: -0.02em;
}

.skills-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.skill-item {
    margin-bottom: 1.25rem;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
}

.skill-name {
    font-weight: 600;
}

.skill-percentage {
    font-weight: 700;
    opacity: 0.9;
}

.skill-bar-bg {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    background-color: #fff;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive for Right Column */
@media (max-width: 992px) {
    .about-right-column {
        max-width: 100%;
        margin-left: 0;
    }

    .about-skills-list {
        padding: 0;
    }
}