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

        :root {
            --primary: #00f5ff;
            --primary-dark: #00d4e6;
            --secondary: #ff006e;
            --accent: #ffbe0b;
            --purple: #8338ec;
            --bg-dark: #000814;
            --bg-darker: #000000;
            --bg-card: #001d3d;
            --bg-card-hover: #003566;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border: #1e293b;
            --glow-cyan: 0 0 80px rgba(0, 245, 255, 0.6);
            --glow-pink: 0 0 80px rgba(255, 0, 110, 0.6);
            --glow-purple: 0 0 80px rgba(131, 56, 236, 0.6);
        }

        body {
            font-family: 'Sora', sans-serif;
            background: var(--bg-darker);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at top, #000814 0%, #000000 100%);
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
        }

        .particle-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: float 25s ease-in-out infinite;
        }

        .particle-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 110, 0.12) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
            animation: float 20s ease-in-out infinite reverse;
        }

        .particle-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(131, 56, 236, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            animation: float 30s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 1;
            }
            33% { 
                transform: translate(100px, -100px) scale(1.1);
                opacity: 0.8;
            }
            66% { 
                transform: translate(-100px, 100px) scale(0.9);
                opacity: 0.6;
            }
        }

        /* Grid Lines */
        .grid-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--primary) 1px, transparent 1px),
                linear-gradient(90deg, var(--primary) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 8, 20, 0.7);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(0, 245, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            background: rgba(0, 8, 20, 0.95);
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            position: relative;
        }

        .nav-logo::before {
            content: '<';
            color: var(--primary);
            margin-right: 5px;
        }

        .nav-logo::after {
            content: '/>';
            color: var(--secondary);
            margin-left: 5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
            text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--purple));
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--primary);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .bar {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: 0.3s;
            box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 2rem 100px;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 8rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

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

        .hero-badge {
            display: inline-block;
            padding: 10px 24px;
            background: rgba(0, 245, 255, 0.1);
            border: 1px solid rgba(0, 245, 255, 0.3);
            border-radius: 50px;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
        }

        .hero-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -3px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
            background-size: 200% 200%;
        }

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

        .hero-subtitle {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 600px;
            line-height: 1.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 2px solid transparent;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        .btn i {
            position: relative;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
            color: white;
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 245, 255, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(0, 245, 255, 0.1);
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
            transform: translateY(-3px);
        }

        /* Hero Image */
        /* .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .floating-card {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .floating-card::before {
            content: '';
            position: absolute;
            inset: -30px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--purple));
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .floating-card::after {
            content: '';
            position: absolute;
            inset: -15px;
            background: linear-gradient(135deg, transparent, var(--primary), transparent);
            border-radius: 50%;
            opacity: 0.3;
            animation: rotate 8s linear infinite reverse;
        }

        .floating-card img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary);
            box-shadow: var(--glow-cyan), inset 0 0 40px rgba(0, 245, 255, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
            animation: floatImage 6s ease-in-out infinite;
        }

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

        .floating-card img:hover {
            transform: scale(1.05);
        } */

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease;
        }

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

        .avatar-container {
            position: relative;
            width: 450px;
            height: 450px;
            perspective: 1000px;
        }

        .avatar-border {
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--purple), var(--secondary));
            animation: rotate360 10s linear infinite;
            filter: blur(30px);
            opacity: 0.7;
        }

        @keyframes rotate360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .avatar-glow {
            position: absolute;
            inset: -40px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.9; }
        }

        .avatar-img {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--glow-strong);
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotateZ(0deg); }
            50% { transform: translateY(-25px) rotateZ(2deg); }
        }

        /* Floating Elements */
        .floating-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
            border: 2px solid var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow);
            animation: floatIcons 4s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            bottom: 20%;
            right: -15%;
            animation-delay: 1s;
        }

        .floating-icon:nth-child(3) {
            top: 60%;
            left: -10%;
            animation-delay: 2s;
        }

        @keyframes floatIcons {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Section Styling */
        section {
            padding: 120px 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 190, 11, 0.1);
            border: 1px solid rgba(255, 190, 11, 0.3);
            border-radius: 50px;
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, transparent 0%, rgba(0, 29, 61, 0.3) 50%, transparent 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 2;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(0, 29, 61, 0.5);
            border-radius: 20px;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
            transition: all 0.3s ease;
        }

        .stat::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat:hover::before {
            opacity: 1;
        }

        .stat:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
        }

        .stat h3 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .stat h3 i {
           font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .stat p {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-image .profile-pic {
            position: relative;
        }

        .about-image .profile-pic::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 30px;
            filter: blur(40px);
            opacity: 0.4;
            animation: pulse 4s ease-in-out infinite;
        }

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

        .about-image img {
            width: 100%;
            border-radius: 30px;
            border: 3px solid var(--primary);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .about-image img:hover {
            transform: scale(1.03) rotate(2deg);
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
        }

        .skill-category {
            background: rgba(0, 29, 61, 0.4);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 245, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--purple), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .skill-category:hover::before {
            transform: scaleX(1);
        }

        .skill-category:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
            background: rgba(0, 29, 61, 0.6);
        }

        .skill-category h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .skill-category h3::before {
            content: '';
            width: 6px;
            height: 30px;
            background: linear-gradient(180deg, var(--primary), var(--purple));
            border-radius: 3px;
            box-shadow: 0 0 15px var(--primary);
        }

        .skill-category p {
            color: var(--text-secondary);
            padding: 14px 20px;
            background: rgba(0, 245, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .skill-category p:hover {
            background: rgba(0, 245, 255, 0.15);
            transform: translateX(10px);
            color: var(--text-primary);
            border-left-color: var(--primary);
            box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--purple), var(--secondary));
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 5rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }

        .timeline-dot {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(0, 245, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
            border: 4px solid var(--bg-darker);
        }

        .timeline-dot i {
            color: white;
            font-size: 1.8rem;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .timeline-content {
            width: 45%;
            background: rgba(0, 29, 61, 0.5);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 245, 255, 0.2);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--primary);
            transform: translateY(-50%) rotate(45deg);
            box-shadow: 0 0 20px var(--primary);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            left: -10px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: -10px;
        }

        .timeline-content:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
        }

        .timeline-content h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .timeline-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .timeline-date {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.95rem;
            display: inline-block;
            padding: 8px 18px;
            background: rgba(255, 190, 11, 0.1);
            border-radius: 30px;
            border: 1px solid rgba(255, 190, 11, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Experience Cards */
        .experience {
            background: linear-gradient(180deg, rgba(0, 29, 61, 0.3) 0%, transparent 100%);
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 3rem;
        }

        .experience-card {
            background: rgba(0, 29, 61, 0.5);
            padding: 3rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 245, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--purple));
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s ease;
            box-shadow: 0 0 20px var(--primary);
        }

        .experience-card:hover::before {
            transform: scaleY(1);
        }

        .experience-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 245, 255, 0.3);
            background: rgba(0, 29, 61, 0.7);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .card-header i {
            font-size: 2.2rem;
            color: var(--primary);
            padding: 20px;
            background: rgba(0, 245, 255, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(0, 245, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
        }

        .card-header h3 {
            font-size: 1.4rem;
            color: var(--text-primary);
            font-weight: 800;
            line-height: 1.3;
        }

        .experience-card > p {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .experience-date {
            display: inline-block;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding: 8px 18px;
            background: rgba(0, 245, 255, 0.05);
            border-radius: 30px;
            border: 1px solid rgba(0, 245, 255, 0.2);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .experience-card ul {
            list-style: none;
            margin-left: 0;
        }

        .experience-card li {
            color: var(--text-secondary);
            padding-left: 30px;
            margin-bottom: 15px;
            position: relative;
            line-height: 1.8;
        }

        .experience-card li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.5rem;
            filter: drop-shadow(0 0 10px var(--primary));
        }

        /* Projects */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .project-card {
            background: rgba(0, 29, 61, 0.5);
            border-radius: 25px;
            overflow: hidden;
            border: 2px solid rgba(0, 245, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(131, 56, 236, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

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

        .project-card:hover {
            border-color: var(--primary);
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 245, 255, 0.4);
        }

        .project-image {
            width: 100%;
            height: 280px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(131, 56, 236, 0.2));
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.15) rotate(2deg);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 8, 20, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .project-link {
            color: white;
            text-decoration: none;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border-radius: 50px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
        }

        .project-link:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(0, 245, 255, 0.6);
        }

        .project-content {
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .project-content h3 {
            color: var(--text-primary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1.4;
        }

        .project-content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .project-tech span {
            background: rgba(0, 245, 255, 0.1);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(0, 245, 255, 0.3);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-tech span:hover {
            background: rgba(0, 245, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
        }

        /* Certifications */
        .certifications {
            background: linear-gradient(180deg, transparent 0%, rgba(0, 29, 61, 0.3) 50%, transparent 100%);
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 3rem;
        }

        .cert-card {
            background: rgba(0, 29, 61, 0.5);
            padding: 2.5rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 245, 255, 0.1);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .cert-card:hover::before {
            left: 100%;
        }

        .cert-card:hover {
            border-color: var(--primary);
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(0, 245, 255, 0.4);
        }

        .cert-image {
            width: 100%;
            height: 240px;
            margin-bottom: 2rem;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(131, 56, 236, 0.1));
            border: 2px solid rgba(0, 245, 255, 0.2);
            position: relative;
        }

        .cert-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            cursor: pointer;
        }

        .cert-card:hover .cert-image img {
            transform: scale(1.1);
        }

        .cert-card h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .cert-card p {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-weight: 700;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .cert-card span {
            color: var(--accent);
            font-size: 0.95rem;
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 190, 11, 0.1);
            border-radius: 30px;
            border: 1px solid rgba(255, 190, 11, 0.3);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-info {
            position: sticky;
            top: 140px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(0, 29, 61, 0.5);
            border-radius: 20px;
            border: 2px solid rgba(0, 245, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--primary);
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
        }

        .contact-item i {
            font-size: 2rem;
            color: var(--primary);
            padding: 18px;
            background: rgba(0, 245, 255, 0.1);
            border-radius: 15px;
            min-width: 60px;
            text-align: center;
            border: 2px solid rgba(0, 245, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
        }

        .contact-item h3 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .contact-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            padding: 16px 32px;
            background: rgba(0, 29, 61, 0.5);
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            border: 2px solid rgba(0, 245, 255, 0.3);
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--purple));
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
        }

        /* Contact Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1.5rem 2rem;
            background: rgba(0, 29, 61, 0.5);
            border: 2px solid rgba(0, 245, 255, 0.2);
            border-radius: 15px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
            background: rgba(0, 29, 61, 0.7);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 200px;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            background: rgba(0, 8, 20, 0.8);
            padding: 4rem 2rem;
            text-align: center;
            border-top: 2px solid rgba(0, 245, 255, 0.1);
            margin-top: 100px;
        }

        footer p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        footer .social-links {
            justify-content: center;
        }

        footer .social-links a {
            color: var(--primary);
            font-size: 1.5rem;
            padding: 15px;
            background: rgba(0, 29, 61, 0.5);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 245, 255, 0.3);
        }

        footer .social-links a:hover {
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            transform: translateY(-8px) rotate(360deg);
            box-shadow: 0 10px 40px rgba(0, 245, 255, 0.5);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.97);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            cursor: pointer;
            backdrop-filter: blur(20px);
        }

        .modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            max-width: 95vw;
            max-height: 95vh;
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-image {
            max-width: 100%;
            max-height: 95vh;
            border-radius: 20px;
            box-shadow: 0 0 100px rgba(0, 245, 255, 0.8);
            border: 3px solid var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 5rem;
            }

            .hero-image {
                order: -1;
            }

            .floating-card {
                width: 350px;
                height: 350px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .contact-info {
                position: relative;
                top: 0;
            }

            .timeline::before {
                left: 35px;
            }

            .timeline-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline-item:nth-child(odd) {
                align-items: flex-start;
            }

            .timeline-content {
                width: calc(100% - 100px);
                margin-left: 100px;
            }

            .timeline-dot {
                left: 35px;
            }

            .timeline-content::before {
                left: -10px !important;
                right: auto !important;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 85px;
                flex-direction: column;
                background: rgba(0, 8, 20, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 3rem 0;
                border-top: 1px solid rgba(0, 245, 255, 0.2);
                gap: 2rem;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .skills-grid,
            .experience-grid,
            .projects-grid,
            .cert-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 80px 1.5rem;
            }

            .hero {
                padding: 120px 1.5rem 80px;
            }

            .section-header {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 480px) {
            .about-stats {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .floating-card {
                width: 280px;
                height: 280px;
            }

            .social-links {
                flex-direction: column;
            }

            .social-link {
                width: 100%;
                justify-content: center;
            }
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--purple), var(--secondary));
            z-index: 1001;
            box-shadow: 0 0 20px var(--primary);
        }