 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0d1b2a;
            color: #f0f0f0;
            overflow-x: hidden;
        }

        #dna-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: linear-gradient(180deg, #0d1b2a 0%, #000000 100%);
            opacity: 0.25; /* Adjusted opacity */
        }

        /* Ensure all other content is on top of the canvas */
        .navbar, section, footer {
            position: relative;
            z-index: 1;
        }

        .navbar {
            background: rgba(20, 20, 40, 0.65);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            height: 60px;
            width: 90%;
            max-width: 1400px;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            display: flex;
            align-items: center;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            top: 10px;
            background: rgba(25, 25, 45, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            width: 50%;
        }

        .nav-left {
            justify-content: flex-end;
            padding-right: 150px; 
        }

        .nav-right {
            justify-content: flex-start;
            padding-left: 150px;
        }

        .nav-item {
            padding: 0 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            color: #e0e0e0;
            text-decoration: none;
            height: 60px;
            display: flex;
            align-items: center;
            transition: background-color 0.3s, color 0.3s;
        }

         .nav-item.active {
             border-bottom: 2px solid #00d65b;
             padding-bottom: 2px;
        }

        .nav-item:hover {
            background-color: rgba(255, 255, 255, 0.08);
            color: #00d65b;
        }

        .nav-left .nav-item:first-child {
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            color: #e0e0e0;
            font-size: 16px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            background-color: transparent;
            height: 100%;
        }
        
        .dropdown .nav-item:hover .dropbtn {
             color: #00d65b;
        }

        .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(30, 35, 60, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 1;
    border-radius: 10px;
    top: 100%; /* CHANGED: Positions dropdown just below the parent item. */
    padding-top: 10px; /* ADDED: Creates visual space inside the menu instead of outside. */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

        .dropdown-content a {
            color: #e0e0e0;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 15px;
            transition: background-color 0.3s, color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: rgba(255, 255, 255, 0.08);
            color: #00d65b;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .mobile-menu-button {
            display: none;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #e0e0e0;
            font-size: 24px;
            cursor: pointer;
            z-index: 102;
        }

        .logo-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 101;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-image {
            width: 200px;
            max-height: 55px;
            height: auto;
            object-fit: contain;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(30, 30, 50, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 99;
            padding-top: 70px;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
            border-left: 1px solid rgba(255, 255, 255, 0.12);
        }
        .mobile-menu-title {
            padding: 20px 30px 10px;
            font-size: 16px;
            font-weight: 600;
            color: #00d65b;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-item {
            display: block;
            padding: 18px 30px;
            font-size: 18px;
            font-weight: 500;
            color: #e0e0e0;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: background-color 0.3s, color 0.3s;
        }

        .mobile-menu-item.sub-item {
            padding-left: 45px;
            font-size: 16px;
            color: #c0c0d0;
        }
        
        .mobile-menu-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #00d65b;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s, visibility 0.4s;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 20px 40px;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 52px);
            margin-bottom: 25px;
            background: linear-gradient(45deg, #00d65b, #5bff9c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .hero p {
            font-size: clamp(16px, 2.5vw, 20px);
            max-width: 800px;
            margin: 0 auto 35px;
            line-height: 1.7;
            color: #c0c0d0;
        }

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

        .cta-button {
            background: rgba(0, 214, 91, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #070720;
            padding: 16px 45px;
            border: 1px solid rgba(0, 214, 91, 0.9);
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0, 214, 91, 0.3);
        }

        .cta-button:hover {
            background-color: rgba(0, 214, 91, 0.9);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 214, 91, 0.5);
            color: #ffffff;
            border-color: #00ff73;
        }

        .feature-card, .sector-card, .collaboration-card, .testimonial-card {
            background: rgba(20, 20, 40, 0.6);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                        box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                        border-color 0.35s,
                        background-color 0.35s;
        }

        .feature-card:hover,
        .sector-card:hover,
        .collaboration-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 45px rgba(0, 214, 91, 0.3);
            border: 1px solid rgba(0, 214, 91, 0.4);
            background: rgba(25, 30, 55, 0.7);
        }

        .testimonial-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 40px rgba(0, 214, 91, 0.25);
            border-left-color: rgba(0, 214, 91, 0.8);
        }

        .features {
            padding: 80px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding: 35px;
            border-left: 4px solid #00d65b;
        }

        .feature-card h3 {
            font-size: 26px;
            margin-bottom: 18px;
            color: #00d65b;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 16px;
            line-height: 1.7;
            color: #d0d0e0;
        }
        
        .sectors { background: rgba(0, 214, 91, 0.03); padding: 80px 5%; text-align: center; }
        .sectors h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 50px; color: #00d65b; font-weight: 600; }
        .sector-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
        .sector-card { padding: 40px 30px; max-width: 420px; width: 100%; text-align: left; }
        .sector-card h3 { font-size: 24px; margin-bottom: 20px; color: #e0e0f0; font-weight: 600; }
        .sector-card ul { list-style-type: none; padding-left: 0; }
        .sector-card li { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); color: #c0c0d0; }
        .sector-card li:last-child { border-bottom: none; }
        .sector-card li:before { content: "✓"; color: #00d65b; margin-right: 12px; font-weight: bold; }
        .collaborations { padding: 80px 5%; text-align: center; }
        .collaborations h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 20px; color: #00d65b; font-weight: 600; }
        .collaboration-intro { font-size: 18px; max-width: 800px; margin: 0 auto 50px; line-height: 1.7; color: #c0c0d0; }
        .collaboration-cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
        .collaboration-card { padding: 40px 30px; max-width: 360px; width: 100%; text-align: center; position: relative; overflow: hidden; border-top: 3px solid transparent; }
        .collaboration-card:hover { border-top-color: #00d65b; }
        .collaboration-icon { display: flex; justify-content: center; margin-bottom: 25px; }
        .icon-circle { width: 70px; height: 70px; border-radius: 50%; background: transparent; border: 2px solid rgba(0, 214, 91, 0.5); display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .icon-circle::after { content: ''; width: 28px; height: 28px; border-radius: 50%; background: rgba(0, 214, 91, 0.7); position: absolute; transition: all 0.3s ease-in-out; }
        .collaboration-card:hover .icon-circle { border-color: #00d65b; transform: rotate(180deg) scale(1.15); }
        .collaboration-card:hover .icon-circle::after { background: #00ff73; transform: scale(1.25); }
        .collaboration-card h3 { font-size: 24px; margin-bottom: 15px; color: #e0e0f0; font-weight: 600; }
        .collaboration-card p { font-size: 16px; line-height: 1.7; margin-bottom: 25px; color: #c0c0d0; }
        .collab-link { display: inline-block; color: #00d65b; text-decoration: none; font-weight: 600; transition: all 0.3s; padding-bottom: 3px; border-bottom: 1px solid rgba(0, 214, 91, 0.5); }
        .collab-link:hover { border-bottom-color: #00d65b; transform: translateY(-2px); color: #5bff9c; }
        .testimonials { padding: 100px 5% 80px; background: rgba(10, 10, 20, 0.05); position: relative; overflow: hidden; }
        .testimonials:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, rgba(0, 214, 91, 0.6), transparent); }
        .testimonials h2 { text-align: center; font-size: clamp(30px, 4vw, 38px); margin-bottom: 50px; color: #00d65b; font-weight: 600; }
        .testimonials-slider { display: flex; max-width: 1000px; margin: 0 auto; position: relative; }
        .testimonial-card { min-width: 100%; padding: 40px; border-left: 4px solid #00d65b; box-sizing: border-box; }
        .quote-icon { font-size: 70px; color: rgba(0, 214, 91, 0.3); font-family: 'Georgia', serif; position: absolute; top: 15px; left: 20px; line-height: 1; opacity: 0.8; user-select: none; }
        .testimonial-text { font-size: 18px; font-style: italic; line-height: 1.8; margin-bottom: 30px; position: relative; z-index: 1; color: #d0d0e0; }
        .testimonial-author { display: flex; align-items: center; }
        .author-avatar { width: 60px; height: 60px; border-radius: 50%; margin-right: 18px; overflow: hidden; background: rgba(0, 214, 91, 0.15); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(0, 214, 91, 0.3); }
        .avatar-placeholder { width: 35px; height: 35px; border-radius: 50%; background: rgba(0, 214, 91, 0.4); }
        .author-info h4 { font-size: 18px; margin-bottom: 5px; color: #00d65b; font-weight: 600; }
        .author-info p { font-size: 14px; color: rgba(240, 240, 240, 0.8); }
        .testimonial-controls { display: flex; justify-content: center; align-items: center; margin-top: 35px; gap: 20px; }
        .control-btn { background: rgba(0, 214, 91, 0.15); color: #00d65b; border: 1px solid rgba(0, 214, 91, 0.3); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; }
        .control-btn:hover { background: rgba(0, 214, 91, 0.25); transform: scale(1.1); border-color: rgba(0, 214, 91, 0.5); }
        .indicator-dots { display: flex; gap: 10px; }
        .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(240, 240, 240, 0.4); cursor: pointer; transition: all 0.3s; }
        .dot.active { background: #00d65b; transform: scale(1.25); box-shadow: 0 0 8px rgba(0, 214, 91, 0.5); }
        .get-in-touch { padding: 80px 5%; background: linear-gradient(45deg, rgba(0, 214, 91, 0.02), rgba(0, 214, 91, 0.08)); text-align: center; }
        .get-in-touch-container { max-width: 800px; margin: 0 auto; }
        .get-in-touch h2 { font-size: clamp(30px, 4vw, 38px); margin-bottom: 20px; color: #00d65b; font-weight: 600; }
        .get-in-touch p { font-size: 18px; margin-bottom: 35px; line-height: 1.7; color: #c0c0d0; }
        .subscribe-form { display: flex; flex-direction: column; gap: 20px; }
        .form-group { display: flex; width: 100%; max-width: 600px; margin: 0 auto; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 30px; overflow: hidden; }
        .form-group input { flex: 1; padding: 18px 25px; border: 1px solid transparent; border-right: none; border-radius: 30px 0 0 30px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: #f0f0f0; font-size: 16px; outline: none; transition: all 0.3s; }
        .form-group input::placeholder { color: rgba(240, 240, 240, 0.6); }
        .form-group input:focus { background: rgba(255, 255, 255, 0.12); border-color: rgba(0, 214, 91, 0.5); box-shadow: 0 0 0 2px rgba(0, 214, 91, 0.2); }
        .subscribe-button { padding: 18px 35px; border: none; border-radius: 0 30px 30px 0; background: #00d65b; color: #0a0a14; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .subscribe-button:hover { background: #00b34c; transform: scale(1.05); }
        .consent-check { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; }
        .consent-check input { width: 18px; height: 18px; accent-color: #00d65b; cursor: pointer; }
        .consent-check label { font-size: 14px; color: rgba(240, 240, 240, 0.8); cursor: pointer; }
        footer { background-color: #050510; padding: 60px 5% 30px; margin-top: 60px; border-top: 1px solid rgba(0, 214, 91, 0.2); }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
        .footer-section { flex: 1; min-width: 200px; }
        .footer-section h4 { color: #00d65b; margin-bottom: 25px; font-size: 18px; font-weight: 600; }
        .footer-section ul { list-style-type: none; }
        .footer-section li { margin-bottom: 12px; }
        .footer-section a { color: #b0b0c0; text-decoration: none; transition: color 0.3s, padding-left 0.3s; }
        .footer-section a:hover { color: #00d65b; padding-left: 5px; }
        .copyright { text-align: center; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; color: rgba(255, 255, 255, 0.6); }
        
        .mobile-auth-buttons { display: none; }

        @media (max-width: 1200px) {
            .nav-left { padding-right: 120px; } 
            .nav-right { padding-left: 120px; }
            .navbar { width: 95%; }
        }

        @media (max-width: 992px) {
            .nav-left { padding-right: 80px; }
            .nav-right { padding-left: 80px; }
            .nav-item { padding: 0 18px; }
            .auth-buttons { margin-left: 15px; gap: 10px; }
            .auth-button, .login-btn, .signup-btn { padding: 8px 15px; font-size: 13px; }
            .collaboration-card { max-width: 320px; }
            .testimonial-card { padding: 30px; }
        }

        @media (max-width: 768px) {
            .mobile-menu-button { display: block; }
            .nav-left, .nav-right { display: none; }
            .logo-container { left: 20px; transform: translate(0, -50%); }
            .logo-image { width: 150px; }
            .cta-button { padding: 14px 35px; font-size: 17px; }
            .features { grid-template-columns: 1fr; gap: 30px; }
            .form-group { flex-direction: column; max-width: 100%; box-shadow: none; border-radius: 0; }
            .form-group input { border-radius: 30px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); }
            .subscribe-button { border-radius: 30px; width: 100%; }
            .testimonials-slider { max-width: 90%; }
        }

        @media (max-width: 576px) {
            .hero { padding-top: 100px; }
            .navbar { width: 90%; top: 10px; border-radius: 25px; }
            .footer-section { min-width: 100%; text-align: center; }
            .footer-section ul { padding-left: 0; }
            .collaboration-card { max-width: 100%; }
            .icon-circle { width: 60px; height: 60px; }
            .icon-circle::after { width: 25px; height: 25px; }
            .testimonial-card { padding: 25px 20px; }
            .author-avatar { width: 50px; height: 50px; }
        }