:root {
    /* Primary Colors */
    --color-bg-deep: #0A0A12;
    --color-bg-card: rgba(16, 16, 28, 0.8);
    --color-primary: #00F3FF;
    /* Electric Blue */
    --color-secondary: #9D00FF;
    /* Cyber Purple */
    --color-accent-green: #00FF41;
    /* Matrix Green */
    --color-accent-orange: #FF6B00;
    /* Warning Orange */
    --color-text-main: #E0E0E0;
    --color-text-dim: #A0A0A0;

    /* GRadients */
    --grad-cyber: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --grad-bg: radial-gradient(circle at top right, #1A1A2E, #0A0A12);

    /* Effects */
    --glow-primary: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --glow-secondary: 0 0 10px rgba(157, 0, 255, 0.5), 0 0 20px rgba(157, 0, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-header: 'Orbitron', sans-serif;
    --font-subheader: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Corporate Mode Overrides (Subtle) */
body.corporate-mode {
    --color-bg-deep: #0f172a;
    --color-primary: #3b82f6;
    --color-secondary: #6366f1;
    --glow-primary: none;
    --glow-secondary: none;
}

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

html {
    scroll-behavior: smooth;
}

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

canvas#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--grad-cyber);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo-text {
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.logo-text .accent {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dim);
    font-family: var(--font-subheader);
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

#theme-toggle {
    background: none;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    background: var(--color-primary);
    color: var(--color-bg-deep);
    box-shadow: var(--glow-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-logo-container {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.hero-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(var(--glow-primary));
    animation: floating 3s ease-in-out infinite, logo-glow 5s infinite alternate;
}

@keyframes floating {
    0% {
        transform: translateY(0) rotateY(0);
    }

    50% {
        transform: translateY(-10px) rotateY(5deg);
    }

    100% {
        transform: translateY(0) rotateY(0);
    }
}

@keyframes logo-glow {
    from {
        filter: drop-shadow(0 0 5px var(--color-primary));
    }

    to {
        filter: drop-shadow(0 0 20px var(--color-primary));
    }
}

.hologram {
    font-size: 6rem;
    margin-bottom: 1rem;
    position: relative;
    color: #fff;
    animation: glitch 3s infinite;
}

.tagline {
    font-family: var(--font-subheader);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.admin-link-footer {
    font-size: 0.8rem;
    color: var(--color-bg-deep);
    /* Subtle when not hovered */
    opacity: 0.3;
    transition: all 0.3s ease;
}

.admin-link-footer:hover {
    color: var(--color-primary);
    opacity: 1;
    text-shadow: var(--glow-primary);
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-header);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-deep);
}

.btn-secondary {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-glow:hover {
    box-shadow: var(--glow-primary);
    transform: translateY(-5px);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

.btn-pulse:hover {
    box-shadow: var(--glow-secondary);
    background: var(--color-secondary);
    color: #fff;
}

/* Services */
.services {
    padding: 8rem 0;
    background: rgba(10, 10, 18, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    text-shadow: var(--glow-primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    transform: translate(-50%, -50%) scale(1.5);
}

.service-card::after {
    content: "Δ Ω Σ Ϡ";
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.service-card:hover::after {
    opacity: 0.5;
}

/* Process Flow */
.process {
    padding: 8rem 0;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    position: relative;
}

.node-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-card);
    font-size: 1.5rem;
    color: var(--color-primary);
    box-shadow: var(--glow-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-inner:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    color: var(--color-bg-deep);
}

.node-text {
    margin-top: 1rem;
    font-family: var(--font-subheader);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.process-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    min-width: 50px;
}

/* Dashboard */
.dashboard {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.dashboard-main {
    background: var(--color-bg-card);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 1rem;
    height: 400px;
    position: relative;
}

#world-map {
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    animation: map-pulse 3s infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2s;
}

.status-indicator {
    background: var(--color-primary);
    color: var(--color-bg-deep);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--glow-primary);
    z-index: 10;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-bg-card);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: #fff;
}

.level-low {
    color: var(--color-accent-green);
    text-shadow: 0 0 5px var(--color-accent-green);
}

.log-console {
    background: #000;
    border: 1px solid #333;
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--color-accent-green);
    height: 150px;
    overflow-y: auto;
}

/* Team Section */
.team {
    padding: 8rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.photo-frame {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    padding: 10px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.team-member:hover img {
    filter: grayscale(0);
    box-shadow: var(--glow-primary);
}

.linkedin-icon {
    font-size: 1.5rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.linkedin-icon:hover {
    color: #0077b5;
}

/* Case Studies */
.cases {
    padding: 8rem 0;
    background: rgba(10, 10, 18, 0.4);
}

.cases-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.alien-pad {
    width: 400px;
    background: #1a1a2e;
    border: 2px solid var(--color-secondary);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: inset 0 0 20px rgba(157, 0, 255, 0.2);
}

.pad-header {
    font-size: 0.7rem;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-header);
}

.pad-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pad-content .tag {
    background: rgba(157, 0, 255, 0.2);
    color: var(--color-secondary);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 3px;
    display: inline-block;
    margin-top: 1rem;
}

/* Contact Console */
.contact {
    padding: 8rem 0;
}

.console-box {
    max-width: 600px;
    margin: 0 auto;
    background: #000;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    overflow: hidden;
}

.console-header {
    background: #111;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.console-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--color-primary);
}

.console-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 5px;
    background: #444;
}

.cyber-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 0.8rem;
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    outline: none;
}

.transmit-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-header);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.transmit-btn:hover {
    background: var(--color-primary);
    color: #000;
}

.form-feedback {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse-glow 2s infinite alternate;
}

.form-feedback i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.feedback-text {
    font-family: var(--font-subheader);
    font-size: 1rem;
    font-weight: 600;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.2);
    }

    to {
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    }
}

/* Animations */
@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: none;
    }

    2% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-secondary);
    }

    4% {
        transform: translate(2px, -2px);
        text-shadow: -2px 0 var(--color-primary), 2px 0 var(--color-secondary);
    }

    6% {
        transform: translate(0);
        text-shadow: none;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes map-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    background-color: #128c7e;
    color: #fff;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--color-bg-deep);
}

.values .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: rgba(10, 10, 18, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border-left: 4px solid var(--color-primary);
    position: relative;
    font-style: italic;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
    color: var(--color-primary);
}

.testimonial-author {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: bold;
    color: var(--color-primary);
}

/* Tech Stack */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.tech-item {
    padding: 1rem 2.5rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

/* Industries */
.industries-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.industry-tag {
    padding: 0.8rem 1.5rem;
    border: 1px dashed rgba(157, 0, 255, 0.3);
    color: var(--color-accent);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.faq-a {
    padding: 0 1.5rem 1.5rem;
    color: #888;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    nav ul {
        display: none;
    }

    .hologram {
        font-size: 3rem;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cases-carousel {
        flex-direction: column;
        align-items: center;
    }

    .alien-pad {
        width: 100%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    background-color: #128c7e;
    color: #fff;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--color-bg-deep);
}

.values .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: rgba(10, 10, 18, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border-left: 4px solid var(--color-primary);
    position: relative;
    font-style: italic;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.1;
    color: var(--color-primary);
}

.testimonial-author {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: bold;
    color: var(--color-primary);
}

/* Tech Stack */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.tech-item {
    padding: 1rem 2.5rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

/* Industries */
.industries-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.industry-tag {
    padding: 0.8rem 1.5rem;
    border: 1px dashed rgba(157, 0, 255, 0.3);
    color: var(--color-accent);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

.faq-a {
    padding: 0 1.5rem 1.5rem;
    color: #888;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    nav ul {
        display: none;
    }

    .hologram {
        font-size: 3rem;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cases-carousel {
        flex-direction: column;
        align-items: center;
    }

    .alien-pad {
        width: 100%;
    }
}

/* Modern Footer Styles */
.footer {
    background: #121212;
    /* Dark Grey as requested */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--color-primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0, 243, 255, 0.1);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-brand-logo img {
    width: 25px;
    /* Significantly reduced size */
    height: auto;
}

.footer-brand-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-brand-desc {
    color: #888;
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    max-width: 300px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-links-list a::before {
    content: '›';
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links-list a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #aaa;
    font-size: 0.85rem;
}

.footer-contact-item i {
    color: var(--color-primary);
    margin-top: 3px;
    width: 16px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    flex-grow: 1;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--color-primary);
}

.newsletter-btn {
    background: var(--color-primary);
    color: #000;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
}