
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0a0121 0%, #02022b 50%, #140133 100%);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .smoke-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(0, 0, 211, 0) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(14, 113, 135, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .glass-effect {
            margin-top: 50px;
            height: 75%;
            background: rgba(9, 6, 61, 0.418);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.973);
        }

        @media (max-width:768px) {
            .glass-effect{
                margin-top: 90px;
            }
        }

        .nav-glass {
            background: rgba(1, 4, 41, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gradient-text {
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-glow {
            background: linear-gradient(45deg, #667eea, #764ba2);
            box-shadow: 0 4px 15px 0 rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
        }

        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(102, 126, 234, 0.4);
        }

        .section-title {
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .skill-bar {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 8px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 10px;
            transition: width 1.5s ease;
        }

        .project-card {
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

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

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 8s ease-in-out infinite;
            opacity: 0.3;
        }

        .profile-overlay {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(15px);
            z-index: 50;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            overflow-y: auto;
        }

        .profile-overlay.active {
            transform: translateY(100%);
        }

        .profile-overlay.closing {
            transform: translateY(200%);
        }

        .profile-close-btn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .profile-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .profile-timeline {
            position: relative;
            padding-left: 2rem;
        }

        .profile-timeline::before {
            content: '';
            position: absolute;
            left: 0.75rem;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .profile-timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }

        .profile-timeline-item::before {
            content: '';
            position: absolute;
            left: -2.25rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: #ffffff;
            border: 2px solid #667eea;
            border-radius: 50%;
        }

        .profile-timeline-item h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
        }

        .profile-timeline-item .date {
            font-size: 0.875rem;
            color: #a0a0ff;
            font-weight: 500;
        }

        .profile-timeline-item .company {
            font-size: 1rem;
            color: #d1d1d1;
            font-weight: 400;
        }

        .profile-timeline-item p {
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.6;
        }
