        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
            color: #fff;
            overflow-x: hidden;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(100, 200, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 200, 255, 0.1);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .about-section {
            position: relative;
            min-height: 100vh;
            padding: 120px 50px 50px;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: start;
        }

        .about-left {
            animation: fadeInLeft 1s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .profile-card {
            background: rgba(20, 25, 45, 0.6);
            border: 1px solid rgba(100, 200, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            position: sticky;
            top: 120px;
        }

        .profile-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a0e27;
            box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
        }

        .profile-icon svg {
            width: 60px;
            height: 60px;
        }

        .profile-card h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .role {
            color: #64c8ff;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #a0a0b0;
            margin-bottom: 25px;
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(100, 200, 255, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #a0a0b0;
            font-size: 14px;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            color: #64c8ff;
        }

        .about-right {
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .about-content {
            background: rgba(20, 25, 45, 0.6);
            border: 1px solid rgba(100, 200, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .about-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #64c8ff;
        }

        .about-content p {
            color: #a0a0b0;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: rgba(100, 200, 255, 0.05);
            border: 1px solid rgba(100, 200, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(100, 200, 255, 0.1);
            box-shadow: 0 10px 30px rgba(100, 200, 255, 0.2);
        }

        .stat-number {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(45deg, #64c8ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #a0a0b0;
            font-size: 14px;
        }

        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #64c8ff, #00ff88);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 35px;
            padding-left: 15px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: #64c8ff;
            border-radius: 50%;
            border: 3px solid #0a0e27;
            box-shadow: 0 0 0 3px rgba(100, 200, 255, 0.3);
        }

        .timeline-date {
            color: #00ff88;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .timeline-company {
            color: #64c8ff;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .timeline-desc {
            color: #a0a0b0;
            font-size: 14px;
            line-height: 1.6;
        }

        .skills-section {
            background: rgba(20, 25, 45, 0.6);
            border: 1px solid rgba(100, 200, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 25px;
        }

        .skill-category h4 {
            color: #64c8ff;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            color: #fff;
            font-size: 14px;
        }

        .skill-bar {
            width: 100%;
            height: 8px;
            background: rgba(100, 200, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #64c8ff, #00ff88);
            border-radius: 10px;
            transition: width 1.5s ease-out;
            box-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
        }

        .languages {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .language-badge {
            padding: 10px 20px;
            background: rgba(100, 200, 255, 0.1);
            border: 1px solid rgba(100, 200, 255, 0.3);
            border-radius: 25px;
            font-size: 14px;
            color: #64c8ff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 968px) {
            .about-container {
                grid-template-columns: 1fr;
            }

            .profile-card {
                position: relative;
                top: 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            nav {
                padding: 20px 30px;
            }

            .about-section {
                padding: 120px 30px 50px;
            }
        }