#about {
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    padding-top: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Simplified skills container */
.skills-container {
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(106, 226, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.skills-container h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--accent-cyan);
    text-align: center;
}

.skill-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.skill-category h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--text-white);
    border-bottom: 1px solid rgba(106, 226, 255, 0.2);
    padding-bottom: 0.5rem;
    font-family: 'Clash Display', sans-serif;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Optimized skill tags */
.skill-tag {
    background: rgba(106, 226, 255, 0.2);
    border: 2px solid rgba(106, 226, 255, 0.4);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0.4rem 0.2rem;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.skill-tag:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Category-specific colors */
.frontend .skill-tag {
    background: rgba(106, 226, 255, 0.2);
    border: 2px solid rgba(106, 226, 255, 0.4);
}

.backend .skill-tag {
    background: rgba(164, 133, 255, 0.2);
    border: 2px solid rgba(164, 133, 255, 0.4);
}

.tools .skill-tag {
    background: rgba(255, 102, 196, 0.2);
    border: 2px solid rgba(255, 102, 196, 0.4);
}

/* Ripple effect for skill tags - simplified */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    width: 5px;
    height: 5px;
    transform: translate(-50%, -50%);
}

/* Quote styling */
.quote-container {
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-container:hover {
    transform: scale(1.02);
    color: rgb(164, 133, 255);
    box-shadow: 0 10px 30px rgba(164, 133, 255, 0.2);
}

blockquote {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--text-white);
    position: relative;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

blockquote::before, blockquote::after {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 3rem;
    color: var(--accent-purple);
    opacity: 0.5;
    position: absolute;
}

blockquote::before {
    top: -20px;
    left: -10px;
}

blockquote::after {
    bottom: -40px;
    right: -10px;
}

/* Profile section styling */
.profile-container {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(106, 226, 255, 0.4);
}

.profile-circle img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.profile-container h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-container p {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-text {
        grid-column: 1 / 2;
    }

    .skills-container {
        grid-column: 2 / 3;
    }

    .quote-container {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}