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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0b1a;
            color: #e0ddf2;
            line-height: 1.6;
        }

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

        header {
            background: linear-gradient(135deg, #1a1433 0%, #2d1f4e 100%);
            padding: 40px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(80, 9, 131, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links {
            padding-left: 70px;
            display: flex;
            gap: 30px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #d8b4fe;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #c084fc;
            text-shadow: 0 0 10px #d5bce0c5, 0 0 20px #8d0dc0cb;
        }

        .profile-picture{
            border-radius: 50%;
            width:100%;
            height:auto;
        }

        .hero {
            padding: 150px 0 80px 0;
            background: linear-gradient(135deg, #0d0b1a 0%, #1a1433 50%, #2d1f4e 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        .hero-text h1 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #ac9fd4, #c084fc, #513c8d);
            background-size: 200%;
            background-clip: text;  
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s infinite linear;
            text-shadow: 0 0 10px #51296400, 0 0 20px #8d0dc0cb;
        }

        @keyframes shine {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-text .subtitle {
            font-size: 1.2rem;
            color: #b8a6e6;
            margin-bottom: 5px;
            -webkit-text-fill-color: #b8a6e6;
        }

        .hero-text .tagline {
            font-size: 1.1rem;
            color: #9b8bc4;
            margin-bottom: 25px;
            -webkit-text-fill-color: #9b8bc4;
        }

        .hero-text p {
            font-size: 1.05rem;
            color: #cdc3ed;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            color: #fff;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: #c084fc;
            border: 2px solid #7c3aed;
        }

        .btn-secondary:hover {
            background: rgba(124, 58, 237, 0.15);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: #d8b4fe;
            border: 2px solid #4c1d95;
        }

        .btn-outline:hover {
            background: rgba(76, 29, 149, 0.3);
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1;
            min-width: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-placeholder {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4c1d95, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: #fff;
            box-shadow: 0 0 60px rgba(124, 58, 237, 0.3);
            border: 4px solid #6d28d9;
        }

        .profile-placeholder i {
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #c084fc;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #a78bfa;
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
            background: rgba(26, 20, 51, 0.5);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #2d1f4e;
        }

        .about-text {
            flex: 2;
            min-width: 280px;
        }

        .about-text p {
            margin-bottom: 15px;
            color: #cdc3ed;
            font-size: 1.05rem;
        }

        .about-text strong {
            color: #c084fc;
        }

        .about-stats {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .stat-item {
            background: #1a1433;
            padding: 15px 25px;
            border-radius: 12px;
            border-left: 4px solid #7c3aed;
            text-align: center;
        }

        .stat-item .number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #c084fc;
        }

        .stat-item .label {
            font-size: 0.9rem;
            color: #9b8bc4;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .skill-card {
            background: #1a1433;
            padding: 25px 15px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #2d1f4e;
            transition: all 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            border-color: #7c3aed;
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
        }

        .skill-card i {
            font-size: 2.8rem;
            color: #a78bfa;
            margin-bottom: 10px;
        }

        .skill-card h4 {
            color: #d8b4fe;
            font-size: 1rem;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .project-card {
            background: #1a1433;
            border-radius: 20px;
            padding: 30px 25px;
            border: 1px solid #2d1f4e;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-8px);
            border-color: #7c3aed;
            box-shadow: 0 8px 35px rgba(124, 58, 237, 0.15);
        }

        .project-card .icon {
            font-size: 2.5rem;
            color: #a78bfa;
            margin-bottom: 15px;
        }

        .project-card h3 {
            color: #c084fc;
            margin-bottom: 10px;
        }

        .project-card p {
            color: #b8a6e6;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .project-card a {
            color: #b8a6e6;
            text-decoration: none;
        }

        .project-tag {
            display: inline-block;
            background: #2d1f4e;
            color: #a78bfa;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 6px;
            margin-bottom: 6px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .contact-item {
            background: #1a1433;
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #2d1f4e;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: #7c3aed;
            transform: scale(1.03);
        }

        .contact-item i {
            font-size: 2.2rem;
            color: #a78bfa;
            margin-bottom: 10px;
        }

        .contact-item a {
            color: #d8b4fe;
            text-decoration: none;
            display: block;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: #c084fc;
        }

        .contact-item .label {
            font-size: 0.85rem;
            color: #9b8bc4;
        }

        .cv-section {
            text-align: center;
            margin-top: 40px;
            padding: 40px;
            background: rgba(26, 20, 51, 0.5);
            border-radius: 20px;
            border: 1px solid #2d1f4e;
        }

        .cv-section p {
            color: #cdc3ed;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        footer {
            background: #0a0815;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #1a1433;
        }

        footer p {
            color: #7a6a9e;
            font-size: 0.95rem;
        }

        .social-footer {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
        }

        .social-footer a {
            color: #7a6a9e;
            font-size: 1.4rem;
            transition: all 0.3s;
        }

        .social-footer a:hover {
            color: #c084fc;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero {
                padding: 130px 0 60px 0;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .nav-links {
                gap: 15px;
                margin-top: 10px;
                justify-content: center;
            }
            .hero-content {
                flex-direction: column-reverse;
                text-align: center;
            }
            .hero-text p {
                margin: 0 auto 30px auto;
            }
            .btn-group {
                justify-content: center;
            }
            .profile-placeholder {
                width: 200px;
                height: 200px;
                font-size: 4rem;
            }
            .about-content {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 10px 22px;
                font-size: 0.9rem;
            }
            .profile-placeholder {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }
        }