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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
        }

        canvas {
            display: block;
            width: 100%;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
            background-size: 200% 200%;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            /* entrance animation */
            animation: navbarEnter 0.6s ease-out forwards, bgMove 20s linear infinite;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #a855f7, #3b82f6);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: #fff;
        }

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

        .hire-btn {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
            border: 1.5px solid transparent;
            border-image: linear-gradient(135deg, #a855f7, #3b82f6);
            border-image-slice: 1;
            border-radius: 30px;
            padding: 10px 28px !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        /* navbar entry/background animation keyframes */
        @keyframes navbarEnter {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes bgMove {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 100% 0;
            }
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 2px 0;
            transition: all 0.3s ease;
        }

        /* Home Section */
        .home-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .content {
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        h1 {
            font-size: clamp(3rem, 13vw, 11rem);
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
            animation: glowPulse 3s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            from {
                filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
            }

            to {
                filter: drop-shadow(0 0 60px rgba(168, 85, 247, 0.6));
            }
        }

        .tagline {
            font-size: clamp(0.8rem, 2vw, 1.2rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
        }

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

        .glass-button {
            position: relative;
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .glass-button:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        }

        /* About Section */
        .about-section {
            padding: 100px 0 50px;
            background: transparent;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #a855f7, #3b82f6);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }

        .image-wrapper {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .profile-img {
            width: 100%;
            height: auto;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            border: 3px solid #a855f7;
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
        }

        .experience-badge {
            position: absolute;
            bottom: 20px;
            right: -20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 50px;
            padding: 15px 25px;
            text-align: center;
        }

        .years {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-heading {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .highlight {
            background: linear-gradient(135deg, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .expertise-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }

        .tag {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 30px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #a855f7;
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-desc {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-features li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .service-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #a855f7;
        }

        .service-link {
            color: #a855f7;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-link:hover {
            color: #3b82f6;
            transform: translateX(5px);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #a855f7;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            padding: 40px;
        }

        .info-item {
            margin-bottom: 30px;
        }

        .info-item h4 {
            color: white;
            margin-bottom: 10px;
        }

        .info-item p {
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-link {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: #a855f7;
            transform: translateY(-5px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(168, 85, 247, 0.3);
            padding: 60px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #a855f7;
            padding-left: 5px;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .footer-social a {
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

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

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right 0.3s ease;
                padding: 20px;
            }

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

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

            .about-image {
                max-width: 350px;
                margin: 0 auto;
            }

            .experience-badge {
                right: -10px;
            }

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