        :root {
            --marine-blue: #0a192f;
            --marine-blue-light: #112240;
            --electric-blue: #00bfff;
            --cyan: #5ff2f2;
            --light-cyan: #9fffff;
            --light-gray: #ccd6f6;
            --white: #e6f1ff;
            --accent-green: #64ffda;
                --glow-cyan: rgba(95, 242, 242, 0.15);
    --glow-violet: rgba(112, 0, 255, 0.15);
    --glow-blue: rgba(0, 191, 255, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--marine-blue);
            color: var(--light-gray);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--marine-blue) 0%, #0a1525 100%);
        }

        .ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
    animation: pulseGlow 15s infinite alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--glow-cyan);
    animation-delay: 0s;
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--glow-violet);
    animation-delay: 5s;
}

.glow-3 {
    top: 40%;
    left: 30%;
    width: 30vw;
    height: 30vw;
    background: var(--glow-blue);
    filter: blur(80px);
    opacity: 0.4;
    animation-delay: 10s;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(20px, 20px);
        opacity: 0.7;
    }
}

        #minimal-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            pointer-events: none;
        }

        .minimal-particle {
            position: absolute;
            background-color: var(--cyan);
            border-radius: 50%;
            opacity: 0.15;
        }

        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.02;
            pointer-events: none;
            background-image: 
                linear-gradient(rgba(95, 242, 242, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(95, 242, 242, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        header {
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(15px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(95, 242, 242, 0.15);
            transition: all 0.4s ease;
            padding: 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: 50px;
            margin-right: 15px;
            transition: transform 0.8s ease;
            border-radius: 12px;
            object-fit: cover;
        }

        .logo-img:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .logo-text {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--white) 0%, var(--white) 50%, var(--cyan) 50%, var(--cyan) 100%);
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: logo-gradient 5s ease-in-out infinite;
            position: relative;
            display: inline-block;
        }

        @keyframes logo-gradient {
            0% { background-position: 100% 0; }
            50% { background-position: 0 0; }
            100% { background-position: 100% 0; }
        }

        .logo-text::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--white), var(--cyan));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.8s ease;
        }

        .logo-container:hover .logo-text::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2.2rem;
            position: relative;
        }

        nav ul li a {
            color: var(--light-gray);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            font-size: 1.05rem;
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
            transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        nav ul li a:hover {
            color: var(--cyan);
        }

        nav ul li a:hover::before {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-gray);
            font-size: 1.7rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            background-color: rgba(95, 242, 242, 0.1);
            color: var(--cyan);
        }

        footer {
            background: linear-gradient(to bottom, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 1));
            border-top: 1px solid rgba(95, 242, 242, 0.15);
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
        }

        .footer-info {
            flex: 1;
            min-width: 300px;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .footer-logo-img {
            height: 40px;
            width: 40px;
            margin-right: 12px;
            border-radius: 10px;
            object-fit: cover;
        }

        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--white) 0%, var(--white) 50%, var(--cyan) 50%, var(--cyan) 100%);
            background-size: 200% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: logo-gradient 5s ease-in-out infinite;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 1.8rem;
            color: var(--white);
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--cyan);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 1rem;
        }

        .footer-column ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.2rem 0;
        }

        .footer-column ul li a:hover {
            color: var(--cyan);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(95, 242, 242, 0.1);
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        @media (max-width: 375px) {
            .header-container {
                padding: 0.8rem 1rem;
            }
            
            .logo-img {
                height: 35px;
                width: 35px;
                margin-right: 8px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .mobile-menu-btn {
                font-size: 1.5rem;
                padding: 0.4rem;
            }
            
            nav {
                top: 70px;
                padding: 1.5rem;
            }
            
            nav ul li a {
                font-size: 1.1rem;
                padding: 0.7rem 0;
            }

            footer {
                padding: 2.5rem 1rem 1.5rem;
            }
            
            .footer-container {
                gap: 2rem;
            }
            
            .footer-info {
                min-width: 100%;
            }
            
            .footer-logo-img {
                height: 35px;
                width: 35px;
            }
            
            .footer-logo-text {
                font-size: 1.5rem;
            }
            
            .footer-info p {
                font-size: 0.9rem;
                line-height: 1.4;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 2rem;
                width: 100%;
            }
            
            .footer-column h4 {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            
            .footer-column ul li a {
                font-size: 0.95rem;
            }
            
            .copyright {
                margin-top: 2.5rem;
                padding-top: 1.5rem;
                font-size: 0.85rem;
            }
            
            body {
                overflow-x: hidden;
                width: 100%;
            }
        }

        @media (min-width: 376px) and (max-width: 480px) {
            .header-container {
                padding: 1rem 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem 1.5rem;
            }
            
            .logo-img {
                height: 40px;
                width: 40px;
                margin-right: 10px;
            }
            
            .logo-text {
                font-size: 1.6rem;
            }
            
            .nav-link-text {
                display: inline;
            }
            
            .nav-link-text.mobile-short {
                display: none;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 25, 47, 0.98);
                backdrop-filter: blur(20px);
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                border-bottom: 1px solid rgba(95, 242, 242, 0.2);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            nav ul li {
                margin: 0;
            }
            
            nav ul li a {
                font-size: 1.2rem;
                padding: 0.8rem 0;
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 3rem;
            }
            
            .footer-links {
                width: 100%;
                justify-content: flex-start;
                gap: 3rem;
            }
            
            .nav-full {
                display: none;
            }
            
            .nav-short {
                display: inline;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.4rem;
            }
            
            .logo-img {
                height: 35px;
                width: 35px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 2.5rem;
            }
        }

        @media (min-width: 769px) {
            .nav-full {
                display: inline;
            }
            
            .nav-short {
                display: none;
            }
        }
        
        @media screen and (max-width: 375px) and (max-height: 667px) {
            .floating-element {
                display: none;
            }
        }