 body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-navy: #0a0f24;
            --jet-black: #000000;
            --neon-blue: #00a8ff;
            --cyber-purple: #9b59ff;
            --white: #ffffff;
            --glow-blue: rgba(0, 168, 255, 0.5);
            --glow-purple: rgba(155, 89, 255, 0.5);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--deep-navy);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
            cursor: default;
        }

        /* Custom Cursor Glow */
        body::before {
            content: '';
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--neon-blue), transparent);
            pointer-events: none;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--neon-blue);
            border-radius: 50%;
            animation: float 20s infinite;
            opacity: 0.6;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100%) translateX(50px);
                opacity: 0;
            }
        }

        .wave-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
            animation: wave 8s linear infinite;
        }

        @keyframes wave {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 15, 36, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 168, 255, 0.2);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 168, 255, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px var(--glow-blue);
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-blue), var(--cyber-purple));
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
                transform: scaleX(0.8);
            }
            50% {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-blue), var(--cyber-purple));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--glow-blue);
        }

        .cta-nav {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            padding: 10px 25px;
            border-radius: 25px;
            border: none;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px var(--glow-blue);
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 30px var(--glow-purple);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100%;
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 80px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 168, 255, 0.1), transparent 70%),
                        radial-gradient(circle at 80% 20%, rgba(155, 89, 255, 0.1), transparent 50%);
            animation: bgPulse 10s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--white), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            padding: 15px 35px;
            border-radius: 30px;
            border: none;
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px var(--glow-blue);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px var(--glow-purple);
        }

        .btn-secondary {
            background: transparent;
            padding: 15px 35px;
            border-radius: 30px;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--neon-blue);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-secondary:hover::before {
            left: 0;
        }

        .btn-secondary:hover {
            color: var(--white);
            border-color: var(--neon-blue);
            box-shadow: 0 0 30px var(--glow-blue);
        }

        .hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .code-block {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--neon-blue);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 0 50px var(--glow-blue);
            animation: float3d 6s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes float3d {
            0%, 100% {
                transform: translateY(0) rotateY(0deg);
            }
            50% {
                transform: translateY(-20px) rotateY(5deg);
            }
        }

        .code-block::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--neon-blue), var(--cyber-purple), var(--neon-blue));
            border-radius: 15px;
            z-index: -1;
            animation: borderRotate 3s linear infinite;
            opacity: 0.5;
        }

        @keyframes borderRotate {
            0% {
                filter: hue-rotate(0deg);
            }
            100% {
                filter: hue-rotate(360deg);
            }
        }

        .code-line {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            margin: 8px 0;
            color: var(--white);
            opacity: 0;
            animation: typeIn 0.5s ease-out forwards;
        }

        .code-line:nth-child(1) { animation-delay: 0.5s; }
        .code-line:nth-child(2) { animation-delay: 0.7s; }
        .code-line:nth-child(3) { animation-delay: 0.9s; }
        .code-line:nth-child(4) { animation-delay: 1.1s; }
        .code-line:nth-child(5) { animation-delay: 1.3s; }
        .code-line:nth-child(6) { animation-delay: 1.5s; }

        @keyframes typeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .keyword { color: var(--cyber-purple); }
        .function { color: var(--neon-blue); }
        .string { color: #50fa7b; }

        /* Section Styles */
        .section {
            padding: 100px 40px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 168, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 60px var(--glow-blue);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotateY(360deg);
            filter: drop-shadow(0 0 20px var(--neon-blue));
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--neon-blue);
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--neon-blue);
            box-shadow: 0 0 50px var(--glow-blue);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 255, 0.3), rgba(155, 89, 255, 0.3));
            z-index: 1;
        }

        .tech-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            z-index: 2;
            animation: float3d 6s ease-in-out infinite;
        }

        .about-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-divider {
            position: absolute;
            left: 50%;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--neon-blue), transparent);
            animation: pulse 2s ease-in-out infinite;
        }

        /* Portfolio Grid */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--neon-blue);
            padding: 10px 25px;
            border-radius: 25px;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            box-shadow: 0 0 20px var(--glow-blue);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid rgba(0, 168, 255, 0.3);
            transition: all 0.4s ease;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover::before {
            opacity: 0.9;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px var(--glow-purple);
        }

        .portfolio-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover .portfolio-content {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .portfolio-content p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .portfolio-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            z-index: 1;
            opacity: 0.3;
        }

        /* Process Timeline */
        .process-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin: 60px 0;
            padding: 0 20px;
        }

        .process-line {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-blue), var(--cyber-purple), var(--neon-blue));
            transform: translateY(-50%);
            z-index: 0;
        }

        .process-step {
            position: relative;
            z-index: 1;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: scale(1.1);
        }

        .process-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.8);
            border: 3px solid var(--neon-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px var(--glow-blue);
        }

        .process-step:hover .process-circle {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            box-shadow: 0 0 50px var(--glow-purple);
            transform: rotateY(360deg);
        }

        .process-step h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 150px;
            margin: 0 auto;
        }

        /* Testimonials */
        .testimonials-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .testimonial-card {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--neon-blue);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 0 40px var(--glow-blue);
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            box-shadow: 0 0 30px var(--glow-blue);
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 5px;
        }

        .testimonial-company {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 168, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--neon-blue);
            box-shadow: 0 0 15px var(--glow-blue);
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .blog-card {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 168, 255, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--glow-blue);
            border-color: var(--neon-blue);
        }

        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 255, 0.5), rgba(155, 89, 255, 0.5));
        }

        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid var(--neon-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--neon-blue);
            font-weight: 600;
            z-index: 2;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-content h3 {
            color: var(--neon-blue);
        }

        .blog-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-form {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--neon-blue);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 0 40px var(--glow-blue);
        }

        .contact-form h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--neon-blue);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--white);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 168, 255, 0.3);
            border-radius: 10px;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 20px var(--glow-blue);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 168, 255, 0.3);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--neon-blue);
            box-shadow: 0 0 30px var(--glow-blue);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--white);
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .map-visual {
            height: 200px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--neon-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .map-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, var(--neon-blue) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: mapPulse 3s ease-in-out infinite;
        }

        @keyframes mapPulse {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.6;
            }
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 2px solid var(--neon-blue);
            padding: 60px 40px 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), var(--cyber-purple), var(--neon-blue), transparent);
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
            transform: translateX(5px);
            text-shadow: 0 0 10px var(--glow-blue);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(0, 168, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px var(--glow-blue);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 20px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(0, 168, 255, 0.3);
            border-radius: 25px;
            color: var(--white);
            font-size: 0.95rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 15px var(--glow-blue);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            box-shadow: 0 0 25px var(--glow-purple);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 168, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid var(--neon-blue);
            border-radius: 25px;
            display: flex;
            justify-content: center;
            padding-top: 10px;
            z-index: 100;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            width: 6px;
            height: 10px;
            background: var(--neon-blue);
            border-radius: 3px;
            animation: scroll 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes scroll {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                flex-wrap: wrap;
                gap: 40px;
            }

            .process-line {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .services-grid,
            .portfolio-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 60px 20px;
            }

            .nav-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease-out;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: rgba(10, 15, 36, 0.95);
            border: 2px solid var(--neon-blue);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 60px var(--glow-blue);
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-content h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--neon-blue);
            margin-bottom: 10px;
            text-align: center;
        }

        .modal-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .modal-close:hover {
            color: var(--neon-blue);
            transform: rotate(90deg);
        }

        .modal-footer {
            text-align: center;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal-footer a {
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .modal-footer a:hover {
            text-shadow: 0 0 10px var(--glow-blue);
        }

        .info-modal .modal-content {
            max-width: 700px;
        }

        .info-modal h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: var(--neon-blue);
            margin: 25px 0 15px;
        }

        .info-modal p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .info-modal ul {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .info-modal ul li {
            margin-bottom: 10px;
        }

        /* Utility Classes */
        .hidden {
            display: none;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    /* NAVBAR BASE */
.navbar {
  width: 100%;
  background: #111;
  padding: 15px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff3c3c;
}

/* LOGIN BUTTON */
.cta-nav {
  padding: 8px 20px;
  background: black;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.cta-nav:hover {
  background: black;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* MOBILE STYLES */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  .desktop-login {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background: #111;
    width: 60%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 20px;
    transition: 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-login {
    display: block;
  }
}
/* DEFAULT: Desktop view */
.mobile-login {
  display: none;
}

/* MOBILE VIEW FIX */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  /* Hide desktop login btn on mobile */
  .desktop-login {
    display: none !important;
  }

  /* Show mobile login btn inside menu */
  .mobile-login {
    display: block !important;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background: #111;
    width: 60%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 20px;
    transition: 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }
}
