        /* Base Styles & Variables */
        :root {
            --primary: #00f7ff;
            --secondary: #7b00ff;
            --accent: #ff00c8;
            --dark: #0a0a16;
            --darker: #050510;
            --light: #f0f8ff;
            --gray: #a0a0c0;
            --transition: all 0.3s ease;
            --glow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
            --glow-secondary: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
            font-family: 'Trocchi', sans-serif;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            z-index: 1;
        }

        h1 {
            font-size: clamp(2rem, 1.7rem + 1vw, 2.5rem);
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h2 {
            font-size: clamp(1.75rem, 1.6rem + 0.5vw, 2rem);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.5rem, 1.35rem + 0.5vw, 1.75rem);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.15rem;
        }

        /* Layout */
        section {
            padding: 80px 0;
            position: relative;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-header h2 {
            margin-bottom: 1.5rem;
        }

        .section-header p {
            margin: 0 auto;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0; /* Reduced padding */
            z-index: 1000;
            transition: var(--transition);
            background: rgba(10, 10, 22, 0.98); /* Slightly more opaque */
            backdrop-filter: blur(15px); /* Increased blur */
            -webkit-backdrop-filter: blur(15px); /* Safari support */
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4); /* Softer shadow */
        }

        header.scrolled {
            padding: 10px 0; /* Even more compact when scrolled */
            background: rgba(5, 5, 16, 0.98);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 45px;  /* Slightly smaller for better proportion */
            width: auto;   /* Maintain aspect ratio */
            transition: var(--transition);
            /* filter: brightness(0) invert(1); Ensure visibility on dark background */
        }
        /* Add to existing logo styles */
        .logo img:hover {
            transform: scale(1.05);
            /* filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary)); */
        }

        /* Add loading state for logo */
        .logo img {
            opacity: 0;
            animation: fadeIn 0.5s ease 0.2s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Fallback if image fails to load */
        .logo:after {
            content: 'Inzadev';
            color: var(--light);
            font-weight: 700;
            display: none;
        }

        .logo img[src=""], 
        .logo img:not([src]) {
            display: none;
        }

        .logo img[src=""] + :after,
        .logo img:not([src]) + :after {
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 1.1rem;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btn {
            display: inline-block;
            padding: 8px 25px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .nav-btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .nav-btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        /* Enhanced Mobile Navigation Styles */
        .hamburger {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background: var(--light);
            margin: 6px auto;
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
            background: var(--primary);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: var(--primary);
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--darker);
            z-index: 1000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(123, 0, 255, 0.3);
            background: rgba(5, 5, 16, 0.9);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
        }

        .mobile-logo img {
            height: 45px;
            width: auto;
        }

        .mobile-close {
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .mobile-close:hover {
            background: rgba(123, 0, 255, 0.2);
            color: var(--primary);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 20px 0;
            flex-grow: 1;
        }

        .mobile-nav-links li {
            margin: 0;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
            border-bottom: 1px solid rgba(123, 0, 255, 0.1);
        }

        .mobile-nav-links a i {
            margin-right: 15px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
            color: var(--primary);
        }

        .mobile-nav-links a:hover {
            background: rgba(123, 0, 255, 0.1);
            color: var(--primary);
            padding-left: 30px;
        }

        .mobile-nav-links a.active {
            background: rgba(0, 247, 255, 0.1);
            color: var(--primary);
            border-left: 4px solid var(--primary);
        }

        .mobile-nav-footer {
            padding: 20px;
            background: rgba(5, 5, 16, 0.9);
            border-top: 1px solid rgba(123, 0, 255, 0.3);
        }

        .mobile-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .mobile-social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .mobile-social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .mobile-contact-info {
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .mobile-contact-info p {
            margin-bottom: 8px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Project Overview */
        .project-overview {
            background: var(--darker);
            position: relative;
        }

        .project-overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .project-overview-text h2 {
            color: var(--light);
        }

        .project-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .feature i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
            text-shadow: 0 0 5px var(--primary);
        }

        .feature h4 {
            color: var(--light);
        }

        .project-image {
            height: auto;
            background: rgba(5, 5, 16, 0.7);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
            border: 1px solid rgba(123, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s;
        }

        .project-image img {
            height: 100%;
            width: 100%;
        }

        .project-image:hover {
            transform: scale(1.05);
        }
        
        /* Scope Section */
        .project-scope {
            background: var(--dark);
            position: relative;
        }

        .project-scope-content {
            position: relative;
            z-index: 1;
        }

        .project-scope h2 {
            color: var(--light);
            text-align: center;
        }

        .scope-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .scope-item {
            background: rgba(10, 10, 22, 0.7);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            border: 1px solid rgba(123, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .scope-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.05), transparent);
            z-index: 0;
        }

        .scope-item > * {
            position: relative;
            z-index: 1;
        }

        .scope-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(123, 0, 255, 0.2);
        }

        .scope-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--primary);
        }

        .scope-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .scope-item ul {
            margin-top: 15px;
            padding-left: 20px;
        }

        .scope-item li {
            color: var(--gray);
            margin-bottom: 8px;
        }

        /* Results Section */
        .project-results {
            background: var(--darker);
            position: relative;
        }

        .project-results-content {
            position: relative;
            z-index: 1;
        }

        .project-results h2 {
            color: var(--light);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .result-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background: rgba(5, 5, 16, 0.7);
            transition: all 0.3s ease;
            border: 1px solid rgba(123, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 0, 200, 0.05), transparent);
            z-index: 0;
        }

        .result-card > * {
            position: relative;
            z-index: 1;
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(123, 0, 255, 0.3);
        }

        .result-card:hover .result-number {
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
        }

        .result-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .result-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--light);
        }

        .achievement-box {
            margin-top: 50px;
            background: rgba(5, 5, 16, 0.7);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(123, 0, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .achievement-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.05), transparent);
            z-index: 0;
        }

        .achievement-box > * {
            position: relative;
            z-index: 1;
        }

        .achievement-box h3 {
            color: var(--primary);
            text-shadow: 0 0 5px var(--primary);
        }

        .achievement-box p {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--light);
        }

        /* Project CTA Section */
        .project-cta {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .project-cta-content {
            position: relative;
            z-index: 1;
        }

        .project-cta h2 {
            color: white;
        }


        .project-cta p {
            color: var(--light);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: var(--dark);
            box-shadow: var(--glow);
        }

        .btn:hover::before {
            left: 0;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-primary::before {
            background: var(--light);
        }

        .btn-secondary {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .btn-secondary::before {
            background: var(--secondary);
        }

        .btn-secondary:hover {
            color: var(--light);
            box-shadow: var(--glow-secondary);
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 1.5rem 0;
            border-top: 1px solid rgba(123, 0, 255, 0.4);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            max-width: 180px;
            transition: var(--transition);
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 2rem;
        }

        .footer-column:first-child {
            flex: 2;
            min-width: 300px;
            max-width: 600px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(0, 247, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(123, 0, 255, 0.3);
            color: var(--gray);
            font-size: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .nav-btn {
                display: none;
            }
            .hamburger {
                display: block;
            }

            .project-overview-content {
                grid-template-columns: 1fr;
            }
            
            .project-image {
                order: -1;
            }

        }

        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }

            .project-features {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 0;
            }
            
            .footer-column:first-child {
                max-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .btn {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }