        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #0a0f0e;
            color: #eef5f2;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 30%, #0a1c1a, #030a08);
        }

        .bg-animation-layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            background: rgba(133, 163, 62, 0.08);
            border-radius: 50%;
            filter: blur(60px);
            animation: floatShape 18s infinite alternate ease-in-out;
        }

        .floating-shape:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -150px;
            left: -100px;
            background: rgba(32, 59, 96, 0.18);
            animation-duration: 22s;
        }

        .floating-shape:nth-child(2) {
            width: 500px;
            height: 500px;
            bottom: -200px;
            right: -150px;
            background: rgba(133, 163, 62, 0.1);
            animation-duration: 25s;
            animation-delay: -5s;
        }

        .floating-shape:nth-child(3) {
            width: 300px;
            height: 300px;
            top: 40%;
            left: 60%;
            background: rgba(248, 249, 248, 0.05);
            animation-duration: 19s;
            animation-delay: -2s;
        }

        .floating-shape:nth-child(4) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 10%;
            background: rgba(133, 163, 62, 0.12);
            animation-duration: 28s;
        }

        @keyframes floatShape {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.4;
            }
            100% {
                transform: translate(5%, 8%) scale(1.2);
                opacity: 0.7;
            }
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 36px;
        }

        /* Navbar - updated with navy & leaf green accents */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #F8F8F8;
            backdrop-filter: none;
            border-bottom: 1px solid rgba(133, 163, 62, 0.25);
            padding: 0;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        /* Logo inspired by brand: Navy blue (#203B60) + Leaf Green (#85A33E) */
        .logo-symbol {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-icon {
            background: linear-gradient(135deg, #203B60, #2a4c7a);
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .brand-icon i {
            font-size: 26px;
            color: #85A33E;
            transform: rotate(-5deg);
        }
        .brand-icon::after {
            content: "→";
            position: absolute;
            font-size: 14px;
            font-weight: bold;
            bottom: -6px;
            right: -8px;
            background: #85A33E;
            color: #203B60;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: monospace;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        .logo-text {
            font-weight: 800;
            font-size: 1.7rem;
            letter-spacing: -0.5px;
            background: linear-gradient(115deg, #203B60, #2c5a7a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo-img {
            height: 70px;
            width: auto;
            display: block;
        }
        .footer-logo-img {
            height: 55px;
            width: auto;
            object-fit: contain;
        }

        .logo-text span {
            color: #85A33E;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }

        @media (max-width: 550px) {
            .logo-text { font-size: 1.3rem; }
            .brand-icon { width: 36px; height: 36px; }
            .brand-icon i { font-size: 20px; }
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1a2e3a;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #85A33E;
        }

        .nav-cta {
            background: linear-gradient(105deg, #85A33E, #5a7a12);
            color: white !important;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(133, 163, 62, 0.3);
            display: inline-block;
            transition: 0.2s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(133, 163, 62, 0.5);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #85A33E;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #F8F8F8;
            width: 100%;
            padding: 20px 0;
            border-top: 1px solid rgba(133, 163, 62, 0.25);
            margin-top: 0px;
            position: absolute;
            top: 70px;
            left: 0;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav a {
            padding: 14px 20px;
            color: #1a2e3a;
            text-decoration: none;
            border-bottom: 1px solid rgba(133, 163, 62, 0.1);
        }

        .mobile-nav a:hover {
            background: rgba(133, 163, 62, 0.1);
            color: #85A33E;
        }

        .mobile-nav .mobile-cta {
            background: linear-gradient(105deg, #85A33E, #5a7a12);
            margin: 12px 20px;
            text-align: center;
            border-radius: 40px;
            border-bottom: none;
            color: white !important;
        }

        @media (max-width: 950px) {
            .nav-links, .desktop-cta { display: none; }
            .menu-toggle { display: block; }
            .mobile-nav.show { display: flex; }
            .container { padding: 0 24px; }
        }

        /* Hero Section */
        .hero {
            margin: 20px 0 40px;
            border-radius: 40px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.9fr;
            gap: 50px;
            align-items: center;
            padding: 60px 0 70px;
            position: relative;
            z-index: 3;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.15;
            background: linear-gradient(135deg, #ffffff, #85A33E);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }

        .hero-accent {
            color: #85A33E;
            border-bottom: 2px solid #85A33E;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: #b9d0cb;
            margin-bottom: 28px;
            border-left: 3px solid #85A33E;
            padding-left: 20px;
        }

        .hero-badge {
            display: inline-flex;
            background: rgba(133, 163, 62, 0.2);
            backdrop-filter: blur(8px);
            border-radius: 80px;
            padding: 6px 18px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #b8e06b;
            margin-bottom: 24px;
            gap: 10px;
            border: 1px solid rgba(133, 163, 62, 0.4);
        }

        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 15px;
        }

        .btn-primary {
            background: linear-gradient(95deg, #85A33E, #5a7a12);
            color: white;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(133, 163, 62, 0.5);
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 14px 28px rgba(133, 163, 62, 0.7);
            background: linear-gradient(95deg, #6b8a16, #4a660f);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid rgba(133, 163, 62, 0.8);
            padding: 12px 32px;
            border-radius: 60px;
            color: #b8e06b;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
        }

        .btn-outline:hover {
            background: rgba(133, 163, 62, 0.2);
            border-color: #85A33E;
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item h3 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #85A33E);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .floating-card {
            background: rgba(10, 25, 22, 0.65);
            backdrop-filter: blur(14px);
            border-radius: 40px;
            padding: 28px;
            border: 1px solid rgba(133, 163, 62, 0.4);
        }

        @media (max-width: 950px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 40px 0 50px;
                gap: 35px;
            }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-desc { text-align: left; }
            .hero-stats { justify-content: center; }
            .btn-group { justify-content: center; }
            .hero-badge { margin: 0 auto 24px auto; }
        }

        @media (max-width: 550px) {
            .hero-content h1 { font-size: 2rem; }
            .btn-primary, .btn-outline { padding: 10px 24px; font-size: 0.9rem; }
        }

        /* Sections */
        .section {
            padding: 70px 0 60px;
            border-bottom: 1px solid rgba(133, 163, 62, 0.12);
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .section-title span {
            color: #85A33E;
        }
        .section-sub {
            color: #9bb7b0;
            margin-bottom: 45px;
            font-size: 1rem;
            max-width: 700px;
        }
        @media (max-width: 700px) {
            .section { padding: 50px 0 40px; }
            .section-title { font-size: 1.9rem; }
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }
        .glass-card {
            background: rgba(15, 30, 27, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 28px;
            padding: 28px;
            border: 1px solid rgba(133, 163, 62, 0.25);
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            border-color: #85A33E;
        }
        .card-icon {
            font-size: 2.2rem;
            color: #85A33E;
            margin-bottom: 18px;
        }
        .glass-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Projects */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 28px;
        }
        .project-card {
            background: rgba(0, 0, 0, 0.45);
            border-radius: 24px;
            padding: 24px;
            border-left: 5px solid #85A33E;
            transition: 0.2s;
        }
        .project-card:hover {
            background: rgba(133, 163, 62, 0.1);
            transform: translateX(5px);
        }

        /* Industries */
        .industries-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin: 25px 0 20px;
        }
        .ind-badge {
            background: rgba(133, 163, 62, 0.15);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid rgba(133, 163, 62, 0.3);
            transition: 0.2s;
        }
        .ind-badge:hover {
            background: rgba(133, 163, 62, 0.3);
            transform: scale(1.02);
        }
        .ind-badge i {
            margin-right: 8px;
            color: #85A33E;
        }

        /* Contact */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 35px;
            background: rgba(8, 20, 18, 0.6);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            border: 1px solid rgba(133, 163, 62, 0.35);
            overflow: hidden;
        }
        .contact-info-side {
            background: linear-gradient(145deg, rgba(133, 163, 62, 0.12), rgba(0, 0, 0, 0.3));
            padding: 36px 30px;
        }
        .contact-headline {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .info-cards {
            margin: 30px 0 25px;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        .info-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 6px 8px;
            border-radius: 24px;
            transition: 0.2s;
        }
        .info-item:hover {
            background: rgba(133, 163, 62, 0.1);
            transform: translateX(5px);
        }
        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(133, 163, 62, 0.2);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #85A33E;
        }
        .contact-form-side {
            padding: 36px 32px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .input-modern {
            width: 100%;
            padding: 14px 20px;
            background: rgba(20, 40, 36, 0.7);
            border: 1px solid rgba(133, 163, 62, 0.35);
            border-radius: 44px;
            font-family: inherit;
            font-size: 0.95rem;
            color: white;
            transition: 0.2s;
        }
        .input-modern:focus {
            outline: none;
            border-color: #85A33E;
            box-shadow: 0 0 10px rgba(133, 163, 62, 0.4);
        }
        textarea.input-modern {
            border-radius: 28px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(95deg, #85A33E, #5a7a12);
            border: none;
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            margin-top: 8px;
            transition: 0.2s;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(133, 163, 62, 0.4);
        }
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 20px;
            transition: 0.2s;
        }
        .whatsapp-btn:hover {
            background: #20b859;
            transform: scale(1.02);
        }
        @media (max-width: 950px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                margin: 0 10px;
            }
            .contact-info-side { order: 2; }
            .contact-form-side { order: 1; padding: 30px 24px; }
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 9999;
            background: #25D366;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            animation: pulse-wa 1.8s infinite;
            transition: 0.2s;
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            background: #20b859;
        }
        .whatsapp-float i {
            font-size: 2.2rem;
            color: white;
        }
        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* Footer - navy & green synergy */
        footer {
            background: #F8F8F8;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(133, 163, 62, 0.35);
            color: #1a2e3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #203B60;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #85A33E;
        }
        .footer-logo-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-brand-icon {
            background: #203B60;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer-brand-icon i {
            font-size: 28px;
            color: #85A33E;
        }
        .footer-desc {
            color: #4a5b55;
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 250px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #2c423b;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #85A33E;
            padding-left: 5px;
        }
        .footer-contact-info p {
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #2c423b;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .footer-contact-info i {
            color: #85A33E;
            width: 24px;
        }
        .social-icons {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }
        .social-icons a {
            width: 38px;
            height: 38px;
            background: rgba(133, 163, 62, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #203B60;
            font-size: 1.2rem;
            transition: 0.2s;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: #85A33E;
            color: white;
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(133, 163, 62, 0.3);
            padding-top: 25px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-bottom p {
            color: #4a5b55;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }
        .footer-bottom-links a {
            color: #4a5b55;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .footer-bottom-links a:hover {
            color: #85A33E;
        }
        @media (max-width: 950px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        }
        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-col h4:after { left: 50%; transform: translateX(-50%); }
            .footer-logo-section { align-items: center; }
            .footer-contact-info p { justify-content: center; }
            .social-icons { justify-content: center; }
            .footer-bottom { flex-direction: column; align-items: center; }
        }
   