        /* --- CSS Reset --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
            
            /* --- Custom Cursor --- */
            /* Hide default cursor on devices that can hover (non-mobile) */
            @media (hover: hover) and (pointer: fine) {
                cursor: none;
            }
        }

        /* --- Custom Cursor Style --- */
        .custom-cursor {
            width: 30px;
            height: 30px;
            background-image: url('/icons/cursor.png');
            background-size: contain;
            background-repeat: no-repeat;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease-out;
            
            /* Hide on touch devices */
            @media (hover: none) and (pointer: coarse) {
                display: none;
            }
        }

        /* --- Utility Classes --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3 {
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; color: #4ecca3; }
        p { margin-bottom: 1rem; }
        a { color: #4ecca3; text-decoration: none; }
        
        section {
            padding: 4rem 0;
        }

        /* --- Header & Navigation --- */
        .header {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #222;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .logo span {
            color: #4ecca3;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu li a {
            color: #e0e0e0;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-menu li a:hover {
            color: #4ecca3;
        }

        /* --- Hamburger Menu --- */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 25px;
            height: 21px;
        }

        .hamburger .line {
            width: 100%;
            height: 3px;
            background-color: #fff;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        /* --- Home/Hero Section --- */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 1)), url('https://images.unsplash.com/photo-1550439062-609e1531270e?q=80&w=1740&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            margin-top: 0; /* Reset margin */
        }

        .home-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            align-items: center;
            gap: 2rem;
            margin-top: 60px; /* Offset for fixed header */
        }

        .home-text h1 {
            font-size: 3.5rem;
            color: #fff;
        }

        .home-text h1 span {
            color: #4ecca3;
        }
        
        .typewriter-text {
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
        }
        
        .typewriter-text .static-text {
            color: #ccc;
        }

        .typewriter-text .dynamic-text {
            color: #4ecca3;
            border-right: 3px solid #4ecca3; /* The caret */
            animation: blink 0.7s infinite;
        }

        @keyframes blink {
            0%, 100% { border-color: transparent; }
            50% { border-color: #4ecca3; }
        }

        .home-image {
            text-align: center;
        }

        .home-image img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #4ecca3;
            box-shadow: 0 0 30px rgba(78, 204, 163, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 20px rgba(78, 204, 163, 0.4); }
            50% { box-shadow: 0 0 35px rgba(78, 204, 163, 0.7); }
            100% { box-shadow: 0 0 20px rgba(78, 204, 163, 0.4); }
        }

        .cta-button {
            display: inline-block;
            background: #4ecca3;
            color: #111;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(78, 204, 163, 0.4);
        }

        /* --- Features Section --- */
        #features {
            background: #111;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #4ecca3;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            color: #fff;
            font-size: 1.3rem;
        }

        /* --- Services Section (with 3D Effect) --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            /* Apply perspective to the container for the 3D effect */
            perspective: 1000px;
        }

        .service-card {
            background: #1a1a1a;
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            
            /* 3D Transform Logic */
            transform-style: preserve-3d;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .service-card:hover {
            /* This creates the 3D tilt effect on hover */
            transform: rotateY(15deg) rotateX(5deg) scale(1.05);
            box-shadow: 0 15px 40px rgba(78, 204, 163, 0.3);
        }

        .service-card .icon {
            font-size: 3rem;
            color: #4ecca3;
            margin-bottom: 1rem;
        }
        
        .service-card h3 {
            color: #fff;
            font-size: 1.5rem;
        }

        /* --- Contact Section --- */
        #contact {
            background: #111;
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: grid;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            background: #1a1a1a;
            color: #fff;
            font-family: 'Poppins', sans-serif;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: 2px solid #4ecca3;
        }

        .contact-form textarea {
            resize: vertical;
        }

        .submit-btn {
            background: #4ecca3;
            color: #111;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(78, 204, 163, 0.4);
        }

        /* --- Footer --- */
        footer {
            text-align: center;
            padding: 2rem 0;
            background: #0a0a0a;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .home-text h1 { font-size: 2.5rem; }
            .typewriter-text { font-size: 1.5rem; }
            
            .home-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .home-image {
                grid-row: 1; /* Move image to the top */
                margin-bottom: 2rem;
            }

            .home-image img {
                width: 200px;
                height: 200px;
            }
            
            /* --- Mobile Nav --- */
            .nav-menu {
                position: fixed;
                top: 61px; /* Height of header */
                right: -100%; /* Start off-screen */
                width: 100%;
                height: calc(100vh - 61px);
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.4s ease-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 1.5rem 0;
            }
            
            .nav-menu li a {
                font-size: 1.2rem;
            }

            .hamburger {
                display: flex;
            }

            /* Hamburger animation */
            .hamburger.active .line:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }
            .hamburger.active .line:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .line:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }
        }
