/* spyied-styles.css - Professional Intelligence Agency Theme */

/* Base Variables */
:root {
    --primary-dark: #0a1929;
    --secondary-dark: #132f4c;
    --accent-blue: #0066cc;
    --accent-teal: #00b4d8;
    --accent-cyan: #48cae4;
    --light-gray: #e6f7ff;
    --medium-gray: #8a9ba8;
    --dark-gray: #294766;
    --success-green: #00c853;
    --warning-amber: #ffab00;
    --danger-red: #d32f2f;
    --border-color: rgba(0, 102, 204, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--light-gray);
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.code-font {
    font-family: 'Source Code Pro', monospace;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-symbol {
    font-family: 'Source Code Pro', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-right: 12px;
    text-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--light-gray);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.7rem;
    color: var(--medium-gray);
    letter-spacing: 1.5px;
}

.nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--accent-cyan) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: var(--accent-teal);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Globe Visualization */
.globe-container {
    position: relative;
    height: 400px;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.globe-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-blue) 0%, transparent 70%);
    border: 2px solid rgba(0, 180, 216, 0.3);
    box-shadow: 
        inset 0 0 50px rgba(0, 102, 204, 0.5),
        0 0 80px rgba(0, 180, 216, 0.3);
    animation: globeRotation 20s linear infinite;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    transform-origin: left center;
    animation: linePulse 4s ease-in-out infinite;
}

.line-1 { width: 150px; transform: translate(-50%, -50%) rotate(0deg); animation-delay: 0s; }
.line-2 { width: 200px; transform: translate(-50%, -50%) rotate(120deg); animation-delay: 1s; }
.line-3 { width: 180px; transform: translate(-50%, -50%) rotate(240deg); animation-delay: 2s; }

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-teal);
    animation: pointPulse 3s ease-in-out infinite;
}

.point-1 { top: 30%; left: 40%; animation-delay: 0s; }
.point-2 { top: 60%; left: 20%; animation-delay: 0.5s; }
.point-3 { top: 40%; left: 70%; animation-delay: 1s; }
.point-4 { top: 70%; left: 60%; animation-delay: 1.5s; }

/* Sections Common */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.section-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.services-section, .capabilities-section, .operations-section, .insights-section, .contact-section {
    padding: 100px 0;
    position: relative;
}

.services-section {
    background-color: var(--secondary-dark);
}

.capabilities-section {
    background-color: var(--primary-dark);
}

.operations-section {
    background-color: var(--secondary-dark);
}

.insights-section {
    background-color: var(--primary-dark);
}

.contact-section {
    background-color: var(--secondary-dark);
}

/* Service Cards */
.service-card {
    background: rgba(19, 47, 76, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-teal);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: var(--light-gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

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

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

.security-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-teal);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

/* Capabilities */
.capability-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: rgba(19, 47, 76, 0.4);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-teal);
}

.capability-icon {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-right: 20px;
    flex-shrink: 0;
}

.capability-content {
    flex: 1;
}

.capability-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.capability-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(0, 102, 204, 0.2);
    color: var(--accent-cyan);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Source Code Pro', monospace;
    border: 1px solid rgba(0, 102, 204, 0.3);
}

/* Security Notice */
.security-notice {
    background: rgba(10, 25, 41, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
}

.security-icon {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-right: 20px;
    flex-shrink: 0;
}

.security-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.security-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.clearance-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clearance-badge {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 1px;
    border: 1px solid;
}

.level-1 {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success-green);
    border-color: rgba(0, 200, 83, 0.3);
}

.level-3 {
    background: rgba(255, 171, 0, 0.1);
    color: var(--warning-amber);
    border-color: rgba(255, 171, 0, 0.3);
}

.level-5 {
    background: rgba(211, 47, 47, 0.1);
    color: var(--danger-red);
    border-color: rgba(211, 47, 47, 0.3);
}

/* Operations Map */
.operations-map {
    position: relative;
    height: 500px;
    background: rgba(10, 25, 41, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    opacity: 0.8;
}

.operation-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-teal);
    animation: operationPulse 2s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

.operation-point::after {
    content: attr(data-region);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.operation-point:hover::after {
    opacity: 1;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    transform: translate(-50%, -50%);
    animation: connectionPulse 4s ease-in-out infinite;
}

.operations-stats {
    background: rgba(10, 25, 41, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.stats-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--light-gray);
    text-align: center;
}

.operations-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.operations-stats .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    font-family: 'Source Code Pro', monospace;
}

.operations-stats .stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-statement {
    padding-top: 20px;
}

.mission-statement h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.mission-statement p {
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.6;
}

/* Insight Cards */
.insight-card {
    background: rgba(19, 47, 76, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-teal);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.insight-category {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
    letter-spacing: 1px;
}

.insight-date {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--warning-amber);
    background: rgba(255, 171, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 171, 0, 0.3);
}

.insight-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-gray);
    flex: 1;
}

.insight-excerpt {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.clearance-required {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
}

.btn-access {
    background: rgba(0, 180, 216, 0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-access:hover {
    background: rgba(0, 180, 216, 0.2);
    border-color: var(--accent-teal);
}

/* Contact Section */
.contact-methods {
    background: rgba(10, 25, 41, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.contact-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-gray);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--accent-teal);
    margin-right: 20px;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.method-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.encryption-notice {
    display: flex;
    align-items: center;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
}

.encryption-notice i {
    margin-right: 8px;
}

.security-warning {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 171, 0, 0.1);
    border: 1px solid rgba(255, 171, 0, 0.3);
    border-radius: 6px;
    padding: 15px;
}

.security-warning i {
    color: var(--warning-amber);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-warning p {
    color: var(--warning-amber);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.access-request {
    background: rgba(10, 25, 41, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.access-request h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.access-request p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.clearance-form .form-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.clearance-form .form-control {
    background: rgba(19, 47, 76, 0.6);
    border: 1px solid var(--border-color);
    color: var(--light-gray);
    padding: 12px 15px;
    border-radius: 6px;
}

.clearance-form .form-control:focus {
    background: rgba(19, 47, 76, 0.8);
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
    color: var(--light-gray);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

.verification-result {
    padding: 15px;
    border-radius: 6px;
    font-family: 'Source Code Pro', monospace;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.security-notice p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.disclaimer {
    display: flex;
    align-items: center;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.disclaimer i {
    margin-right: 10px;
    color: var(--warning-amber);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.classification {
    display: flex;
    align-items: center;
}

.classification-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.classification-level {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: var(--warning-amber);
    margin-left: 10px;
    background: rgba(255, 171, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 171, 0, 0.3);
}

.footer-info {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

/* Animations */
@keyframes globeRotation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes pointPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

@keyframes operationPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 180, 216, 0); }
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .globe-container {
        height: 300px;
    }
    
    .globe {
        width: 250px;
        height: 250px;
    }
    
    .capability-item {
        flex-direction: column;
    }
    
    .capability-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-section, .capabilities-section, .operations-section, .insights-section, .contact-section {
        padding: 70px 0;
    }
}

/* spyied-styles.css - Professional but Humorous Intelligence Agency Theme */

/* Updated Base Variables */
:root {
    --primary-dark: #0a1929;
    --secondary-dark: #132f4c;
    --accent-blue: #0066cc;
    --accent-teal: #00b4d8;
    --accent-cyan: #48cae4;
    --light-gray: #e6f7ff;
    --medium-gray: #8a9ba8;
    --dark-gray: #294766;
    --success-green: #00c853;
    --warning-amber: #ffab00;
    --danger-red: #d32f2f;
    --border-color: rgba(0, 102, 204, 0.2);
    --humor-purple: #9c27b0;
    --humor-pink: #e91e63;
}

/* Enhanced Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-symbol {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-teal);
    border-radius: 50%;
    box-shadow: 
        0 0 0 3px rgba(0, 180, 216, 0.3),
        0 0 15px rgba(0, 180, 216, 0.5);
    animation: eyeBlink 5s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.logo-ring::before,
.logo-ring::after {
    content: '';
    position: absolute;
    background: var(--accent-teal);
}

.logo-ring::before {
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
}

.logo-ring::after {
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    border-radius: 2px;
}

/* Logo animation for footer */
.logo-symbol-small {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.logo-eye-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-teal);
    border-radius: 50%;
}

.logo-ring-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
}

/* New Animations */
@keyframes eyeBlink {
    0%, 96%, 100% { height: 20px; }
    98% { height: 2px; }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

/* Humorous Elements */
.stat-note {
    font-size: 0.7rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 5px;
}

/* Case Study Cards */
.case-study-card {
    background: rgba(19, 47, 76, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.case-study-code {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--accent-teal);
    letter-spacing: 1px;
}

.case-study-status {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid;
}

.case-study-status[data-status="RESOLVED"] {
    color: var(--success-green);
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.3);
}

.case-study-status[data-status="ONGOING"] {
    color: var(--warning-amber);
    background: rgba(255, 171, 0, 0.1);
    border-color: rgba(255, 171, 0, 0.3);
}

.case-study-status[data-status="COMPROMISED"] {
    color: var(--danger-red);
    background: rgba(211, 47, 47, 0.1);
    border-color: rgba(211, 47, 47, 0.3);
}

.case-study-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-gray);
}

.case-study-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.duration, .success-rate {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.success-rate {
    color: var(--accent-teal);
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(255, 171, 0, 0.05);
    border: 1px solid rgba(255, 171, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.disclaimer-text {
    color: var(--warning-amber);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.disclaimer-text i {
    margin-right: 8px;
    color: var(--warning-amber);
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.8rem;
    font-style: italic;
}

/* Enhanced Security Badges with Humor */
.security-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.1), rgba(156, 39, 176, 0.1));
    color: var(--accent-teal);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    text-transform: uppercase;
}

.clearance-badge.level-1 {
    background: linear-gradient(90deg, rgba(0, 200, 83, 0.1), rgba(0, 180, 216, 0.1));
    color: var(--success-green);
    border-color: rgba(0, 200, 83, 0.3);
}

.clearance-badge.level-3 {
    background: linear-gradient(90deg, rgba(255, 171, 0, 0.1), rgba(233, 30, 99, 0.1));
    color: var(--warning-amber);
    border-color: rgba(255, 171, 0, 0.3);
}

.clearance-badge.level-5 {
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.1), rgba(156, 39, 176, 0.1));
    color: var(--humor-purple);
    border-color: rgba(211, 47, 47, 0.3);
}

/* Enhanced Footer Links with Icons */
.footer-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Enhanced Hero Stats */
.hero-stats .stat-item {
    position: relative;
    padding: 15px;
    background: rgba(19, 47, 76, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.hero-stats .stat-item:hover {
    border-color: var(--accent-teal);
    background: rgba(19, 47, 76, 0.5);
}

/* Service Card Enhancements */
.service-card .service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-card .service-icon i {
    font-size: 1.8rem;
    color: var(--accent-teal);
}

/* Capability Item Enhancements */
.capability-item {
    position: relative;
    overflow: hidden;
}

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

.capability-item:hover::before {
    left: 100%;
}

/* Operations Map Enhancements */
.operation-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.operation-point:hover {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 30px var(--accent-teal);
}

.operation-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.2);
    animation: ripple 2s linear infinite;
}

/* Contact Method Enhancements */
.contact-method {
    position: relative;
    padding-left: 70px;
    min-height: 70px;
}

.method-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-teal);
}

/* Form Enhancements */
.clearance-form .form-check-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.clearance-form .form-check-input:checked {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
}

/* Footer Classification Enhancement */
.classification-level {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    color: var(--humor-purple);
    margin-left: 10px;
    background: rgba(156, 39, 176, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(156, 39, 176, 0.3);
    animation: classificationPulse 2s ease-in-out infinite;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-symbol {
        width: 40px;
        height: 40px;
    }
    
    .logo-eye {
        width: 16px;
        height: 16px;
    }
    
    .logo-ring {
        width: 32px;
        height: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-method {
        padding-left: 60px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .disclaimer-text {
        font-size: 0.75rem;
    }
}