 :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --dark: #121212;
            --darker: #0a0a0a;
            --light: #f0f0f0;
            --gray: #2a2a2a;
            --light-gray: #3d3d3d;
            --accent: #4FD1C5;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--light);
            background-color: var(--dark);
            line-height: 1.6;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--gray);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .navbar {
            display: flex;
            gap: 2rem;
        }

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

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

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

        .navbar a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .menu-toggle:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 15% 5% 5%;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
        }

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

        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
            background-color: #7a72ff;
        }

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

        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--gray);
        }

        /* About Section */
        .about {
            padding: 8rem 5%;
            background-color: var(--darker);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 5rem;
            color: var(--light);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .section-title span {
            color: var(--primary);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--gray);
        }

        .about-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary);
            border-radius: 20px;
            top: 20px;
            left: 20px;
            z-index: -1;
            opacity: 0.5;
        }

        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .about-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .skills {
            margin-top: 2rem;
        }

        .skills h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .skill-tag {
            background-color: var(--gray);
            color: var(--light);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

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

        /* Services Section */
        .services {
            padding: 8rem 5%;
            background-color: var(--dark);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--gray);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: 1px solid var(--light-gray);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Section */
        .contact {
            padding: 8rem 5%;
            background-color: var(--darker);
            position: relative;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-group {
            display: grid;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--light);
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            background-color: var(--gray);
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: var(--light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }

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

        .submit-btn {
            justify-self: start;
            margin-top: 1rem;
        }

        /* Footer */
        .footer {
            background-color: #080808;
            color: white;
            padding: 4rem 5% 2rem;
            border-top: 1px solid var(--gray);
        }

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

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--gray);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

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

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

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

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate {
            animation: fadeIn 1s ease forwards;
        }
        .text {
            color: var(--primary);
            display: inline-block;
        }

        .typed-cursor {
            color: var(--primary);
            opacity: 1;
            animation: blink 0.7s infinite;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* New UI Elements */
        .floating-shape {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .shape-1 {
            top: 20%;
            left: 10%;
            width: 200px;
            height: 200px;
        }

        .shape-2 {
            bottom: 10%;
            right: 15%;
            width: 250px;
            height: 250px;
        }

        /* Glow effect */
        .glow {
            text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
        }

        /* Section divider */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 4rem 0;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .about-container {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 25%;
                padding-bottom: 5rem;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
            }

            .hero-cta {
                justify-content: center;
                flex-wrap: wrap;
            }

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image {
                order: -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .skills-list {
                justify-content: center;
            }

            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 1rem 5%;
            }

            .navbar {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(18, 18, 18, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1rem 0;
                text-align: center;
                border-top: 1px solid var(--gray);
            }

            .navbar.active {
                display: flex;
            }

            .navbar a {
                padding: 1.2rem 0;
                font-size: 1.1rem;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding-top: 30%;
                min-height: auto;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-text {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 3rem;
            }

            .about, .services, .contact {
                padding: 5rem 5%;
            }

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

            .service-card {
                padding: 2rem;
            }

            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

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

            .about-image::after {
                display: none;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .header {
                padding: 0.8rem 5%;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero {
                padding-top: 35%;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

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

            .section-title {
                font-size: 1.8rem;
            }

            .about-content h3 {
                font-size: 1.5rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            .skill-tag {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }

            .service-icon {
                font-size: 2rem;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .contact-form {
                gap: 1rem;
            }

            .form-control {
                padding: 0.8rem;
            }

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

            .footer {
                padding: 3rem 5% 1.5rem;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .skills-list {
                gap: 0.5rem;
            }
            
            .skill-tag {
                padding: 0.3rem 0.8rem;
                font-size: 0.75rem;
            }
        }