        :root {
            --dark-green: #1eff00;
            --accent-lime: #06400ac6;
            --white: #ff0000;
            --grey: #ffffff;
            --black: #3a6045;
            --font-main: 'Barlow Condensed', sans-serif;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: var(--font-main); 
            background-color: var(--white);
            color: var(--dark-green);
            line-height: 1.4;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 { font-weight: 700; text-transform: uppercase; line-height: 1; }
        p { font-weight: 400; font-size: 1.1rem; line-height: 1.6; }
        a { text-decoration: none; transition: var(--transition); color: inherit; }

        /* HEADER */
        header {
            background: var(--dark-green);
            color: var(--accent-lime);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px; /* adjust as needed */
    width: auto;
    display: block;
}        
        nav ul { display: flex; gap: 40px; list-style: none; }
        nav a { 
            font-weight: 700; 
            font-size: 1.2rem; 
            text-transform: uppercase;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--accent-lime);
            transition: var(--transition);
        }
        nav a:hover { transform: scale(1.1); }
        nav a:hover::after { width: 100%; }

        /* HERO SECTION */
        .hero {
            display: flex;
            height: 90vh;
            width: 100%;
            overflow: hidden;
        }

        .hero-left {
            width: 65%;
            position: relative;
            background: #000;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .hero-right {
            width: 35%;
            height: 100%;
        }

        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* FLOATING INTERACTION CARD */
        .scroll-trigger-section {
            position: relative;
            padding-bottom: 100px;
        }

        .floating-card {
            position: absolute;
            top: -500px;
            left: 5%;
            width: 450px;
            background: var(--white);
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            z-index: 100;
            text-align: center;
            animation: floatIn 1.2s ease-out;
        }

        @keyframes floatIn {
            from { opacity: 0; transform: translateY(100px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .floating-card p { margin-bottom: 30px; font-size: 1.3rem; font-weight: 400; color: var(--dark-green); }
        .scroll-arrow { margin: 20px 0; color: var(--accent-lime); animation: bounce 2s infinite; }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }

        .card-inner-flex {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .card-sq-img {
            width: 400px;
            height: 500px;
            object-fit: cover;
        }

        .btn-main {
            background: var(--dark-green);
            color: var(--accent-lime);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            flex-grow: 1;
        }

        .btn-main:hover {
            background: var(--accent-lime);
            color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* STICKY IMAGE SECTION */
        .sticky-section {
            display: flex;
            min-height: 150vh;
        }

        .sticky-content {
           margin-top:300px;
            width: 50%;
            padding: 200px 10% 100px;
        }

        .sticky-content h2 { font-size: 4rem; margin-bottom: 40px; }
        .sticky-content p { margin-bottom: 40px; font-size: 1.4rem; opacity: 0.8; }

        .sticky-visual {
            width: 50%;
            height: 100vh;
            position: sticky;
            top: 0;
            overflow: hidden;
        }

        .sticky-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* MARQUEE */
        .marquee-container {
            background: var(--grey);
            padding: 30px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid #CCC;
            border-bottom: 1px solid #CCC;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        .marquee-content span {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0 50px;
            color: var(--black);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* FEATURE CARDS */
        .features { padding: 120px 5%; background: var(--white); }
        .features h2 { text-align: center; font-size: 5rem; margin-bottom: 80px; }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feat-card {
            overflow: hidden;
            background: var(--white);
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .feat-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .feat-img { width: 100%; height: 350px; object-fit: cover; }
        .feat-info { padding: 40px; }
        .feat-info h3 { font-size: 2.5rem; margin-bottom: 15px; }

        /* PARALLAX */
        .parallax {
            height: 80vh;
            background-image: url('https://i.pinimg.com/736x/a6/ea/90/a6ea908ad654aee29f8cfbe34516b712.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .parallax::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 64, 48, 0.4);
        }

        .parallax-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
        .parallax h2 { font-size: 6rem; margin-bottom: 20px; text-shadow: 0 10px 20px rgba(0,0,0,0.3); }
        .parallax p { font-size: 1.5rem; margin-bottom: 40px; }

        /* FOOTER */
        footer {
            background: var(--dark-green);
            color: var(--accent-lime);
            padding: 100px 5% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 100px;
            margin-bottom: 80px;
        }

        .footer-logo { font-size: 4rem; margin-bottom: 20px; }
        .footer-desc { max-width: 400px; color: var(--white); opacity: 0.8; margin-bottom: 30px; }

        .footer-links h4 { margin-bottom: 30px; color: var(--white); font-size: 1.5rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a:hover { padding-left: 10px; color: var(--white); }

        .social-links { display: flex; gap: 20px; }
        .social-links i { font-size: 2rem; cursor: pointer; transition: var(--transition); }
        .social-links i:hover { transform: translateY(-5px); color: var(--white); }

        .footer-bottom {
            border-top: 1px solid rgba(180, 229, 13, 0.2);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }

        /* PAGE SYSTEM */
        .page { display: none; min-height: 100vh; animation: fadeIn 0.8s ease; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* MULTIPAGE CONTENT */
        .content-section { padding: 120px 10%; }
        .content-section h1 { font-size: 6rem; margin-bottom: 60px; }
        .article-card { display: flex; gap: 40px; margin-bottom: 80px; align-items: center; }
        .article-card:nth-child(even) { flex-direction: row-reverse; }
        .article-img { width: 50%; height: 500px; object-fit: cover; border-radius: 40px; }
        .article-info { width: 50%; }

        @media (max-width: 1024px) {
            .hero, .sticky-section, .footer-grid, .feature-grid { flex-direction: column; display: block; }
            .hero-left, .hero-right, .sticky-content, .sticky-visual { width: 100%; height: auto; }
            .sticky-visual { height: 50vh; position: relative; }
            .floating-card { position: static; width: 90%; margin: -50px auto 50px; }
            .parallax h2 { font-size: 3rem; }
            .footer-grid { gap: 40px; }
            .article-card { flex-direction: column !important; }
            .article-img, .article-info { width: 100%; }
        }
        .legal-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:999;
}

.legal-box{
background:white;
max-width:750px;
max-height:80vh;
overflow-y:auto;
padding:50px;
border-radius:6px;
position:relative;
}

.legal-box h2{
margin-bottom:20px;
}

.legal-box p{
margin-bottom:15px;
color:#555;
line-height:1.7;
}

.legal-close{
position:absolute;
top:15px;
right:20px;
border:none;
background:none;
font-size:22px;
cursor:pointer;
}

#subscribeForm,
#unsubscribeForm{
display:flex;
gap:6px;
margin-bottom:8px;
}

#subscribeForm input,
#unsubscribeForm input{
padding:6px;
border:1px solid #ccc;
border-radius:4px;
flex:1;
}

#subscribeForm button{
background:#2ecc71;
border:none;
color:white;
padding:6px 10px;
border-radius:4px;
cursor:pointer;
}

#unsubscribeForm button{
background:#e74c3c;
border:none;
color:white;
padding:6px 10px;
border-radius:4px;
cursor:pointer;
}

#newsletterMsg{
font-size:13px;
margin-top:5px;
color:#aaa;
}





.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}
@media (max-width:768px){

nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0f172a;
display:none;
}

nav ul{
flex-direction:column;
padding:20px;
gap:15px;
}

nav.active{
display:block;
}

.menu-toggle{
display:block;
}

}