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

        :root {
            --ink: #0c0e14;
            --ink-soft: #1a1d28;
            --border: rgba(255,255,255,0.08);
            --border-glow: rgba(108,99,255,0.4);
            --text-primary: #f0f0f5;
            --text-secondary: rgba(240,240,245,0.55);
            --text-muted: rgba(240,240,245,0.3);
            --accent: #6c63ff;
            --accent-glow: rgba(108,99,255,0.35);
            --teal: #00d4aa;
            --rose: #ff5e7d;
            --amber: #f5a623;
        }

        body {
            background: var(--ink);
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* ── CANVAS BACKGROUND ── */
        #bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
        body::before {
            content: ''; position: fixed; inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            background-size: 256px; opacity: 0.4; z-index: 0; pointer-events: none;
        }

        /* ── NAV ── */
        nav {
            display: flex; align-items: center; justify-content: space-between;
            padding: 24px 48px; border-bottom: 1px solid var(--border);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            position: sticky; top: 0; z-index: 100; background: rgba(12, 14, 20, 0.7);
        }
        .nav-logo {
            font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
            letter-spacing: -0.5px; color: var(--text-primary); text-decoration: none;
            display: flex; align-items: center; gap: 10px;
        }
        .nav-logo-dot {
            width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
            box-shadow: 0 0 12px var(--accent); animation: pulse-dot 2.5s ease-in-out infinite;
        }
        .nav-links { display: flex; gap: 8px; list-style: none; }
        .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 8px 16px; border-radius: 8px; transition: all 0.2s ease; }
        .nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.08); }
        .nav-cta { color: var(--text-primary) !important; background: var(--accent) !important; font-weight: 500; padding: 9px 20px !important; border-radius: 10px !important; }
        .nav-cta:hover { background: #7b73ff !important; box-shadow: 0 0 20px var(--accent-glow) !important; }

        /* ── PAGE LAYOUT ── */
        .page-content { position: relative; z-index: 1; flex: 1; padding: 80px 24px; max-width: 1000px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 64px; }
        
        /* ── HEADER SECTION ── */
        .contact-header { text-align: center; animation: fade-up 0.6s ease both; }
        .page-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
        .page-sub { font-size: clamp(16px, 2vw, 18px); color: var(--text-secondary); font-weight: 300; max-width: 600px; margin: 0 auto; }

        /* ── INFO CARDS (TOP) ── */
        .info-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px; animation: fade-up 0.6s 0.2s ease both;
        }

        .info-card {
            background: rgba(255,255,255,0.02); border: 1px solid var(--border);
            border-radius: 20px; padding: 32px;
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            display: flex; flex-direction: column; align-items: flex-start;
        }

        .info-icon {
            width: 44px; height: 44px; border-radius: 12px;
            background: rgba(108,99,255,0.1); color: #b4afff;
            display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
        }
        .info-icon.teal { background: rgba(0,212,170,0.1); color: var(--teal); }
        .info-icon.amber { background: rgba(245,166,35,0.1); color: var(--amber); }
        
        .info-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
        .info-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
        .info-link { font-size: 14px; font-weight: 500; color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
        .info-link:hover { color: #b4afff; text-decoration: underline; }

        /* ── CONTACT FORM (BOTTOM) ── */
        .form-section {
            background: rgba(255,255,255,0.03); border: 1px solid var(--border);
            border-radius: 24px; padding: 48px;
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            animation: fade-up 0.6s 0.4s ease both;
        }
        
        .form-header { margin-bottom: 32px; }
        .form-title { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
        
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .input-group { display: flex; flex-direction: column; gap: 8px; }
        .input-group.full { grid-column: span 2; }
        
        .input-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
        
        .form-input, .form-textarea {
            background: rgba(0,0,0,0.2); border: 1px solid var(--border);
            border-radius: 12px; padding: 14px 16px; color: var(--text-primary);
            font-family: 'DM Sans', sans-serif; font-size: 15px; transition: all 0.3s;
            width: 100%; outline: none;
        }
        .form-textarea { resize: vertical; min-height: 120px; }
        
        .form-input:focus, .form-textarea:focus { border-color: var(--border-glow); background: rgba(0,0,0,0.4); box-shadow: 0 0 0 4px rgba(108,99,255,0.1); }

        .form-submit {
            background: var(--accent); color: #fff; border: none; cursor: pointer;
            font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
            padding: 16px 32px; border-radius: 12px; margin-top: 16px;
            transition: all 0.2s ease; display: inline-block; width: auto;
        }
        .form-submit:hover { background: #7b73ff; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

        .status-msg { margin-top: 24px; font-size: 14px; border-radius: 8px; padding: 16px; border: 1px solid transparent; }
        .status-msg.error { background: rgba(255,94,125,0.1); color: var(--rose); border-color: rgba(255,94,125,0.2); }
        .status-msg.success { background: rgba(0,212,170,0.1); color: var(--teal); border-color: rgba(0,212,170,0.2); }

        /* ── FOOTER ── */
        footer { border-top: 1px solid var(--border); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
        .footer-copy, .footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
        .footer-links { display: flex; gap: 24px; list-style: none; }
        .footer-links a:hover { color: var(--text-secondary); }

        @keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

        .menu-toggle {
            display: none; /* Hides the hamburger menu on desktop */
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav { padding: 18px 24px; } 
            .nav-links { display: none; }
            
            /* Add this line to show the menu icon on mobile */
            .menu-toggle { display: block; } 
            
            .page-content { padding: 60px 20px; gap: 60px; }
            .story-stats { flex-direction: column; gap: 24px; text-align: center; }
            footer { flex-direction: column; gap: 16px; text-align: center; }
        }
    
       /* Dot on the the image */
        .nav-logo-dot {
    width: 8px; 
    height: 8px; 
    border-radius: 50%;
    background: var(--accent); 
    
    /* Position exactly in the center of the image */
    position: absolute;
    top: 15%;
    left: 77%;
    transform: translate(-50%, -50%);
    
    /* Apply the blink animation */
    animation: logoBlink 2s infinite ease-in-out;
}

/* Add the animation keyframes at the bottom of your CSS file (or right after the class) */
@keyframes logoBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--accent);
    }
    50% {
        opacity: 0.2;
        box-shadow: 0 0 2px var(--accent);
    }
}
    