   :root {
            --dark: #18230F;
            --lime: #B6F500;
            --white: #ffffff;
            --gray: #F0F0F0;
            --font-main: 'Smooch Sans', sans-serif;
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* UTILITIES */
        .smooch-sans-thin { font-family: var(--font-main); font-weight: 100; }
        .smooch-sans-regular { font-family: var(--font-main); font-weight: 400; }
        .smooch-sans-bold { font-family: var(--font-main); font-weight: 700; }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: var(--font-main); 
            background: var(--white); 
            color: var(--dark); 
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* HEADER */
        header {
            background: var(--dark);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 6%;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            color: var(--lime);
            font-size: 2.2rem;
            font-weight: 700;
            cursor: pointer;
        }

        nav {
            display: flex;
            gap: 40px;
        }

        nav a {
            color: var(--lime);
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 400;
            position: relative;
            transition: var(--transition);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--lime);
            transition: var(--transition);
        }

        nav a:hover {
            transform: scale(1.1);
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn-contact {
            background: transparent;
            border: 2px solid var(--lime);
            color: var(--lime);
            padding: 8px 25px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-contact:hover {
            background: var(--lime);
            color: var(--dark);
        }

        /* MARQUEES */
        .marquee-container {
            background: var(--lime);
            color: var(--dark);
            padding: 12px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 700;
            font-size: 1.3rem;
            display: flex;
        }

        .marquee-content {
            display: flex;
            animation: scroll-left 30s linear infinite;
        }

        .marquee-content-reverse {
            display: flex;
            animation: scroll-right 30s linear infinite;
        }

        .marquee-item {
            padding: 0 40px;
            flex-shrink: 0;
        }

        @keyframes scroll-left {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @keyframes scroll-right {
            from { transform: translateX(-50%); }
            to { transform: translateX(0); }
        }

        /* HERO */
        .hero {
            position: relative;
            height: 75vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 6rem;
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.8rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-primary {
            background: var(--lime);
            color: var(--dark);
            padding: 15px 40px;
            font-size: 1.4rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(182, 245, 0, 0.3);
        }

        /* SECTIONS */
        .page { display: none; }
        .page.active { display: block; animation: pageFade 0.6s ease forwards; }
        @keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

        section { padding: 100px 8%; }

        .section-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 60px;
            text-transform: uppercase;
        }

        /* CARDS */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .card {
            background: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: var(--transition);
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-15px);
            border-color: var(--lime);
        }

        .card i {
            color: var(--lime);
            margin-bottom: 25px;
        }

        .card h3 { font-size: 2rem; margin-bottom: 15px; }
        .card p { font-size: 1.2rem; color: #555; }

        /* PROJECTS */
        .project-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .project-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            z-index: 2;
        }

        /* CTA */
        .cta-section {
            background: var(--dark);
            color: var(--lime);
            text-align: center;
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: var(--lime);
            padding: 100px 8% 40px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 100px;
            margin-bottom: 60px;
        }

        .footer-logo { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
        .footer-desc { font-size: 1.2rem; color: rgba(182, 245, 0, 0.7); max-width: 400px; }

        .footer-links h4 { font-size: 1.5rem; margin-bottom: 25px; color: white; text-transform: uppercase; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { 
            color: var(--lime); 
            text-decoration: none; 
            font-size: 1.2rem; 
            opacity: 0.8;
            transition: 0.3s;
        }
        .footer-links a:hover { opacity: 1; padding-left: 8px; }

        .social-icons { display: flex; gap: 20px; }
        .social-icons a { 
            color: var(--dark); 
            background: var(--lime);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }
        .social-icons a:hover { transform: translateY(-5px) rotate(360deg); }

        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(182, 245, 0, 0.2);
            text-align: center;
            font-size: 1rem;
            opacity: 0.6;
        }

        /* MODAL */
        .modal {
            position: fixed;
            inset: 0;
            background: var(--white);
            z-index: 2000;
            display: none;
            overflow-y: auto;
            padding: 100px 10%;
        }

        .modal-close {
            position: fixed;
            top: 40px;
            right: 40px;
            cursor: pointer;
            background: var(--dark);
            color: var(--lime);
            padding: 10px;
            border-radius: 50%;
            z-index: 2001;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .grid-3, .project-grid, .footer-main { grid-template-columns: 1fr; gap: 40px; }
            nav { display: none; }
        }
        .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
   header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        background: #111;
        color: white;
        position: relative;
    }

    .logo {
        font-weight: 700;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-links {
        display: flex;
        gap: 25px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
    }

    .btn-contact {
        background: var(--lime);
        color: black;
        padding: 8px 18px;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
    }

    /* Mobile menu button hidden on desktop */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    /* Mobile nav hidden by default */
    .mobile-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #222;
        width: 200px;
        padding: 15px;
        border-radius: 0 0 10px 10px;
        z-index: 999;
    }

    .mobile-nav a {
        color: white;
        padding: 10px 0;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    /* Responsive rules */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        .btn-contact {
            display: none;
        }
        .mobile-menu-btn {
            display: block;
        }
    }