/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Step description font styling - removed conflicting rules */

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

/* Hide main content initially when intro is active */
body.intro-active {
    overflow: hidden !important;
}

body.intro-active > *:not(.intro-overlay) {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Intro Overlay */
.intro-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #0019FF 0%, #00d4ff 100%) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 1s ease, visibility 1s ease;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.intro-text {
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: introTextFadeIn 2s ease forwards;
}

.intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: introLogoFadeIn 2s ease 1s forwards;
}

.intro-logo .logo-image {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 25, 255, 0.5));
}

.intro-logo .logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 25, 255, 0.5);
}

@keyframes introTextFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introLogoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No Animation - Static Display */
.glitch-text,
.glitch-logo {
    position: relative;
}

@keyframes interferenceNoise {
    0% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    25% {
        opacity: 0.8;
        transform: translateX(-2px) scale(1.02);
    }
    50% {
        opacity: 0.6;
        transform: translateX(2px) scale(0.98);
    }
    75% {
        opacity: 0.8;
        transform: translateX(-1px) scale(1.01);
    }
    100% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
}











/* Professional Military Intro Animations */
@keyframes crtScan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(2px);
    }
}

@keyframes titleGlow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

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

@keyframes statusSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

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

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

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

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

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

@keyframes glitchLine {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(0);
    }
}

@keyframes pixelFlicker {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes statusGlitch {
    0%, 100% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-1px);
    }
    20% {
        transform: translateX(1px);
    }
    30% {
        transform: translateX(-1px);
    }
    40% {
        transform: translateX(1px);
    }
    50% {
        transform: translateX(0);
    }
}

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

@keyframes scanLines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}













/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

/* Hide default cursor on interactive elements when custom cursor is active */
a, button, .nav-link, .selection-card, .demo-button, .learn-more-button {
    cursor: none !important;
}

/* Mobile cursor styles */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    /* Show default cursor on mobile */
    body {
        cursor: auto !important;
    }
    
    a, button, .nav-link, .selection-card, .demo-button, .learn-more-button {
        cursor: pointer !important;
    }
    
    /* Hide floating objects on mobile */
    .floating-object {
        display: none;
    }
}

.cursor-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(64, 64, 64, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.02s linear;
    backdrop-filter: blur(10px);
}

.cursor-arrow {
    color: #000000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 600;
    transform: rotate(-90deg);
}

.cursor-brackets {
    position: absolute;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    display: none;
}

.bracket {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid #000000;
}

.bracket.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bracket.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bracket.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bracket.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.floating-object {
    position: absolute;
    width: 12px;
    height: 4px;
    background: linear-gradient(90deg, #0019FF, #0019FF);
    border-radius: 2px;
    animation: float 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
    display: none;
}



@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateX(0px); }
    50% { transform: translate(-50%, -50%) translateX(20px); }
}

@keyframes ping {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    position: relative;
}

.logo-icon {
    width: 110px;
    height: 110px;
    position: relative;
    margin-right: -14px;
    margin-top: -12px;
    z-index: 1;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text-container {
    display: flex;
    align-items: baseline;
    gap: 6px;
    z-index: 1;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.trademark {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #666666;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #0019FF;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 25, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #000000;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(0, 25, 255, 0.1);
    color: #0019FF;
    padding-left: 25px;
}

.demo-button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: #ffffff;
    background: rgba(0, 25, 255, 0.9);
    border: 1px solid #0019FF;
    border-radius: 2px;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 25, 255, 0.3);
}

.demo-button::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 2px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-button:hover {
    background: rgba(0, 25, 255, 0.9);
    border-color: #0019FF;
    box-shadow: 0 0 15px rgba(0, 25, 255, 0.4);
    transform: translateY(-1px);
}

.demo-button:hover::before {
    opacity: 1;
}

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

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        padding: 20px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .light-beam {
        display: none;
    }
}

/* Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.light-beam {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80vh;
    background: linear-gradient(
        180deg,
        rgba(138, 43, 226, 0.8) 0%,
        rgba(75, 0, 130, 0.6) 20%,
        rgba(138, 43, 226, 0.4) 40%,
        rgba(75, 0, 130, 0.2) 60%,
        rgba(138, 43, 226, 0.1) 80%,
        transparent 100%
    );
    border-radius: 100px;
    filter: blur(20px);
    animation: beam-pulse 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes beam-pulse {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(-50%) scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleY(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
    color: #ffffff;
}

.learn-more-button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    border-radius: 0;
}

.learn-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.learn-more-button:hover::before {
    left: 100%;
}

.learn-more-button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}





/* Video Selection Section */
.video-selection-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.video-container {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(0, 25, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

/* Video Backgrounds */
.video-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}



.video-bg.active {
    opacity: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    pointer-events: none;
    transition: filter 0.5s ease-in-out;
}





/* Law Enforcement UI Overlay - Clean & Simple */
.law-enforcement-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-family: 'JetBrains Mono', monospace;
    color: white;
    display: block;
}

.law-enforcement-ui.active {
    opacity: 1;
    display: block;
}

/* Search & Rescue UI Overlay */
.search-rescue-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-family: 'JetBrains Mono', monospace;
    color: white;
    display: block;
}

.search-rescue-ui.active {
    opacity: 1;
    display: block;
}

/* Wildfire UI Overlay */
.wildfire-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-family: 'JetBrains Mono', monospace;
    color: white;
    display: block;
}

.wildfire-ui.active {
    opacity: 1;
    display: block;
}

/* Simple Top Bar */
.le-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    backdrop-filter: blur(10px);
}

.le-logo {
    display: flex;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0019FF;
}

.skyshield-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0019FF;
}

/* Search & Rescue - Yellow SKYSHIELD text */
.search-rescue-ui .skyshield-center span {
    color: #FFD700;
}

/* Search & Rescue - Yellow P1 call number */
.search-rescue-ui .call-number {
    color: #FFD700;
}

/* Search & Rescue - Yellow service call status */
.search-rescue-ui .call-status {
    color: #FFD700;
}

/* Wildfire - Red SKYSHIELD text */
.wildfire-ui .skyshield-center span {
    color: #FF4444;
}

/* Wildfire - Red P1 call number */
.wildfire-ui .call-number {
    color: #FF4444;
}

/* Wildfire - Red service call status */
.wildfire-ui .call-status {
    color: #FF4444;
}



.le-logo img {
    width: 55px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-top: -1px;
}



.le-call-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.call-number {
    font-size: 12px;
    font-weight: 600;
    color: #0019FF;
}

.call-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

/* Simple Warrant Alert */
.service-call-box {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    max-width: 200px;
    font-family: 'JetBrains Mono', monospace;
}



.call-info {
    flex: 1;
}

.call-status {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0019FF;
    margin-bottom: 1px;
}

.call-details {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}





/* Altitude Bar */
.altitude-bar {
    position: absolute;
    left: 20px;
    top: 70px;
    width: 60px;
    height: 160px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    font-family: 'JetBrains Mono', monospace;
    z-index: 1000;
    overflow: hidden;
    position: relative;
}

.altitude-scale {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 4px;
}

.altitude-item {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.altitude-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    margin: 2px 4px;
    border-radius: 2px;
}

.altitude-item.active::before {
    content: "▶ ";
    margin-right: 2px;
}

.altitude-value {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #0019FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    white-space: nowrap;
}



/* Zoom Box */
.zoom-box {
    position: absolute;
    left: 20px;
    top: 250px;
    width: 60px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 8px 4px;
    backdrop-filter: blur(10px);
    font-family: 'JetBrains Mono', monospace;
    z-index: 1000;
}

.zoom-item {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.zoom-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    margin: 2px 4px;
    border-radius: 2px;
}

.zoom-item.active::before {
    content: "▶ ";
    margin-right: 2px;
}

/* Video Section Header */
.section-header {
    text-align: center;
    padding: 60px 0 40px 0;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #0019FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(45deg, #0019FF, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





/* How It Works Section - Aerodome Style */
#how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

#how-it-works .max-w-5xl {
    position: relative;
    z-index: 2;
}

@keyframes emergencyScan {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

/* Emergency Tech Cards Styling */
.grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-3 {
    position: relative;
    z-index: 2;
}

.bg-white.rounded-xl.shadow-lg {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%) !important;
    border: 1px solid rgba(0, 25, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 
        0 8px 32px rgba(0, 25, 255, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.bg-white.rounded-xl.shadow-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.bg-white.rounded-xl.shadow-lg:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 1) 100%) !important;
    border-color: rgba(0, 25, 255, 0.3) !important;
    transform: translateY(-8px) !important;
    box-shadow: 
        0 12px 48px rgba(0, 25, 255, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.bg-white.rounded-xl.shadow-lg:hover::before {
    left: 100%;
}

.bg-white.rounded-xl.shadow-lg .w-16 {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5) !important;
    animation: emergencyPulse 2s ease-in-out infinite !important;
    position: relative !important;
    z-index: 2 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    margin-top: 20px !important;
}

.bg-white.rounded-xl.shadow-lg:hover .w-16 {
    background: linear-gradient(135deg, #0019FF 0%, #0000cc 100%) !important;
    box-shadow: 0 0 30px rgba(0, 25, 255, 0.7) !important;
}

.bg-white.rounded-xl.shadow-lg h3 {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.bg-white.rounded-xl.shadow-lg p {
    color: #6b7280 !important;
    text-shadow: none !important;
}

@keyframes emergencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }
}



.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

#how-it-works h2 {
    color: #1f2937 !important;
    text-shadow: none !important;
}

#how-it-works h3 {
    color: #374151 !important;
    text-shadow: none !important;
}

.interactive-demo-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Left Panel - Selection Cards */
.selection-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selection-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 25, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 25, 255, 0.3);
    transform: translateX(5px);
}

.selection-card.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 25, 255, 0.5);
    color: #000000;
}

.card-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0019FF;
    min-width: 30px;
}

.selection-card.active .card-number {
    color: #000000;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    color: #1f2937;
}

.selection-card.active .card-content h3 {
    color: #000000;
}

.card-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.selection-card.active .card-content p {
    color: #000000;
}

.active-indicator {
    position: relative;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.selection-card.active .active-indicator {
    opacity: 1;
}

.explore-button {
    margin-top: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.explore-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 25, 255, 0.8);
    transform: translateY(-2px);
}

/* Right Panel - Interactive Map */
.map-panel {
    position: relative;
    height: 600px;
    width: 100%;
    min-height: 500px;
    background: #000000;
    border: 3px solid #ffffff;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    border: 1px solid #666;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-color: #000000;
    opacity: 1;
    transition: all 0.5s ease;
}



.map-container .flight-path {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #0066ff 0px,
        #0066ff 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Golden Valley Map Elements */
.map-container .road {
    position: absolute;
    background: #333333;
    border-radius: 2px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.map-container .road.hwy-100 {
    top: 20%;
    left: 10%;
    width: 80%;
    height: 4px;
    background: #000000;
}

.map-container .road.hwy-55 {
    top: 50%;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #000000;
}

.map-container .road.duluth-st {
    top: 15%;
    left: 30%;
    width: 3px;
    height: 70%;
    background: #333333;
}

.map-container .road.golden-valley-rd {
    top: 35%;
    left: 20%;
    width: 60%;
    height: 3px;
    background: #333333;
}

.map-container .road.xerxes-ave {
    top: 25%;
    left: 60%;
    width: 3px;
    height: 50%;
    background: #333333;
}

.map-container .road.penn-ave {
    top: 65%;
    left: 15%;
    width: 70%;
    height: 3px;
    background: #333333;
}

.map-container .landmark {
    position: absolute;
    background: #000000;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    z-index: 3;
    text-align: center;
    min-width: 60px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.map-container .landmark.city-hall {
    top: 25%;
    left: 25%;
}

.map-container .landmark.police-station {
    top: 40%;
    left: 45%;
}

.map-container .landmark.fire-station {
    top: 55%;
    left: 35%;
}

.map-container .landmark.hospital {
    top: 30%;
    left: 70%;
}

.map-container .landmark.school {
    top: 70%;
    left: 60%;
}

.map-container .map-title {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000000;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.map-container .emergency-vector {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s ease;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    border: 2px solid #ff0000;
}

.map-container .emergency-pulse {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 3px solid #ff0000;
    border-radius: 8px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Call for Service Panel */
.map-container .call-service-panel {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 250px;
    background: white;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container .call-service-panel h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.map-container .call-service-panel .priority {
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
    margin: 4px 0;
}

.map-container .call-service-panel .type {
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
    margin: 4px 0;
}

.map-container .call-service-panel .id,
.map-container .call-service-panel .time {
    color: #000;
    font-size: 14px;
    margin: 4px 0;
}

/* Drone Station */
.map-container .drone-station {
    position: absolute;
    top: 60%;
    left: 15%;
    width: 48px;
    height: 48px;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid #00ff00;
}

/* Status Dots */
.map-container .status-dots {
    position: absolute;
    top: 60%;
    left: 8%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 6px rgba(0, 255, 0, 0.6);
}

.map-container .status-dot.red {
    background: #ff0000;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}

.map-container .drone-vector {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container .emergency-vector {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.map-container .emergency-pulse {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border: 2px solid #ff0000;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Show animation when step 2 is active */
.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .flight-path,
.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .drone-vector,
.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .emergency-vector,
.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .emergency-pulse {
    opacity: 1 !important;
}

.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .drone-vector {
    animation: droneFlightHowItWorks 4s ease-in-out infinite;
}

.how-it-works-section .selection-card[data-step="2"].active ~ .map-panel .emergency-pulse {
    animation: emergencyPulseHowItWorks 2s ease-in-out infinite;
}

@keyframes droneFlight {
    0% {
        left: 15%;
        opacity: 1;
    }
    50% {
        left: 50%;
        opacity: 1;
    }
    60% {
        left: 80%;
        opacity: 0;
    }
    100% {
        left: 15%;
        opacity: 0;
    }
}

@keyframes emergencyPulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .interactive-demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-panel {
        height: 400px;
    }
    
    /* Navigation adjustments */
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .demo-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .demo-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .learn-more-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* How It Works Section */
    .how-it-works-section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .selection-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    /* Step Content Mobile */
    .step-content {
        padding: 20px !important;
        margin: 0 10px;
    }
    
    .step-content h3 {
        font-size: 1.5rem !important;
        text-align: center;
    }
    
    .step-description {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    /* Video Selection Mobile */
    .video-selection-section {
        padding: 40px 20px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .selection-cards {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .selection-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Footer Mobile */
    .footer-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .bottom-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    /* Video UI Overlays Mobile */
    .law-enforcement-ui,
    .search-rescue-ui,
    .wildfire-ui {
        font-size: 0.7rem;
    }
    
    .le-top-bar {
        padding: 3px 6px;
    }
    
    .le-logo img {
        width: 16px;
        height: 16px;
    }
    
    .skyshield-center span {
        font-size: 6px;
    }
    
    .le-call-info .call-number {
        font-size: 6px;
    }
    
    .le-call-info .call-type {
        font-size: 5px;
    }
    
    .service-call-box {
        padding: 4px 6px;
        right: 8px;
        top: 35px;
    }
    
    .altitude-bar {
        right: 8px;
        top: 80px;
        width: 25px;
    }
    
    .altitude-item {
        font-size: 5px;
        padding: 1px 0;
    }
    
    .altitude-value {
        font-size: 6px;
        padding: 2px 4px;
    }
    
    .zoom-box {
        right: 8px;
        top: 200px;
        width: 25px;
    }
    
    .zoom-item {
        font-size: 5px;
        padding: 1px 0;
    }
    
    /* In-Transit Monitoring Mobile */
    .step-image {
        height: 200px !important;
        /* Add edge fading effect */
        mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 100%);
    }
    
    .step-image video {
        height: 200px !important;
    }
    
    /* Step Navigation Mobile */
    .step-item {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }
    
    .step-number {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 1rem !important;
    }
    
    .step-title {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .selection-card {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 0.9rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .map-panel {
        height: 350px;
    }
    
    .service-popup {
        min-width: 200px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .selection-panel {
        gap: 15px;
    }
    
    .selection-card {
        padding: 12px;
        gap: 10px;
    }
    
    .card-number {
        font-size: 1rem;
        min-width: 25px;
    }
    
    .map-panel {
        height: 300px;
    }
    
    .service-popup {
        min-width: 180px;
        padding: 12px;
    }
    
    .map-description {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    /* Hero Section Extra Small */
    .hero-title {
        font-size: 2rem !important;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .learn-more-button {
        padding: 10px 20px;
        font-size: 0.8rem;
        width: 90%;
        max-width: 280px;
    }
    
    /* Navigation Extra Small */
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .demo-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    /* Content Extra Small */
    .how-it-works-section {
        padding: 30px 15px;
    }
    
    .step-content {
        padding: 15px !important;
        margin: 0 5px;
    }
    
    .step-content h3 {
        font-size: 1.3rem !important;
    }
    
    .step-description {
        font-size: 0.85rem !important;
    }
    
    /* Video Container Extra Small */
    .video-container {
        height: 200px;
    }
    
    .selection-cards {
        padding: 15px;
    }
    
    .selection-card {
        padding: 10px;
    }
    
    .card-content h3 {
        font-size: 0.9rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
}

/* Bottom Selection Bar */
.selection-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 25, 255, 0.3);
    backdrop-filter: blur(20px);
}

.selection-card {
    flex: 1;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 25, 255, 0.1) 0%, transparent 50%, rgba(0, 25, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.selection-card:hover {
    background: rgba(0, 25, 255, 0.1);
}

.selection-card:hover::before {
    opacity: 1;
}

.selection-card.active {
    background: rgba(0, 25, 255, 0.2);
    border-bottom: 3px solid #0019FF;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.selection-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #0019FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #0019FF;
    line-height: 1.3;
    margin-bottom: 0;
}

.active-indicator {
    position: relative;
    width: 20px;
    height: 20px;
}

/* Bottom Status Bar */
.status-bar {
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    display: flex;
    gap: 30px;
    z-index: 4;
    justify-content: center;
    padding: 0 40px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666666;
    transition: all 0.3s ease;
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.status-item.active .status-dot {
    background: #0019FF;
    box-shadow: 0 0 10px rgba(0, 25, 255, 0.5);
}

.status-item.active .status-text {
    color: #0019FF;
}

.status-item:hover .status-dot {
    background: #0019FF;
}

.status-item:hover .status-text {
    color: #0019FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .light-beam {
        width: 150px;
    }







    .footer {
        padding: 40px 20px 30px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .demo-request {
        font-size: 1.5rem;
    }

    .video-container {
        height: 70vh;
    }

    .selection-cards {
        flex-direction: row;
        padding: 20px 10px;
    }

    .selection-card {
        height: 100px;
    }

    .selection-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .card-description {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .status-bar {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .light-beam {
        width: 100px;
    }

    .intro-text {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .intro-logo .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .intro-logo .logo-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }



    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .demo-request {
        font-size: 1.3rem;
    }

    .footer-logo .logo-text {
        font-size: 2rem;
    }

    .video-container {
        height: 60vh;
    }

    .selection-cards {
        padding: 15px 5px;
    }

    .selection-card {
        height: 80px;
    }

    .selection-card h3 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .card-description {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .status-bar {
        gap: 15px;
    }

    .status-text {
        font-size: 9px;
    }
} 

/* Active Navigation Link */
.nav-link.active {
    color: #0019FF;
}

/* About Skyshield Section */
.about-skyshield-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.skyshield-hero {
    text-align: center;
    margin-bottom: 60px;
}

.skyshield-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

.skyshield-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-block {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-block p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.skyshield-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 25, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 25, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.stat-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
}

.accordion-section {
    max-width: 600px;
    margin: 0 auto 60px;
}

.accordion-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-arrow {
    transition: transform 0.3s ease;
    color: #0019FF;
}

.accordion-arrow.active {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-content.active {
    max-height: 100px;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
}

.skyshield-cta {
    text-align: center;
    background: linear-gradient(135deg, #0019FF, #0019FF);
    border-radius: 12px;
    padding: 50px 40px;
    margin-top: 40px;
}

.skyshield-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
}

.cta-button {
    background: #ffffff;
    color: #0019FF;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .skyshield-title {
        font-size: 2.5rem;
    }
    
    .skyshield-subtitle {
        font-size: 1.1rem;
    }
    
    .skyshield-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .skyshield-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-skyshield-section {
        padding: 60px 20px;
    }
    
    .skyshield-title {
        font-size: 2rem;
    }
    
    .mission-block p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 1rem;
    }
}

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

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #0019FF;
    margin: 30px 0 15px;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0019FF;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0019FF;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SkyShield Section */
.skyshield-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

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

.feature-card {
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 25, 255, 0.6);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Use Cases Section */
.usecases-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.usecase-card {
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.usecase-card:hover {
    border-color: rgba(0, 25, 255, 0.6);
    transform: translateY(-5px);
}

.usecase-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 15px;
}

.usecase-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.usecase-card ul {
    list-style: none;
    padding: 0;
}

.usecase-card li {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.usecase-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0019FF;
}

/* Pilot Program Section */
.pilot-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.pilot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pilot-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.pilot-info p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

.application-form {
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.application-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 30px;
}

.application-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-form input,
.application-form select,
.application-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #0019FF;
    box-shadow: 0 0 10px rgba(0, 25, 255, 0.3);
}

.application-form button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    background: #0019FF;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.application-form button:hover {
    background: #0019FF;
    transform: translateY(-1px);
}

/* Careers Section */
.careers-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-message h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.careers-message > p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.message-box {
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.message-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 15px;
}

.message-box p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 80px;
}

.contact-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #0019FF;
    font-weight: 500;
}

.company-info {
    margin-top: 40px;
}

.company-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.company-info > p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 25, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(0, 25, 255, 0.4);
    transform: translateY(-2px);
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0019FF;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
} 

/* Agency Portal Section */
.agency-portal-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-container {
    max-width: 1200px;
    width: 100%;
}

.portal-header {
    text-align: center;
    margin-bottom: 60px;
}

.portal-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

.portal-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.security-badge i {
    font-size: 12px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.login-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon {
    font-size: 3rem;
    color: #0019FF;
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.login-header p {
    font-size: 1rem;
    color: #cccccc;
}

.security-level {
    margin-top: 15px;
}

.security-level-badge {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #666666;
    font-size: 14px;
    z-index: 2;
}

.input-container input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.input-container input:focus {
    border-color: #0019FF;
    box-shadow: 0 0 10px rgba(0, 25, 255, 0.3);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #0019FF;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: #cccccc;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #0019FF;
    border-color: #0019FF;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
}

.forgot-password {
    font-size: 12px;
    color: #0019FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0019FF;
}

.login-button {
    background: linear-gradient(135deg, #0019FF, #0019FF);
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 25, 255, 0.3);
}

.login-button.success {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.login-button.error {
    background: linear-gradient(135deg, #ff4444, #cc3333);
}

.demo-credentials {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 25, 255, 0.1);
    border: 1px solid rgba(0, 25, 255, 0.3);
    border-radius: 6px;
}

.demo-credentials h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #0019FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credential-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.credential-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #0019FF;
    font-weight: 600;
    background: rgba(0, 25, 255, 0.1);
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0, 25, 255, 0.3);
}

.portal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 25, 255, 0.5);
    transform: translateY(-2px);
}

.info-card i {
    font-size: 2rem;
    color: #0019FF;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.info-card p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

/* Responsive Design for Agency Portal */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portal-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .agency-portal-section {
        padding: 100px 20px 60px;
    }
    
    .portal-title {
        font-size: 2.5rem;
    }
    
    .login-card {
        padding: 30px;
    }
    
    .login-header h2 {
        font-size: 1.5rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .portal-title {
        font-size: 2rem;
    }
    
    .login-card {
        padding: 20px;
    }
    
    .credential-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
} 

/* Footer Section */
.footer {
    background: #f8f8f8;
    position: relative;
    padding: 60px 40px 40px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 25, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 25, 255, 0.1) 0%, transparent 50%);
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #0019FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #0019FF, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.contact-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.footer-heading {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0019FF, transparent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #666666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #0019FF;
}

.footer-links a:hover {
    color: #0019FF;
    padding-left: 15px;
}

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

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #000000;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-input:focus {
    border-color: #0019FF;
    box-shadow: 0 0 10px rgba(0, 25, 255, 0.3);
}

.input-labels {
    display: flex;
    align-items: center;
    gap: 20px;
}

.email-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-button {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    color: #000000;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background: #0019FF;
    border-color: #0019FF;
    transform: translateY(-1px);
}

/* Bottom Footer */
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-request {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #999999;
    letter-spacing: 1px;
}

.bottom-right {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.footer-logo .logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.trademark {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

/* SKYSHIELD Slide-up Overlay */
.skyshield-overlay {
    position: fixed;
    bottom: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    transform: scale(0.95);
    opacity: 0;
}

.skyshield-overlay.active {
    bottom: 0;
    transform: scale(1);
    opacity: 1;
}

.skyshield-overlay-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.skyshield-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    flex: 1;
}

.system-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.skyshield-overlay-header h2 {
    font-size: 42px;
    font-weight: 300;
    color: white;
    text-transform: none;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header-right {
    flex: 1;
    max-width: 400px;
    margin-left: 60px;
}

.header-right p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.demo-request-btn {
    background: white;
    color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 12px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-request-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.close-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.close-overlay:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.skyshield-overlay-body {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* How It Works Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.work-step-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0019FF, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.work-step-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 25, 255, 0.3);
    transform: translateY(-4px);
}

.work-step-box:hover::before {
    transform: scaleX(1);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.step-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.step-details {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Dashboard Panel */
.dashboard-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    height: fit-content;
}

.panel-header {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flight-entries {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flight-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drone-icon {
    font-size: 16px;
    color: #0019FF;
}

.flight-info {
    flex: 1;
}

.drone-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.flight-data {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

@media (max-width: 1200px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .skyshield-overlay-content {
        padding: 40px 20px;
    }
    
    .skyshield-overlay-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-right {
        margin-left: 0;
        max-width: none;
    }
    
    .skyshield-overlay-header h2 {
        font-size: 36px;
    }
    
    .skyshield-overlay-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-step-box {
        padding: 20px 12px;
    }
    
    .step-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .skyshield-overlay-header h2 {
        font-size: 28px;
    }
} 

/* Drone Launch Animation Styles */
.drone-launch-box {
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #ffffff;
    opacity: 0.3;
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 20px;
    width: calc(100% - 40px);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #0066ff 0px,
        #0066ff 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%);
    z-index: 2;
}

.drone-vector {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    z-index: 3;
    animation: droneFlight 4s ease-in-out infinite;
}

.emergency-vector {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    z-index: 3;
}

.emergency-pulse {
    position: absolute;
    top: 70%;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    border: 2px solid #ff0000;
    border-radius: 50%;
    z-index: 1;
}

@keyframes droneFlight {
    0% {
        left: 20px;
        opacity: 1;
    }
    80% {
        left: calc(100% - 44px);
        opacity: 1;
    }
    100% {
        left: calc(100% - 44px);
        opacity: 0;
    }
}

@keyframes emergencyPulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-50%) scale(2);
        opacity: 0;
    }
}

/* Adjust the work step box for the drone launch animation */
.drone-launch-box .step-content {
    position: relative;
    z-index: 4;
}

.drone-launch-box .step-title {
    color: #0066ff;
    font-weight: 600;
}

.drone-launch-box .step-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* New Interactive Map Styles */
.map-background-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a202c;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Grid Lines */
.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.2;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
}

/* Alert Icon (Top Right) */
.alert-icon {
    position: absolute;
    top: 20px;
    right: 60px;
    width: 32px;
    height: 32px;
    background: #e53e3e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: 10;
}

.alert-icon[data-step*="1"],
.alert-icon[data-step*="2"],
.alert-icon[data-step*="3"],
.alert-icon[data-step*="4"],
.alert-icon[data-step*="5"] {
    opacity: 1;
    transform: scale(1);
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: white;
}

/* Red Line from Alert to Incident Location */
.alert-line {
    position: absolute;
    top: 48px;
    right: 68px;
    width: 80px;
    height: 2px;
    background: #e53e3e;
    transform: rotate(-45deg);
    transform-origin: left center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 5;
}

.alert-line[data-step*="1"],
.alert-line[data-step*="2"],
.alert-line[data-step*="3"],
.alert-line[data-step*="4"],
.alert-line[data-step*="5"] {
    opacity: 1;
}

/* Drone Icons (Center-Left) */
.drone-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: 8;
}

.drone-icon[data-step*="2"],
.drone-icon[data-step*="3"],
.drone-icon[data-step*="4"],
.drone-icon[data-step*="5"] {
    opacity: 1;
    transform: scale(1);
}

.drone-1 {
    top: 60px;
    left: 120px;
    transition-delay: 0.2s;
}

.drone-2 {
    top: 100px;
    left: 100px;
    transition-delay: 0.4s;
}

/* Officer Icons (Far Left) */
.officer-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: 8;
}

.officer-icon[data-step*="4"],
.officer-icon[data-step*="5"] {
    opacity: 1;
    transform: scale(1);
}

.officer-1 {
    top: 50px;
    left: 20px;
    transition-delay: 0.8s;
}

.officer-2 {
    top: 120px;
    left: 20px;
    transition-delay: 1s;
}

.status-dots {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #48bb78;
}

.status-dot.red {
    background: #e53e3e;
}

.officer-svg {
    width: 24px;
    height: 24px;
    color: #2d3748;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.connection-lines[data-step*="3"],
.connection-lines[data-step*="4"],
.connection-lines[data-step*="5"] {
    opacity: 1;
}

.connection-line {
    stroke-dasharray: 10;
    stroke-dashoffset: 100;
    animation: drawLine 1s ease forwards;
}

.connection-line:nth-child(1) {
    animation-delay: 0.5s;
}

.connection-line:nth-child(2) {
    animation-delay: 0.7s;
}

.connection-line:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Call for Service Panel (Right Side) */
.call-service-panel {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    min-width: 200px;
    z-index: 10;
}

.call-service-panel[data-step*="1"],
.call-service-panel[data-step*="2"],
.call-service-panel[data-step*="3"],
.call-service-panel[data-step*="4"],
.call-service-panel[data-step*="5"] {
    opacity: 1;
    transform: translateY(0);
}

.panel-title {
    font-size: 12px;
    font-weight: bold;
    color: black;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.panel-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.label {
    color: #666;
}

.value {
    color: black;
    font-weight: 500;
}

.value.priority {
    color: #e53e3e;
    font-weight: bold;
}

/* Deploy SkyShield Section Red Scanning Effect */
.bg-gradient-to-r.from-blue-600.to-blue-800 {
    position: relative;
    overflow: hidden;
}

.bg-gradient-to-r.from-blue-600.to-blue-800::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    animation: emergencyScan 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.bg-gradient-to-r.from-blue-600.to-blue-800 .max-w-4xl {
    position: relative;
    z-index: 2;
}


