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

        body {
            font-family: 'Overpass Mono', monospace;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Overpass Mono', monospace;
            letter-spacing: 0.1em;
        }

        .logo:hover {
            transform: scale(1.05);
        }

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

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-family: 'Overpass Mono', monospace;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a.active {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Show all sections by default for scrolling */
        .main-section {
            display: block;
            min-height: 100%;
        }

        /* Ensure sections have proper spacing */
        .section {
            padding-top: 8rem;
            padding-bottom: 6rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at center, #111111 0%, #000000 70%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
            z-index: 2;
            animation: glowPulse 8s ease-in-out infinite;
        }

        .hero-content {
            text-align: left;
            z-index: 3;
            max-width: 650px;
            padding: 0 2rem;
            margin-left: -15%;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0s both;
            font-family: 'Gilroy', sans-serif;
            line-height: 1.3;
        }

        .hero .tagline {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.1s both;
            font-family: 'Overpass Mono', monospace;
            font-weight: 400;
            line-height: 2;
        }

        .hero .hero-description {
            font-size: 1.05rem;
            color: #cccccc;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.2s both;
            font-family: 'Overpass Mono', monospace;
            font-weight: 400;
            line-height: 2.2;
        }

        .cta-button {
            background: linear-gradient(135deg, #ffffff, #cccccc);
            color: #000000;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1s ease 0.4s both;
            font-family: 'Gilroy', sans-serif;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
            background: linear-gradient(135deg, #cccccc, #999999);
        }

        /* Interactive Server PNG */
        .server-container {
            position: absolute;
            right: 8%;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            perspective: 1200px;
        }

        .interactive-server {
            width: 100%;
            height: 100%;
            position: relative;
            transition: all 0.3s ease;
        }

        .server-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 15px 35px rgba(255, 255, 255, 0.2));
            transition: all 0.3s ease;
            animation: gentleFloat 8s ease-in-out infinite;
        }

        .server-image:hover {
            transform: scale(1.1) rotateY(10deg);
            filter: drop-shadow(0 20px 50px rgba(255, 255, 255, 0.3));
        }

        /* Sections */
        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #ffffff;
            font-family: 'Gilroy', sans-serif;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: linear-gradient(135deg, #111111, #222222);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }

        .service-card h3 {
            font-family: 'Gilroy', sans-serif;
            color: #ffffff;
        }

        .service-card p {
            font-family: 'Overpass Mono', monospace;
            color: #cccccc;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        /* About Section - Redesigned */
        .about-story {
            max-width: 1000px;
            margin: 0 auto 5rem;
        }

        .story-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .story-block {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border-left: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .story-block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .story-block:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border-left-color: #ffffff;
            transform: translateX(10px);
        }

        .story-icon {
            font-size: 2.5rem;
            min-width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: rotateIcon 3s ease-in-out infinite;
        }

        .story-block:nth-child(1) .story-icon {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .story-block:nth-child(2) .story-icon {
            animation: bounceGentle 2s ease-in-out infinite;
        }

        .story-block:nth-child(3) .story-icon {
            animation: rotateIcon 3s ease-in-out infinite;
        }

        .story-block p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #cccccc;
            font-family: 'Overpass Mono', monospace;
            margin: 0;
        }

        .story-block strong {
            color: #ffffff;
        }

        .story-block em {
            color: #ffffff;
            font-style: italic;
        }

        /* About Us Company Info Card */
        .vmm-container {
            max-width: 1000px;
            margin: 0 auto 5rem;
        }

        .vmm-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vmm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .vmm-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
        }

        .vmm-card:hover::before {
            opacity: 1;
        }

        .vmm-content {
            font-family: 'Overpass Mono', monospace;
            color: #cccccc;
            font-size: 0.95rem;
            line-height: 1.8;
            text-align: left;
        }

        .vmm-content p {
            margin-bottom: 0.75rem;
        }

        .vmm-content p:last-child {
            margin-bottom: 0;
        }

        .vmm-content strong {
            color: #ffffff;
            font-weight: 600;
        }

        .vmm-content em {
            color: #ffffff;
            font-style: italic;
        }

        /* Core Values */
        .core-values {
            max-width: 1200px;
            margin: 0 auto;
        }

        .values-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #ffffff;
            font-family: 'Gilroy', sans-serif;
        }

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

        .value-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.9);
        }

        .value-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .value-item:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
        }

        .value-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .value-item:hover .value-icon-wrapper {
            background: rgba(255, 255, 255, 0.1);
            transform: rotateY(360deg);
        }

        .value-icon {
            font-size: 2.5rem;
            animation: floatIcon 3s ease-in-out infinite;
        }

        .value-item:nth-child(1) .value-icon {
            animation-delay: 0s;
        }

        .value-item:nth-child(2) .value-icon {
            animation-delay: 0.5s;
        }

        .value-item:nth-child(3) .value-icon {
            animation-delay: 1s;
        }

        .value-item:nth-child(4) .value-icon {
            animation-delay: 1.5s;
        }

        .value-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
            font-family: 'Gilroy', sans-serif;
        }

        .value-item p {
            font-size: 0.9rem;
            color: #cccccc;
            font-family: 'Overpass Mono', monospace;
            line-height: 1.6;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .input-with-icon {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 1rem;
            font-size: 1.2rem;
            z-index: 2;
            color: #cccccc;
        }

        .message-input {
            align-items: flex-start;
        }

        .message-input .input-icon {
            top: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            background: rgba(34, 34, 34, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Overpass Mono', monospace;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ffffff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            background: rgba(34, 34, 34, 0.9);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888888;
        }

        /* Service Detail Sections */
        .service-detail-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: none;
        }

        .service-detail-section.active {
            display: block;
        }

        .back-button {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-family: 'Overpass Mono', monospace;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 3rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .back-button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #ffffff;
            transform: translateX(-5px);
        }

        .detail-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 2rem;
            font-family: 'Gilroy', sans-serif;
            line-height: 1.3;
        }

        .detail-content h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #ffffff;
            margin: 3rem 0 1.5rem;
            font-family: 'Gilroy', sans-serif;
        }

        .detail-intro {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border-left: 4px solid #ffffff;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
        }

        .detail-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #cccccc;
            font-family: 'Overpass Mono', monospace;
            margin: 0;
        }

        .section-intro {
            font-size: 1.05rem;
            color: #cccccc;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-family: 'Overpass Mono', monospace;
        }

        .offering-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0 3rem;
        }

        .offering-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .offering-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
        }

        .offering-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .offering-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Gilroy', sans-serif;
        }

        .offering-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #cccccc;
            font-family: 'Overpass Mono', monospace;
        }

        .closing-statement {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
        }

        .closing-statement p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #cccccc;
            font-family: 'Overpass Mono', monospace;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            padding: 3rem 2rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            font-family: 'Overpass Mono', monospace;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gentleFloat {
            0%, 100% { 
                transform: translateY(0px) rotateY(-2deg);
            }
            25% { 
                transform: translateY(-8px) rotateY(2deg);
            }
            50% { 
                transform: translateY(0px) rotateY(0deg);
            }
            75% { 
                transform: translateY(5px) rotateY(-1deg);
            }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        @keyframes glowPulse {
            0%, 100% { 
                opacity: 0.6;
                transform: scale(1);
            }
            50% { 
                opacity: 0.9;
                transform: scale(1.05);
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(255, 255, 255, 0);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
            }
        }

        @keyframes rotateIcon {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            25% {
                transform: rotate(-10deg) scale(1.05);
            }
            50% {
                transform: rotate(0deg) scale(1);
            }
            75% {
                transform: rotate(10deg) scale(1.05);
            }
        }

        @keyframes bounceGentle {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 968px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .server-container {
                display: none;
            }

            .hero-content {
                margin-left: 0;
                max-width: 100%;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .story-block {
                flex-direction: column;
                text-align: center;
            }
        }