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

        :root {
            --primary-color: #6C63FF;
            --secondary-color: #FF6584;
            --accent-color: #00D9FF;
            --dark-bg: #0F0F1E;
            --light-bg: #1A1A2E;
            --text-light: #E4E4E4;
            --text-gray: #A0A0A0;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(108, 99, 255, 0.2);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(15, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            padding: 15px 5%;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            animation: fadeInLeft 0.8s ease;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            animation: fadeInRight 0.8s ease;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 100px 5% 50px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-color);
            top: -10%;
            right: -10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--secondary-color);
            bottom: -10%;
            left: -10%;
            animation-delay: 7s;
        }

        .shape-3 {
            width: 350px;
            height: 350px;
            background: var(--accent-color);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 14s;
        }

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

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(108, 99, 255, 0.2);
            border: 1px solid rgba(108, 99, 255, 0.5);
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease 0.2s backwards;
        }

        .hero h1 {
            font-size: 70px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--text-gray);
            margin-bottom: 20px;
            font-weight: 400;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .hero-description {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.8s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 1s backwards;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            border: none;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--primary-color);
        }

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

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            width: 2px;
            height: 40px;
            background: var(--gradient-1);
            display: block;
            margin: 0 auto 10px;
            border-radius: 2px;
        }

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

        /* Section Styles */
        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(108, 99, 255, 0.15);
            border: 1px solid rgba(108, 99, 255, 0.3);
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .section-title h2 {
            font-size: 50px;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .about-text h3 {
            font-size: 32px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .about-text p {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(108, 99, 255, 0.1);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Experience Timeline */
        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-1);
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            padding-left: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -46px;
            top: 0;
            width: 15px;
            height: 15px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid var(--dark-bg);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.3);
        }

        .timeline-date {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(108, 99, 255, 0.2);
            border-radius: 20px;
            font-size: 13px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .timeline-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .timeline-company {
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .timeline-item ul {
            list-style: none;
            padding: 0;
        }

        .timeline-item li {
            color: var(--text-gray);
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .timeline-item li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .education-section {
            margin-top: 60px;
        }

        .education-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 25px 30px;
            border-radius: 15px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .education-item:hover {
            background: rgba(108, 99, 255, 0.1);
            transform: translateX(10px);
        }

        .education-item h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .education-item span {
            color: var(--primary-color);
            font-size: 14px;
        }

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

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        /* .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: var(--gradient-1);
            opacity: 0.8;
            transition: all 0.4s ease;
        }

        .project-card:nth-child(2)::before { background: var(--gradient-2); }
        .project-card:nth-child(3)::before { background: var(--gradient-3); }
        .project-card:nth-child(4)::before { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .project-card:nth-child(5)::before { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        .project-card:nth-child(6)::before { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .project-card:nth-child(7)::before { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); }
        .project-card:nth-child(8)::before { background: linear-gradient(135deg, #fdcbf1 0%, #e6dee9 100%); } */

        .project-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-color);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.3);
        }

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

        .project-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 1;
        }

        .project-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .project-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .project-description {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .project-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .project-link:hover {
            gap: 15px;
        }

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

        .skill-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

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

        .skill-card:hover {
            transform: translateY(-10px);
            background: rgba(108, 99, 255, 0.1);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
        }

        .skill-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-tag {
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            font-size: 14px;
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Process Section */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .process-step {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-15px);
            background: rgba(108, 99, 255, 0.1);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
        }

        .process-step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .process-step p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            background: rgba(108, 99, 255, 0.1);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
        }

        .contact-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-card p,
        .contact-card a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 5%;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--light-bg);
                flex-direction: column;
                padding: 80px 30px;
                gap: 30px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .section-title h2 {
                font-size: 35px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .cursor, .cursor-follower {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 5%;
            }
        }
   