:root {
    --primary-color: #ff0000;
    --secondary-color: #cc0000;
    --accent-color: #ff3333;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --highlight-bg: #1a1a1a;
    --text-color: #ffffff;
    --light-text: #cccccc;
    --border-color: #333333;
    --glow-color: rgba(255, 0, 0, 0.25);
    --card-shadow: 0 4px 16px rgba(0,0,0,0.3);
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
}

.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a0a13ee;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    transition: transform var(--transition-speed) ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 0 0 12px var(--accent-color);
}

.logo-subtext {
    font-size: 0.8rem;
    color: var(--light-text);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .logo {
        text-align: center;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtext {
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #0a0a13 0%, #1a1a2e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.terminal-window {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.terminal-header {
    background: var(--darker-bg);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform var(--transition-speed) ease;
}

.control-dot:hover {
    transform: scale(1.2);
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27c93f; }

.terminal-title {
    color: var(--light-text);
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
}

.terminal-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    color: var(--terminal-text);
    min-height: 200px;
}

.terminal-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 0 16px var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px var(--accent-color);
}

/* Expertise Section */
.capabilities {
    padding: 6rem 2rem;
    background: #181a23;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 12px var(--accent-color);
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -20px;
}

.section-divider::after {
    right: -20px;
}

.expertise-intro,
.expertise-outro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.expertise-intro p,
.expertise-outro p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: linear-gradient(145deg, var(--darker-bg) 0%, var(--highlight-bg) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.capability-card:hover::before {
    transform: translateX(100%);
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

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

.capability-card:hover .card-icon {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--glow-color);
}

.capability-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.capability-list li {
    color: var(--light-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.capability-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.capability-card:hover .capability-list li {
    transform: translateX(5px);
}

/* Solutions Section */
.solutions {
    padding: 6rem 2rem;
    background: #10101a;
    position: relative;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--glow-color);
}

.solution-header {
    background: var(--darker-bg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.solution-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.security-level {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
}

.solution-card:hover .security-level {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--glow-color);
}

.solution-content {
    padding: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-top: 1.5rem;
}

.solution-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.solution-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.solution-card:hover .solution-features li {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #10101a;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background: #23243a;
    border: 1.5px solid var(--accent-color);
    border-radius: 4px;
    padding: 0.75rem;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

.submit-button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--glow-color);
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.info-card:hover p {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #181a23;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.security-notice {
    text-align: right;
}

.security-notice p {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--glow-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--light-text);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: #181a23;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-card:hover::before {
    transform: translateX(100%);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.team-header {
    background: rgba(10, 10, 10, 0.5);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.team-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.team-content {
    padding: 1.5rem;
}

.team-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-features {
    list-style: none;
    margin-top: 1.5rem;
}

.team-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.team-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.team-card:hover .team-features li {
    transform: translateX(5px);
}

.team-achievements {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.achievement-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.achievement-card:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.achievement-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.achievement-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: 1fr;
    }

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

    .achievement-card {
        padding: 1.5rem;
    }
}

/* DEMO CARDS SECTION */
.expertise-demos {
    background: var(--highlight-bg);
    border-radius: 12px;
    box-shadow: 0 0 32px rgba(0,0,0,0.4);
    padding: 2.5rem 2rem 3rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid var(--primary-color);
}

.demos-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.demos-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 0 0 12px var(--glow-color);
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: linear-gradient(135deg, var(--darker-bg) 60%, var(--dark-bg) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 0 24px rgba(255,0,0,0.15);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.demo-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 32px var(--primary-color), 0 0 0 4px var(--secondary-color);
    border-color: var(--secondary-color);
}

.service-details {
    width: 100%;
    margin: 1.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-details.active {
    max-height: 500px;
    margin: 1.5rem 0;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    color: var(--light-text);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,0,0,0.1);
    display: flex;
    align-items: center;
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.demo-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 16px var(--primary-color);
}

.demo-card:hover .demo-icon {
    color: var(--secondary-color);
    text-shadow: 0 0 24px var(--secondary-color);
}

.demo-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

.demo-card p {
    color: var(--light-text);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.2rem;
    min-height: 60px;
}

.demo-btn {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    padding: 0.7rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 8px var(--primary-color);
    transition: all 0.3s ease;
    margin-top: auto;
}

.demo-btn:hover {
    background: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 0 16px var(--secondary-color);
}

.demo-btn.active {
    background: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 0 16px var(--secondary-color);
}

/* RESPONSIVE DEMOS */
@media (max-width: 900px) {
    .demos-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .demos-grid {
        grid-template-columns: 1fr;
    }
    .expertise-demos {
        padding: 1.2rem 0.5rem 2rem 0.5rem;
    }
}

.tab-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.tab-pane {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .tab-content {
        margin-top: 60px;
    }
    
    .tab-pane {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
}

.demo-container {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    animation: fadeIn 0.5s ease-out;
}

.security-dashboard,
.code-dashboard,
.cloud-dashboard,
.data-dashboard {
    background: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-header {
    background: var(--highlight-bg);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.dashboard-status {
    color: #27c93f;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    animation: pulse 2s infinite;
}

.dashboard-body {
    padding: 1rem;
}

.compliance-metrics,
.code-metrics,
.performance-metrics,
.data-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    background: var(--highlight-bg);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.metric-value {
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--light-text);
}

.metric-progress {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    animation: progress 2s ease-out;
}

.security-alerts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--highlight-bg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    animation: slideIn 0.5s ease-out;
}

.alert-item i {
    color: #27c93f;
}

.pipeline-stages {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--highlight-bg);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stage.active {
    border-color: var(--primary-color);
}

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

.stage-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    animation: progress 2s infinite;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--highlight-bg);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

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

.resource-info {
    display: flex;
    flex-direction: column;
}

.resource-name {
    font-size: 0.9rem;
    color: var(--light-text);
}

.resource-status {
    font-size: 0.8rem;
    color: #27c93f;
    font-family: 'Courier New', monospace;
}

.data-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.flow-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--highlight-bg);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.stage-count {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Staffing Dashboard Styles */
.staffing-dashboard {
    background: var(--darker-bg);
    border-radius: 8px;
    overflow: hidden;
}

.contribution-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.code-contributions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--highlight-bg);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contribution-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.contribution-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.contribution-item span {
    flex: 1;
    color: var(--light-text);
}

.contribution-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.contribution-details span {
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.lines-added {
    color: #27c93f !important;
}

.lines-changed {
    color: #ffbd2e !important;
}

.issues-resolved, .vulnerabilities {
    color: var(--primary-color) !important;
}

.avg-time, .compliance {
    opacity: 0.8;
}

/* Animation for contribution items */
.contribution-item {
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.contribution-item:nth-child(1) { animation-delay: 0.1s; }
.contribution-item:nth-child(2) { animation-delay: 0.2s; }
.contribution-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contribution-metrics {
        grid-template-columns: 1fr;
    }
    
    .contribution-item {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }
    
    .contribution-details {
        align-items: center;
        margin-top: 0.5rem;
    }
}

/* Success Stories Styles */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: linear-gradient(145deg, var(--darker-bg) 0%, var(--highlight-bg) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }
.story-card:nth-child(4) { animation-delay: 0.4s; }

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--glow-color);
}

.story-header {
    background: var(--darker-bg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.story-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.story-tag {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.story-content {
    padding: 1.5rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.achievement-list li {
    color: var(--light-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.achievement-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.story-card:hover .achievement-list li {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .success-stories {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .story-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .story-metrics {
        grid-template-columns: 1fr;
    }

    .story-description {
        text-align: center;
    }
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(145deg, var(--darker-bg) 0%, var(--highlight-bg) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mission-statement h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-statement p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.mission-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.mission-metrics .metric {
    background: var(--highlight-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-metrics .metric:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.mission-metrics .metric-value {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mission-metrics .metric-label {
    color: var(--light-text);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Section Intros */
.expertise-intro,
.team-intro,
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.expertise-intro p,
.team-intro p,
.contact-intro p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

    .mission-statement h2 {
        font-size: 2rem;
    }

    .mission-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-metrics .metric {
        padding: 1rem;
    }

    .expertise-intro,
    .team-intro,
    .contact-intro {
        padding: 0 1rem;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--darker-bg) 0%, var(--highlight-bg) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--glow-color);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-metrics .metric {
    background: var(--highlight-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-metrics .metric:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.service-metrics .value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.service-metrics .label {
    display: block;
    color: var(--light-text);
    font-size: 0.8rem;
}

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

    .mission-statement h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; } 