:root {
    --bg-dark: #0A0F1A;
    --bg-panel: #111827;
    --bg-glass: rgba(17, 24, 39, 0.7);
    
    --primary: #2563EB;   /* Deep Blue */
    --cyan: #38BDF8;      /* Light Tech Blue */
    --accent: #818CF8;    /* Lighter Blue */
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    
    --border-color: rgba(56, 189, 248, 0.15);
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 10; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-main); font-weight: 700; line-height: 1.2; }
.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-blue { color: var(--primary); }
.text-cyan { color: var(--cyan); }

p { color: var(--text-muted); }

/* Utilities */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }

/* Canvas Background */
canvas#networkCanvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; opacity: 0.4; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 8px; font-family: var(--font-body);
    font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); }
.btn-primary:hover { background: #1D4ED8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-color); }
.btn-outline:hover { background: rgba(56, 189, 248, 0.1); border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(10, 15, 26, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 0;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -0.5px; }
.logo-sub { font-size: 0.75rem; color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
.mobile-menu-btn { display: none; background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { padding: 10rem 0 6rem; position: relative; min-height: 90vh; display: flex; align-items: center; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: 1; }
.glow-orb.top-left { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(37, 99, 235, 0.3); }
.glow-orb.bottom-right { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: rgba(56, 189, 248, 0.2); }

.hero-container { text-align: center; max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.pill-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
    background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--cyan); margin-bottom: 2rem;
}
.pulse-dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; display: inline-block; box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }

.hero-title { font-size: 4.5rem; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
.hero-desc { font-size: 1.25rem; max-width: 700px; margin: 0 auto 3rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 5rem; }

.hero-stats { display: flex; gap: 3rem; justify-content: center; border-top: 1px solid var(--border-color); padding-top: 3rem; }
.stat { display: flex; align-items: center; gap: 0.75rem; color: var(--text-main); font-weight: 500; font-family: var(--font-heading); }
.stat i { font-size: 1.5rem; color: var(--cyan); }

/* Infinite Marquee */
.infinite-marquee {
    position: relative; width: 100%; background: var(--bg-panel); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.25rem 0; overflow: hidden; display: flex; z-index: 10;
}
.marquee-content {
    display: flex; white-space: nowrap; gap: 2rem;
    font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: var(--text-muted);
    animation: scrollMarquee 40s linear infinite;
}
.marquee-content span { color: #fff; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
.section { padding: 8rem 0; position: relative; z-index: 10; }
.section-title-wrap { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-title { font-size: 3rem; margin-bottom: 1rem; letter-spacing: -1px; }
.section-subtitle { font-size: 1.15rem; }
.left-align { text-align: left; }

/* Grid Layouts */
.glass-panel {
    background: var(--bg-glass); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 3rem; backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}
.glass-panel:hover { transform: translateY(-5px); border-color: var(--cyan); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.card-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin-bottom: 1.5rem; }
.bg-blue { background: rgba(37, 99, 235, 0.1); color: var(--primary); border: 1px solid rgba(37, 99, 235, 0.2); }
.bg-cyan { background: rgba(56, 189, 248, 0.1); color: var(--cyan); border: 1px solid rgba(56, 189, 248, 0.2); }
.service-card h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.service-card p { margin-bottom: 2rem; min-height: 80px;}

.card-list { list-style: none; }
.card-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-weight: 500; font-family: var(--font-heading); }

/* Sectors Split Layout */
.sectors-section.dark-panel { background: rgba(17, 24, 39, 0.4); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.split-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.sectors-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.sector-pill {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem; border-radius: 100px;
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s;
}
.sector-pill:hover { background: rgba(56, 189, 248, 0.1); border-color: var(--cyan); color: var(--cyan); }
.sector-pill i { font-size: 1.25rem; color: var(--cyan); }

/* Footer */
.footer { background: #05080F; padding: 6rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 10; }
.footer-layout { display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; margin-bottom: 4rem; }
.footer-desc { max-width: 350px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-main); text-decoration: none; font-weight: 500; }
.contact-item:hover { color: var(--cyan); }

.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--cyan); }
.social-link { display: flex; align-items: center; gap: 0.5rem; }
.social-link i { font-size: 1.25rem; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: var(--text-muted); }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: var(--text-muted); text-decoration: none; }
.legal-links a:hover { color: #fff; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
    .footer-links-group { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
    .footer-links-group { grid-template-columns: 1fr; }
}
