:root {
    --primary-color: #00b7ff;
    --secondary-color: #00ff4c;
    --bg-color: #0a0a0a;
    --text-color: rgba(255, 255, 255, 0.9);
    --grid-color: rgba(255, 255, 255, 0.03);
    --terminal-bg: rgba(10, 10, 10, 0.95);
    font-family: 'Courier New', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px) 0 0 / 50px 50px,
        linear-gradient(0deg, var(--grid-color) 1px, transparent 1px) 0 0 / 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.status-indicator {
    padding: 0.5rem;
    background: rgba(0, 255, 76, 0.1);
    border: 1px solid rgba(0, 255, 76, 0.3);
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
}

.status-indicator::before {
    content: '⬤';
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 0.6rem;
    animation: pulse 2s infinite;
}

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

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

.container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVfJ/YAAAACHRSTlMzMzMzMzMzM85JBgUAAAABYktHRAH/Ai3eAAAACXBIWXMAAAsTAAALEwEAmpwYAAAARklEQVQ4y2NgQAX8DKiAA0XGEEVGCkWGG0WGDUWGFUWGBUWGGUWGCUWGEUWGAUWGHkWGDkWGFkWGBkWGGkWGCkWGCkUGAPUZDAYzHAVxAAAAAElFTkSuQmCC');
    opacity: 0.02;
    pointer-events: none;
    z-index: 1000;
}

.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    filter: drop-shadow(0 0 10px var(--glow-color));
    animation: float-around 1s ease-in-out infinite;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(0, -45px) rotate(0deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(-5deg);
    }
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.glitch-container {
    text-align: center;
    margin: 2rem 0;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 20px var(--glow-color); }
    50% { text-shadow: 0 0 40px var(--glow-color); }
    100% { text-shadow: 0 0 20px var(--glow-color); }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: glitch 3s infinite linear alternate-reverse;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.title-container {
    text-align: center;
    margin: 2rem 0;
    perspective: 1000px;
}

.reflected-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.reflected-title::after {
    content: 'AVIAN ANALYTICS';
    position: absolute;
    left: 0;
    bottom: -20px;
    transform: rotateX(180deg) scaleY(-1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 1.5rem auto;
    color: var(--primary-color);
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.info-box::before {
    content: '🔍';
    position: absolute;
    left: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
}

.cycling-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding-left: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    min-height: 1.6em;
    display: inline-block;
}

.cycling-text::after {
    content: '|';
    position: absolute;
    margin-left: 0.2rem;
    color: var(--primary-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem auto 2rem;
    padding: 0;
    position: relative;
    z-index: 3;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
    height: 100%;
}

.tab-pane.active {
    display: flex;
    flex-direction: column;
}

.tab-pane h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tab-pane p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testing-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    height: calc(100% - 3rem);
    align-content: start;
}

.test-card,
.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.test-card h3,
.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.test-card p,
.service-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* Remove all contact-related code */
.contact-form,
.contact-form *,
[class*="contact"],
#contact,
.contact {
    display: none !important;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .info-box, .tabs, .tabs-container {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .reflected-title {
        font-size: 3.5rem;
    }

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

@media screen and (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }

    .title-container {
        margin: 1rem 0 1.5rem 0;
    }

    .reflected-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .reflected-title::after {
        bottom: -12px;
        font-size: 2.8rem;
        opacity: 0.2;
    }

    .info-box {
        padding: 0.8rem 1.5rem;
        min-height: 50px;
        margin: 1rem auto;
        width: 90%;
    }

    .info-box::before {
        left: 1rem;
        font-size: 1rem;
    }

    .cycling-text {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .cycling-text::after {
        font-size: 1.2rem;
    }

    .tabs {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
    }

    .floating-element {
        font-size: 1.8rem;
        opacity: 0.1;
    }

    .test-card,
    .service-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .tabs-container {
        width: 95%;
        height: 70vh;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .content-wrapper {
        padding: 0.8rem;
    }

    .title-container {
        margin: 0.8rem 0 1.2rem 0;
    }

    .reflected-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .reflected-title::after {
        bottom: -8px;
        font-size: 2.2rem;
    }

    .info-box {
        padding: 0.7rem 1.2rem;
        min-height: 45px;
    }

    .cycling-text {
        font-size: 0.9rem;
    }

    .tabs {
        gap: 0.4rem;
    }

    .tab-btn {
        padding: 0.4rem 0.8rem;
        min-width: 90px;
        font-size: 0.8rem;
    }

    .tabs-container {
        height: 75vh;
    }

    .floating-element {
        font-size: 1.6rem;
        opacity: 0.08;
    }

    .test-card,
    .service-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .testing-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Update touch targets without contact references */
    .tab-btn {
        min-height: 44px;
    }
}

/* Add smooth transitions for orientation changes */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .title-container {
        margin: 0.5rem 0;
    }

    .reflected-title {
        font-size: 2rem;
    }

    .info-box {
        min-height: 70px;
        padding: 1rem;
    }

    .tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .tab-btn {
        flex: 0 1 calc(33.333% - 0.4rem);
        padding: 0.6rem;
    }
}

/* Add new styles for feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mission content styles */
.mission-content {
    display: grid;
    gap: 2rem;
}

.mission-statement {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.key-objectives {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.key-objectives ul {
    list-style: none;
    margin: 1rem 0;
}

.key-objectives li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.metric-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Lab content styles */
.lab-intro {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.capabilities-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.capabilities-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Services content styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.service-features {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Enhanced tab transitions */
.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-grid,
    .metrics-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .metric-value {
        font-size: 2rem;
    }

    .lab-intro,
    .services-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .feature-card,
    .service-card,
    .metric {
        padding: 1.2rem;
    }
}

/* Add hover effects for interactive elements */
.tab-btn:hover,
.feature-card:hover,
.service-card:hover,
.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Enhance text readability */
.tab-pane p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.tab-pane h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

/* Add subtle animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.service-card,
.metric {
    animation: fadeIn 0.5s ease-out forwards;
} 