* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s ease-in-out infinite;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to bottom, #0a0e27 0%, #1a1a3e 50%, #2d1b4e 100%);
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        header {
            text-align: center;
            padding: 100px 20px 60px;
            color: white;
            animation: fadeIn 1s ease-out;
        }

        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 8px solid rgba(139, 92, 246, 0.3);
            object-fit: cover;
            margin-bottom: 20px;
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
            animation: float 3s ease-in-out infinite;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            font-weight: 700;
            background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.4rem;
            color: #c4b5fd;
            margin-bottom: 30px;
        }

        .social-links {
            margin-top: 30px;
        }

        .social-links a {
            display: inline-block;
            color: white;
            font-size: 1.8rem;
            margin: 0 15px;
            transition: all 0.3s;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
        }

        .social-links a:hover {
            transform: translateY(-5px);
            color: #a78bfa;
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
        }

        .about-section {
            background: rgba(30, 27, 75, 0.4);
            backdrop-filter: blur(10px);
            margin: -80px 20px 40px;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.3);
            position: relative;
            z-index: 2;
            animation: slideInLeft 0.8s ease-out;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-align: justify;
            color: #d1d5db;
        }

        .skills {
            margin-top: 40px;
        }

        .skills h3 {
            margin-bottom: 20px;
            color: #a78bfa;
            font-size: 1.5rem;
        }

        .skill-bar {
            margin-bottom: 20px;
        }

        .skill-name {
            margin-bottom: 8px;
            font-weight: 500;
            color: #c4b5fd;
            font-size: 0.95rem;
        }

        .bar {
            height: 12px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #60a5fa);
            border-radius: 10px;
            transition: width 2s ease;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        .contact-section {
            text-align: center;
            padding: 80px 20px;
            color: white;
            animation: slideInRight 0.8s ease-out;
        }

        .contact-section h2 {
            color: white;
            background: none;
            -webkit-text-fill-color: white;
        }

        .contact-section p {
            color: #c4b5fd;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.5);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
            background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
        }

        footer {
            text-align: center;
            padding: 40px;
            color: rgba(196, 181, 253, 0.7);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .profile-img {
                        
                width: 150px;
                height: 150px;
            }
            
            .about-section {
                padding: 40px 25px;
                margin: -60px 10px 30px;
            }
            
            h2 {
                font-size: 2rem;
            }
          }

    	.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1000;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}
