.about{
    height: 100vh;
    width: 100%;
    color: var(--text-white);
}
/* Section */
.about {
    padding: 80px 10%;
}
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Heading */
.about h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

/* Paragraph */
.about-content p {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.about-stats h2 {
    color: #6c63ff;
    font-size: 32px;
}

.about-stats p {
    font-size: 14px;
    color: var(--text-white);
}

/* Skills Card */
.about-skills {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.about-skills h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Skill Buttons */
.skills-grid span {
    background: linear-gradient(90deg, #6c63ff, #8a2be2);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}


@media (max-width: 768px) {

    .about {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}