:root {
            --neon-blue: #00f3ff;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a0f;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-bg-hover: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(20, 20, 30, 0.95);
            --text-primary: rgba(255, 255, 255, 0.9);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --glass-bg-hover: rgba(255, 255, 255, 0.1);
            --text-primary: rgba(255, 255, 255, 0.9);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        html, body {
            scroll-behavior: smooth;
            scroll-padding-top: 150px; /* Increased from 120px to ensure more space */
        }

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

        body {
            background: var(--dark-bg);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        #tech-canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
            position: relative;
            padding-top: 140px; /* Increased from 120px to provide more space */
            margin-top: 0; /* Reset margin-top for hero specifically */
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding-top: 60px; /* Reduce since section already has padding */
            display: flex;
            flex-direction: column;
            height: calc(100vh - 120px); /* Adjust to take up most of the viewport height */
            justify-content: space-between; /* Distribute content evenly */
        }

        .ai-headline {
            font-size: 4rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .ai-subheadline {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 3rem;
        }

        /* Neural Network Visualization */
        .neural-vis {
            width: 100%;
            height: 40vh; /* Adjust height to be proportional to viewport */
            position: relative;
            margin: 2rem 0;
            flex-grow: 1; /* Allow this to take up available space */
        }

        .node {
            width: 15px;
            height: 15px;
            background: var(--neon-purple);
            border-radius: 50%;
            position: absolute;
            filter: drop-shadow(0 0 8px var(--neon-purple));
            display: none; /* Hide the nodes */
        }

        /* Hero CTA styling */
        .hero-cta {
            margin-top: 2rem;
            margin-bottom: 3rem; /* Add space at the bottom */
            padding: 1rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: rgba(255,255,255,0.035);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,243,255,0.07);
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent, 
                rgba(0,243,255,0.12),
                transparent 30%
            );
            animation: rotate 6s linear infinite;
            opacity: 0.7;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.03);
            background: linear-gradient(45deg, rgba(0,243,255,0.08), rgba(188,19,254,0.08));
            box-shadow: 0 8px 32px 0 rgba(0,243,255,0.09), 0 3px 16px 0 rgba(188,19,254,0.07);
        }

        .service-card h3, .service-card p {
            color: #fff;
            text-shadow: 0 1px 4px rgba(10,10,15,0.12);
        }

        /* Process Timeline */
        .process-timeline {
            display: grid;
            gap: 4rem;
            padding: 4rem 2rem;
            margin: 0 auto;
            max-width: 1200px;
        }

        .process-step {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            background: var(--glass-bg);
            border-radius: 15px;
            opacity: 0;
            transform: translateY(50px);
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        /* Navigation Styles */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.9); /* Slightly more opaque */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            height: 80px; /* Fixed height for consistency */
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Add shadow for visual separation */
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo span {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            transition: width 0.3s ease;
        }

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

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

        .bar {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.open .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.open .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header span {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .header-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            margin: 0 auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-tagline {
            font-size: 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .about-intro p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .stats-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            background: rgba(255,255,255,0.035);
            border-radius: 15px;
            padding: 2rem 1.5rem;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,243,255,0.07);
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px 0 rgba(0,243,255,0.09), 0 3px 16px 0 rgba(188,19,254,0.07);
            background: linear-gradient(45deg, rgba(0,243,255,0.08), rgba(188,19,254,0.08));
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            background: linear-gradient(45deg, rgba(0,243,255,0.2), rgba(188,19,254,0.2));
            border-radius: 50%;
        }

        .stat-icon i {
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

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

        .about-info-card {
            display: flex;
            align-items: flex-start;
            background: rgba(255,255,255,0.035);
            border-radius: 15px;
            padding: 1.5rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,243,255,0.07);
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent, 
                rgba(0,243,255,0.12),
                transparent 30%
            );
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px 0 rgba(0,243,255,0.09), 0 3px 16px 0 rgba(188,19,254,0.07);
            background: linear-gradient(45deg, rgba(0,243,255,0.08), rgba(188,19,254,0.08));
        }

        .about-info-card:hover::before {
            opacity: 0.7;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.2rem;
            background: linear-gradient(45deg, rgba(0,243,255,0.2), rgba(188,19,254,0.2));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 1.4rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .info-content {
            flex: 1;
        }

        .info-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #fff;
            text-shadow: 0 1px 4px rgba(10,10,15,0.12);
        }

        .info-content p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        .tech-cube {
            width: 300px;
            height: 300px;
            margin: 0 auto;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate-cube 20s linear infinite;
            transform: rotateX(20deg) rotateY(20deg);
        }

        .tech-cube::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            opacity: 0.2;
            border-radius: 20px;
            box-shadow: 0 0 50px rgba(188, 19, 254, 0.5);
        }

        @keyframes rotate-cube {
            0% { transform: rotateX(20deg) rotateY(0); }
            100% { transform: rotateX(20deg) rotateY(360deg); }
        }

        /* Projects Section - NEW STYLES */
        .projects-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .projects-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .projects-tagline {
            font-size: 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .projects-intro p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

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

        .project-card {
            background: rgba(255,255,255,0.035);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,243,255,0.07);
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,243,255,0.15);
            background: linear-gradient(45deg, rgba(0,243,255,0.04), rgba(188,19,254,0.04));
        }

        .project-header {
            display: flex;
            align-items: center;
            padding: 1.2rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,243,255,0.1);
        }

        .project-icon {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            background: linear-gradient(45deg, rgba(0,243,255,0.2), rgba(188,19,254,0.2));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .project-icon i {
            font-size: 1.4rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .project-header h3 {
            font-size: 1.5rem;
            margin: 0;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .project-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.7));
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
        }

        .project-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

        .project-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.05);
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
        }

        .feature i {
            font-size: 0.9rem;
            color: var(--neon-blue);
        }

        .feature span {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .project-tech {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .project-tech span {
            background: linear-gradient(45deg, rgba(0,243,255,0.1), rgba(188,19,254,0.1));
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--neon-blue);
            border: 1px solid rgba(0,243,255,0.2);
        }

        .project-link {
            display: inline-block;
            text-decoration: none;
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        /* Styling for dropdown options */
        .contact-form select option {
            background-color: var(--dark-bg);
            color: white;
            padding: 0.5rem;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
        }

        .input-highlight {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            transition: width 0.3s;
        }

        .contact-form input:focus ~ .input-highlight,
        .contact-form select:focus ~ .input-highlight,
        .contact-form textarea:focus ~ .input-highlight {
            width: 100%;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            align-self: flex-start;
            position: relative;
            min-width: 160px;
            text-align: center;
        }
        
        .submit-btn .button-text {
            transition: opacity 0.3s;
            display: inline-block;
        }
        
        .submit-btn .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
        }
        
        .submit-btn .loading-spinner .spinner {
            width: 24px;
            height: 24px;
            animation: spinner-rotate 2s linear infinite;
        }
        
        .submit-btn .loading-spinner .path {
            stroke: white;
            stroke-linecap: round;
            animation: spinner-dash 1.5s ease-in-out infinite;
        }
        
        @keyframes spinner-rotate {
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes spinner-dash {
            0% {
                stroke-dasharray: 1, 150;
                stroke-dashoffset: 0;
            }
            50% {
                stroke-dasharray: 90, 150;
                stroke-dashoffset: -35;
            }
            100% {
                stroke-dasharray: 90, 150;
                stroke-dashoffset: -124;
            }
        }
        
        .submit-btn:disabled {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(188, 19, 254, 0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            border-radius: 50%;
            color: var(--neon-blue);
        }

        .contact-text h4 {
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .contact-text p {
            color: rgba(255, 255, 255, 0.7);
        }

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

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

        .social-link:hover {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            transform: translateY(-5px);
        }

        /* Footer */
        .footer {
            background: rgba(10, 10, 15, 0.9);
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

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

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

        /* Cyber Button */
        .cyber-button {
            position: relative;
            background: transparent;
            color: white;
            font-size: 1.2rem; /* Slightly larger font */
            font-weight: 600;
            padding: 1.2rem 2.5rem; /* Larger button */
            border: 2px solid var(--neon-blue);
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.5); /* Increased glow */
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cyber-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            transition: width 0.3s ease;
            z-index: -1;
        }

        .cyber-button:hover::before {
            width: 100%;
        }

        .cyber-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.3);
        }

        /* NEW SERVICES SECTION STYLES */
        .services-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .services-tagline {
            font-size: 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .services-intro p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

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

        .service-row {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.035);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,243,255,0.07);
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
            overflow: hidden;
            position: relative;
        }

        .service-row::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent, 
                rgba(0,243,255,0.12),
                transparent 30%
            );
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-row:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px 0 rgba(0,243,255,0.09), 0 3px 16px 0 rgba(188,19,254,0.07);
            background: linear-gradient(45deg, rgba(0,243,255,0.08), rgba(188,19,254,0.08));
        }

        .service-row:hover::before {
            opacity: 0.7;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            background: linear-gradient(45deg, rgba(0,243,255,0.2), rgba(188,19,254,0.2));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .service-icon i {
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .service-content {
            flex: 1;
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: #fff;
            text-shadow: 0 1px 4px rgba(10,10,15,0.12);
        }

        .service-content p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin: 0;
        }

        @media (max-width: 768px) {
            html, body {
                scroll-padding-top: 100px; /* Slightly less scroll padding on mobile */
            }
            
            .hero-content {
                height: auto;
                min-height: calc(100vh - 110px);
                padding-top: 30px;
            }
            
            .ai-headline {
                font-size: 2.5rem;
            }
            
            .ai-subheadline {
                font-size: 1.3rem;
                margin-bottom: 2rem;
            }
            
            .neural-vis {
                height: 30vh;
                margin: 1rem 0;
            }
            
            .hero-cta {
                margin-top: 1rem;
                margin-bottom: 2rem;
            }
            
            .cyber-button {
                font-size: 1rem;
                padding: 1rem 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .tech-cube {
                width: 200px;
                height: 200px;
            }

            .nav-container {
                height: 70px; /* Slightly smaller height on mobile */
            }
            
            section {
                padding-top: 110px; /* Adjusted for smaller nav but still providing enough space */
                margin-top: -70px;
                scroll-margin-top: 80px; /* Adjusted for mobile */
            }
            
            .hero {
                padding-top: 110px; /* Match the other sections */
                min-height: calc(100vh - 70px); /* Account for nav height */
                padding-bottom: 2rem; /* Ensure content isn't cut off at bottom */
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px; /* Match the nav height */
                left: 0;
                width: 100%;
                flex-direction: column;
                background: rgba(10, 10, 15, 0.95);
                padding: 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add shadow for separation */
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

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

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .services-tagline {
                font-size: 1.7rem;
            }
            
            .service-row {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin: 0 auto 1rem;
            }

            .about-tagline {
                font-size: 1.7rem;
            }
            
            .stats-row {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-card {
                width: 100%;
                max-width: 100%;
            }
            
            .about-info-card {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin: 0 auto 1rem;
            }

            .projects-tagline {
                font-size: 1.7rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-features {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .feature {
                width: 100%;
            }
        }

        /* Goal Section */
        .goal-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .goal-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .goal-tagline {
            font-size: 2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .goal-intro p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }

        .goal-content {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.035);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,243,255,0.07);
            box-shadow: 0 4px 24px 0 rgba(0,243,255,0.04), 0 1.5px 8px 0 rgba(188,19,254,0.03);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .goal-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent, 
                rgba(0,243,255,0.12),
                transparent 30%
            );
            animation: rotate 6s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .goal-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px 0 rgba(0,243,255,0.09), 0 3px 16px 0 rgba(188,19,254,0.07);
            background: linear-gradient(45deg, rgba(0,243,255,0.08), rgba(188,19,254,0.08));
        }

        .goal-content:hover::before {
            opacity: 0.7;
        }

        .goal-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 2rem;
            background: linear-gradient(45deg, rgba(0,243,255,0.2), rgba(188,19,254,0.2));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .goal-icon i {
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .goal-text {
            flex: 1;
        }

        .goal-text p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .goal-tagline {
                font-size: 1.7rem;
            }
            
            .goal-content {
                flex-direction: column;
                text-align: center;
            }
            
            .goal-icon {
                margin: 0 auto 1.5rem;
            }
        }

        /* Add a global padding to all sections */
        section {
            padding-top: 120px; /* Increase padding-top */
            margin-top: -80px; /* Offset the padding to maintain visual spacing */
            scroll-margin-top: 100px; /* Alternative to scroll-padding for better browser support */
        }

        /* Anchor point styling */
        .anchor-point {
            display: block;
            position: relative;
            top: -180px; /* Increased from -150px to ensure more space from nav */
            visibility: hidden;
            height: 0;
            width: 0;
        }