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

        :root {
            --primary: #9DC183;
            --secondary: #6B8E23;
            --accent: #5A7757;
            --dark: #0a0a0f;
            --darker: #050508;
            --light: #ffffff;
            --gray: #888;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--darker);
            color: var(--light);
            overflow-x: hidden;
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--secondary));
            border-radius: 4px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo img {
            max-height: 50px; /* Increased size */
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

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

        .nav-cta {
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .nav-cta:hover {
            color: var(--dark);
        }

        .nav-cta:hover::before {
            left: 0;
        }

        /* Typewriter Effect */
        .typewriter-text {
            display: inline-block;
            border-right: 2px solid var(--primary);
            padding-right: 5px;
            animation: blink-caret 0.75s step-end infinite;
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--primary); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 50px;
            overflow: hidden;
        }

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

        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 1200px;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
            50% { box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.2); }
        }

        .hero h1 {
            font-size: clamp(48px, 10vw, 120px);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero h1 .gradient {
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient 5s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }

        .btn-secondary {
            padding: 18px 50px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--light);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 10s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            bottom: -50px;
            left: -50px;
            animation-delay: -3s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--accent);
            top: 50%;
            left: 50%;
            animation-delay: -5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Services Section */
        .services {
            padding: 150px 50px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            font-size: 12px;
            letter-spacing: 3px;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 255, 255, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 32px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            border-color: var(--primary);
        }

        .service-card:hover .service-icon svg {
            stroke: var(--dark);
        }

        .service-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--primary);
            stroke-width: 1.5;
            fill: none;
        }

        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 15px;
        }

        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 72px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.02);
            line-height: 1;
        }

        /* Stats Section */
        .stats {
            padding: 150px 50px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.02), rgba(255, 0, 255, 0.02));
            position: relative;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 80px;
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--gray);
            text-transform: uppercase;
        }

        /* Projects Section */
        .projects {
            padding: 150px 50px;
        }

        .projects-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .project-card {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            cursor: pointer;
            background: var(--dark);
        }

        .project-card.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .project-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-placeholder {
            font-size: 48px;
            opacity: 0.2;
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-overlay {
            transform: translateY(0);
        }

        .project-card:hover .project-image {
            transform: scale(1.1);
        }

        .project-tag {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
        }

        .project-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-desc {
            color: var(--gray);
            font-size: 14px;
        }

        /* Team Section */
        .team {
            padding: 150px 50px;
            background: var(--dark);
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .team-card {
            text-align: center;
            position: relative;
        }

        .team-image {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-image::before {
            border-color: var(--primary);
        }

        .team-avatar {
            font-size: 64px;
            opacity: 0.3;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .team-socials {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-socials {
            opacity: 1;
        }

        .team-socials a {
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .team-socials a:hover {
            background: var(--primary);
            color: var(--dark);
        }

        .team-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--primary);
            font-size: 13px;
            letter-spacing: 1px;
        }

        /* Tech Stack Section */
        .tech-stack {
            padding: 150px 50px;
            overflow: hidden;
        }

        .marquee {
            display: flex;
            gap: 80px;
            animation: marquee 30s linear infinite;
        }

        .marquee-container {
            overflow: hidden;
            margin-top: 60px;
        }

        .marquee-track {
            display: flex;
            gap: 80px;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .tech-item {
            display: flex;
            align-items: center;
            gap: 15px;
            white-space: nowrap;
            opacity: 0.4;
            transition: opacity 0.3s ease;
        }

        .tech-item:hover {
            opacity: 1;
        }

        .tech-icon {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .tech-name {
            font-size: 18px;
            font-weight: 500;
        }

        .partners-section {
            margin-top: 100px;
        }

        .partners-title {
            text-align: center;
            font-size: 12px;
            letter-spacing: 3px;
            color: var(--gray);
            margin-bottom: 40px;
        }

        .partners-track {
            display: flex;
            gap: 60px;
            align-items: center;
            animation: marquee 40s linear infinite reverse;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .partner-logo img {
            width: 140px;
            height: 60px;
            object-fit: contain;
            display: block;
            filter: brightness(1);
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.02);
        }

        /* Contact Section */
        .contact {
            padding: 150px 50px;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 255, 0.03));
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact h2 {
            font-size: clamp(36px, 5vw, 60px);
            margin-bottom: 30px;
        }

        .contact p {
            color: var(--gray);
            font-size: 18px;
            margin-bottom: 50px;
        }

        .contact-form {
            display: grid;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-input {
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 255, 255, 0.02);
        }

        .form-input::placeholder {
            color: var(--gray);
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            padding: 20px 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            color: var(--dark);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: center;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            padding: 80px 50px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-column h4 {
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--light);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-column ul a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom p {
            color: var(--gray);
            font-size: 13px;
        }

        .footer-socials {
            display: flex;
            gap: 20px;
        }

        .footer-socials a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-socials a:hover {
            color: var(--primary);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .project-card.large {
                grid-column: span 2;
                grid-row: span 1;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 100px 20px;
            }

            .services, .stats, .projects, .team, .tech-stack, .contact {
                padding: 100px 20px;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stat-item::after {
                display: none;
            }

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

            .project-card.large {
                grid-column: span 1;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }
        }

        /* Menu Toggle for Mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--light);
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-cta {
                display: none;
            }
        }

        /* Service Details Pages Styles */
        .service-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 80px;
            padding: 40px 50px;
            overflow: hidden;
        }

        .service-details {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .detail-card {
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
            transition: all 0.3s ease;
        }

        .detail-card:hover {
            border-color: var(--primary);
            background: rgba(157, 193, 131, 0.05);
            transform: translateY(-5px);
        }

        .detail-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .detail-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .detail-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
        }

        /* Tech Details Section */
        .tech-details {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .tech-category h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 600;
        }

        .tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tech-badge {
            padding: 8px 16px;
            background: rgba(157, 193, 131, 0.1);
            border: 1px solid rgba(157, 193, 131, 0.3);
            border-radius: 20px;
            font-size: 13px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            background: rgba(157, 193, 131, 0.2);
            border-color: var(--primary);
        }

        /* Service Process Steps */
        .service-process {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .process-step {
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            border-color: var(--primary);
            background: rgba(157, 193, 131, 0.05);
        }

        .step-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'JetBrains Mono', monospace;
        }

        .process-step h3 {
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .process-step p {
            color: var(--gray);
            font-size: 13px;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, rgba(157, 193, 131, 0.1), rgba(107, 142, 35, 0.1));
            border-radius: 20px;
            border: 1px solid rgba(157, 193, 131, 0.2);
        }

        .cta-section h2 {
            font-size: 40px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 16px;
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Us Styles */
        .about-story {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .story-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-top: 50px;
            align-items: start;
        }

        .story-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            margin-top: 30px;
            font-weight: 600;
        }

        .story-text h3:first-child {
            margin-top: 0;
        }

        .story-text p {
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .story-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-box {
            padding: 30px;
            background: rgba(157, 193, 131, 0.05);
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            text-align: center;
        }

        .stat-large {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-box p {
            color: var(--gray);
            font-size: 14px;
        }

        /* Mission & Vision */
        .mission-vision {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }

        .mission-card {
            padding: 40px;
            border: 1px solid rgba(157, 193, 131, 0.3);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
        }

        .mission-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 600;
        }

        .mission-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 15px;
        }

        /* Core Values */
        .core-values {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            border-color: var(--primary);
            background: rgba(157, 193, 131, 0.05);
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
        }

        /* Why Choose Us */
        .why-us {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            padding: 30px;
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
        }

        .why-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 600;
        }

        .why-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
        }

        /* Team Introduction */
        .team-intro {
            padding: 80px 50px;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-text p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Leadership Team */
        .leadership-team {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-grid-detailed {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            margin-top: 50px;
        }

        .team-member-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 40px;
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
        }

        .team-image-large {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 12px;
            overflow: hidden;
        }

        .team-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info h3 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .team-info .role {
            color: var(--primary);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .team-info .bio {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .team-socials-large {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .team-socials-large a {
            padding: 10px 20px;
            background: rgba(157, 193, 131, 0.1);
            border: 1px solid rgba(157, 193, 131, 0.3);
            border-radius: 6px;
            color: var(--primary);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .team-socials-large a:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* Teams Overview */
        .teams-overview {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .departments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .department-card {
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
            transition: all 0.3s ease;
        }

        .department-card:hover {
            border-color: var(--primary);
            background: rgba(157, 193, 131, 0.05);
        }

        .department-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .department-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skills-list span {
            padding: 6px 12px;
            background: rgba(157, 193, 131, 0.1);
            border-radius: 4px;
            font-size: 12px;
            color: var(--primary);
        }

        /* Culture Section */
        .culture {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .culture-card {
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .culture-card:hover {
            background: rgba(157, 193, 131, 0.05);
            border-color: var(--primary);
        }

        .culture-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .culture-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .culture-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Careers Page */
        .why-work {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            padding: 30px;
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            border-color: var(--primary);
            background: rgba(157, 193, 131, 0.05);
        }

        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .benefit-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Open Positions */
        .open-positions {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .positions-list {
            margin-top: 50px;
        }

        .position-card {
            padding: 40px;
            border: 1px solid rgba(157, 193, 131, 0.2);
            border-radius: 12px;
            background: rgba(157, 193, 131, 0.02);
            margin-bottom: 30px;
        }

        .position-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .position-header h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .position-type {
            padding: 6px 12px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .position-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: var(--gray);
            font-size: 14px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .position-desc {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .requirements {
            margin-bottom: 20px;
        }

        .requirements h4 {
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .requirements ul {
            list-style: none;
            padding-left: 0;
        }

        .requirements li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        .requirements li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
        }

        .btn-apply {
            padding: 12px 30px;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn-apply:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        /* Application Process */
        .application-process {
            padding: 120px 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        /* Contact Careers */
        .contact-careers {
            padding: 80px 50px;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-careers p {
            color: var(--gray);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .contact-options {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 30px;
        }

        .contact-option h4 {
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .contact-option a {
            color: var(--primary);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .contact-option a:hover {
            color: var(--secondary);
        }

        /* Responsive Updates */
        @media (max-width: 1024px) {
            .details-grid,
            .values-grid,
            .why-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tech-categories,
            .mission-grid,
            .departments-grid,
            .culture-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(3, 1fr);
            }

            .story-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .team-member-card {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .details-grid,
            .values-grid,
            .why-grid,
            .benefits-grid,
            .tech-categories,
            .mission-grid,
            .departments-grid,
            .culture-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .service-hero,
            .service-details,
            .tech-details,
            .service-process,
            .cta-section,
            .about-story,
            .mission-vision,
            .core-values,
            .why-us,
            .team-intro,
            .leadership-team,
            .teams-overview,
            .culture,
            .why-work,
            .open-positions,
            .application-process,
            .contact-careers {
                padding: 80px 20px;
            }

            .contact-options {
                flex-direction: column;
                gap: 20px;
            }
        }
    