:root {
    --white: #ffffff;
    --mint: #adffbf;
    --purple: #850aff;
    --pink: #f8dde4;
    --dark: #232528;
}


body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Particle Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(30px);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--purple);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--mint);
    top: 70%;
    left: 80%;
    animation-delay: 3s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--pink);
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(0, 40px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
}


/* Main Content */
.about-page {
    padding-top: 120px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    padding: 80px 0;
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    color: var(--white);
}

h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--purple), var(--mint));
    border-radius: 2px;
}

.highlight {
    color: var(--purple);
    font-weight: 700;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(133, 10, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--purple), var(--mint));
}

.about-text {
    flex: 1;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    text-align: center;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    border: 3px solid var(--mint);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: rotateY(0) rotateX(0);
    box-shadow: 0 30px 60px rgba(133, 10, 255, 0.3);
}

/* Skills Section */
.skills {
    margin-top: 40px;
}

.skills h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--mint);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-tags span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    animation-delay: calc(var(--delay) * 0.2s);
}

.skill-tags span:hover {
    background: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(133, 10, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.social-links a:hover {
    background: var(--purple);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text p {
        margin: 0 auto 30px;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    
    .about-page {
        padding-top: 150px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 30px 20px;
    }
}