/* ========================================= */
/* CSS TABLE OF CONTENTS - Use Ctrl+F to search */
/* ========================================= */
/* 
 * RESET - Reset styles (*, body, img)
 * CSS VARIABLES - CSS custom properties (:root)
 * ATAK BACKGROUND - Background animations and effects
 * NAVIGATION - Main navigation and hamburger menu
 * HERO SECTION - Hero section styles
 * SOLUTIONS DROPDOWN - Solutions dropdown menu navigation
 * COMMON SECTIONS - Shared section styles (capabilities, solutions, process, about, contact)
 * CODE VIEW - Tactical code view section
 * SYSTEM DIAGNOSTICS - System diagnostics section
 * CASE STUDY - Case study and testimonials
 * CLIENTS - Client logo grid
 * TECH STACK - Technology stack section
 * DATA FEED - Interactive data feed section
 * ABOUT PAGE - About page specific styles (hero, mission/vision, team, etc.)
 * ATAK DEVELOPMENT - ATAK development page styles
 * TAK SERVER - TAK server page styles  
 * VIDEO PROCESSING - Video processing page styles
 * FOOTER - Footer styles
 * MOBILE RESPONSIVE - Mobile responsive styles (@media queries)
 * UTILITIES - Scroll, selection, scrollbar styles
 */

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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* GPU acceleration for transforms */
.capability-card,
.solution-card,
.stack-card,
.diag-card,
.btn,
.back-to-top {
    will-change: transform;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0A0E14;
    color: #E8EDF2;
    overflow-x: hidden;
}

/* ATAK-Style Background */
.atak-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: #020508;
}

.dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.scan-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00D9FF;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.scan-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #00D9FF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.scan-dot.ping {
    opacity: 1;
    animation: radarPing 2s ease-out forwards;
}

.scan-dot.ping::before {
    animation: radarPingRing 2s ease-out forwards;
}

@keyframes radarPing {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    15% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes radarPingRing {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    15% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Scale Bar */
.scale-bar {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 217, 255, 0.4);
    padding: 0.5rem 1rem;
    backdrop-filter: blur(5px);
}

.scale-segments {
    display: flex;
    margin-bottom: 0.3rem;
}

.scale-segment {
    width: 50px;
    height: 10px;
    border: 1px solid rgba(0, 217, 255, 0.6);
    border-right: none;
}

.scale-segment:last-child {
    border-right: 1px solid rgba(0, 217, 255, 0.6);
}

.scale-segment:nth-child(odd) {
    background: rgba(0, 217, 255, 0.2);
}

.scale-label {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #00D9FF;
    text-align: center;
    letter-spacing: 0.5px;
}

.tactical-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.5), rgba(0, 217, 255, 0.2), transparent);
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
}

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

    100% {
        transform: translateY(100vh);
    }
}

/* HUD Corner Brackets */
.hud-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 217, 255, 0.25);
    pointer-events: none;
    z-index: 1;
}

.hud-corner-tl {
    top: 140px;
    left: 3%;
    border-right: none;
    border-bottom: none;
}

.hud-corner-tr {
    top: 140px;
    right: 3%;
    border-left: none;
    border-bottom: none;
}

.hud-corner-bl {
    bottom: 30px;
    left: 3%;
    border-right: none;
    border-top: none;
}

.hud-corner-br {
    bottom: 30px;
    right: 3%;
    border-left: none;
    border-top: none;
}

/* Tactical Data Points */
.data-point {
    position: absolute;
    padding: 0.4rem 0.9rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #00D9FF;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.data-point-1 {
    top: 180px;
    left: 5%;
}

.data-point-2 {
    top: 180px;
    right: 5%;
}

.data-point-3 {
    bottom: 70px;
    left: 5%;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.75rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 20, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    z-index: 1002;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1003;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 400px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #E8EDF2;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #00D9FF;
}

.contact {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 5, 8, 0.95) 0%, rgba(10, 14, 20, 0.9) 100%);
}

.contact-btn {
    padding: 15px;
    background-color: #00A8CC;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.nav-links .contact-btn:hover {
    color: rgb(27, 27, 27);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00D9FF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    padding: 9rem 5% 4rem;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    flex: 0 0 45%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container .carousel {
    width: 100%;
    height: 500px;
}

.hero-image-container .carousel-inner {
    height: 100%;
}

.hero-image-container .carousel-item {
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #E8EDF2;
}

/* Gradient text - consolidated for reuse */
.gradient-text,
.hero h1 .gradient-text,
.about-content h2 .gradient-text,
.about-hero h1 .gradient-text {
    background: linear-gradient(135deg, #00D9FF 0%, #81D4FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: #8B93A6;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-pill {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #E8EDF2;
    transition: all 0.3s;
}

/* .service-pill:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00D9FF;
    transform: translateY(-2px);
} */

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.btn-primary {
    background: #00D9FF;
    color: #0A0E14;
}

.btn-primary:hover {
    background: #00A8CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E8EDF2;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #00D9FF;
    background: rgba(0, 217, 255, 0.05);
}

/* ========================================= */
/* COMMON SECTION STYLES */
/* ========================================= */
/* Base section padding - use CSS variable for consistency */
:root {
    --section-padding: 8rem 5% 6rem;
    --section-padding-mobile: 5rem 5% 4rem;
}

.capabilities,
.process {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
}

.solutions,
.about {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: rgba(2, 5, 8, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #8B93A6;
    max-width: 700px;
    justify-self: center;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* Capability card base styles moved to common card section */

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00D9FF, #81D4FA);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

/* Unified hover effect for all cards - REMOVED */

.capability-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00D9FF;
}

.capability-icon svg {
    width: 32px;
    height: 32px;
}

.capability-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.capability-card p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========================================= */
/* SOLUTIONS SECTION - NEW/FIXED */
/* ========================================= */
/* Solutions styles moved to common section above */

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

/* Solution card base styles moved to common card section */

.solution-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 217, 255, 0.3);
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
    line-height: 1;
}

.solution-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
}

.solution-content p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.solution-content a {
    text-decoration: none;
}

.solution-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

.solution-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #00D9FF;
    opacity: 0.3;
    transition: opacity 0.3s;
}

/* Solution arrow hover effect - REMOVED */


/* ========================================= */
/* PROCESS SECTION - NEW/FIXED */
/* ========================================= */
/* Process padding already defined in common section styles */

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 29px;
    width: 2px;
    height: 82%;
    background: rgba(0, 217, 255, 0.2);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
}

.step-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #00D9FF;
    color: #0A0E14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    z-index: 10;
    border: 3px solid #020508;
    /* Match background for floating effect */
    box-shadow: 0 0 0 5px rgba(0, 217, 255, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.step-deliverables li {
    font-size: 0.9rem;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 700;
}


/* ABOUT SECTION - padding already defined in common section styles */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

/* Gradient text already defined above */

.about-content p {
    font-size: 1.05rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #8B93A6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-image-box {
    width: 100%;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-image-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

/* CONTACT SECTION - padding already defined in common section styles */

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

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
}

/* Common card base styles - Consolidated */
.capability-card,
.solution-card,
.stack-card,
.diag-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.capability-card {
    padding: 2.5rem;
    overflow: hidden;
}

.solution-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.solutions-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);

}

.solutions-grid a{
    text-decoration: none;
}
.stack-card {
    padding: 2rem;
}

.diag-card {
    border-radius: 8px;
    padding: 2rem;
    overflow: hidden;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 6px;
    color: #E8EDF2;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D9FF;
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: #00D9FF;
    color: #0A0E14;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #00A8CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.85rem;
    color: #8B93A6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.05rem;
    color: #E8EDF2;
}

.contact-details a {
    color: #00D9FF;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #81D4FA;
}

/* FOOTER */
footer {
    padding: 3rem 5% 2rem;
    background: rgba(2, 5, 8, 0.98);
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00D9FF;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #E8EDF2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #8B93A6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00D9FF;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8B93A6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a:hover {
    color: #81D4FA;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00D9FF;
    transform: translateY(-2px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1450px) {
    .scale-bar,
    .data-point {
        display: none;
    }

    .hero {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .logo img {
        height: 45px;
        max-width: 200px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: rgba(10, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        border-left: 1px solid rgba(0, 217, 255, 0.2);
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }

    .hud-corner-bl,
    .hud-corner-tl,
    .hud-corner-tr,
    .hud-corner-br {
        display: none;
    }

    .hud-corner {
        width: 60px;
        height: 60px;
    }

    .hud-corner-tl,
    .hud-corner-tr {
        top: 110px;
    }

    .hud-corner-bl,
    .hud-corner-br {
        bottom: 90px;
    }

    .hero {
        padding: 6rem 5% 3rem;
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-image-container {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .hero-image-container .carousel {
        height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-services {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .capabilities,
    .solutions,
    .process,
    .about,
    .contact,
    .code-view,
    .case-study,
    .tech-stack,
    .data-feed {
        padding: var(--section-padding-mobile);
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .capability-card {
        padding: 2rem;
    }

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

    .process-timeline {
        padding-left: 0;
        position: relative;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding-left: 0;
        margin-bottom: 3rem;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        position: relative;
        left: 0;
        margin-bottom: 1rem;
        align-content: center;
        display: inline-block;
        text-align: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        height: 300px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* SELECTION */
::selection {
    background: rgba(0, 217, 255, 0.3);
    color: #E8EDF2;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0E14;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.5);
}

/* ========================================= */
/* TACTICAL CODE VIEW SECTION - NEW */
/* ========================================= */
.code-view {
    padding: var(--section-padding);
    background: rgba(2, 5, 8, 0.9);
    border-top-style: solid;
    position: relative;
    border-color: rgba(0, 217, 255, 0.25);
    z-index: 1;
}

.code-view-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.code-view-content {
    padding-right: 1rem;
}

.code-view-content .section-badge {
    margin-bottom: 1.5rem;
}

.code-view-content .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.code-view-content .section-description {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.code-ownership-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ownership-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s;
}

.ownership-feature svg {
    color: #00D9FF;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ownership-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.ownership-feature p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin: 0;
}

.code-container {
    background: #020508;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
    max-width: 100%;
    width: 100%;
}

.code-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #00D9FF;
    position: relative;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.code-header .red {
    background: #FF5252;
}

.code-header .yellow {
    background: #FFD700;
}

.code-header .green {
    background: #4CAF50;
}

.code-header .title {
    flex-grow: 1;
    text-align: center;
    color: #E8EDF2;
    font-weight: 700;
}

.code-header .status {
    background: #00D9FF;
    color: #0A0E14;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.code-block {
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #E8EDF2;
    max-width: 100%;
    background: #02021cb8;
}

/* Syntax Highlighting */
.code-block .keyword {
    color: #FFD700;
    font-weight: 700;
}

/* yellow */
.code-block .type {
    color: #81D4FA;
}

/* light blue */
.code-block .class-name {
    color: #4CAF50;
    font-weight: 700;
}

/* green */
.code-block .method {
    color: #00D9FF;
}

/* cyan */
.code-block .comment {
    color: #8B93A6;
    font-style: italic;
}

/* gray */
.code-block .annotation {
    color: #FF5252;
}

/* red */
.code-block .string {
    color: #E57373;
}

/* salmon/pink */
.code-block .literal {
    color: #FFCC80;
}

/* light orange */

/* Mobile adjustment for code block */
@media (max-width: 992px) {
    .code-view-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .code-view-content {
        padding-right: 0;
        text-align: center;
    }

    .code-view-content .section-title,
    .code-view-content .section-description {
        text-align: center;
    }

    .code-view-content .section-description {
        margin-bottom: 2rem;
    }

    .code-ownership-features {
        gap: 1rem;
    }
}

/* Mobile padding already handled in main media query above */

    .code-view-wrapper {
        gap: 2rem;
    }

    .code-view-content .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .code-view-content .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .ownership-feature {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .ownership-feature svg {
        width: 20px;
        height: 20px;
    }

    .ownership-feature h3 {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }

    .ownership-feature p {
        font-size: 0.85rem;
    }

    .code-container {
        margin: 0;
        width: 100%;
    }

    .code-header {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .code-header .title {
        font-size: 0.7rem;
        word-break: break-all;
    }

    .code-header .status {
        display: none;
    }

    .code-block {
        padding: 1.25rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }

/* ========================================= */
/* SYSTEM DIAGNOSTICS SECTION */
/* ========================================= */
.system-diag {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 5, 8, 0.95) 0%, rgba(10, 14, 20, 0.9) 100%);
}

/* ========================================= */
/* SYSTEM DIAGNOSTICS SECTION */
/* ========================================= */
.diag-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* diag-card styles already defined above in common card section */

.diag-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.diag-status-ok::before {
    background: #4CAF50;
    /* Green */
}

.diag-status-warn::before {
    background: #FFD700;
    /* Yellow */
}

/* Diag card hover moved to unified section above */

.diag-icon {
    color: #00D9FF;
    margin-bottom: 1rem;
}

.diag-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.diag-card p {
    font-size: 0.9rem;
    color: #8B93A6;
    margin-bottom: 1rem;
}

.diag-card .status-ok {
    color: #4CAF50;
    font-weight: 700;
}

.diag-card .status-warn {
    color: #FFD700;
    font-weight: 700;
}

.diag-metric {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #00D9FF;
    padding: 0.5rem 0;
    border-top: 1px dashed rgba(0, 217, 255, 0.2);
}

.diag-note {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #8B93A6;
}

.diag-note #diag-time {
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
    .diag-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* CASE STUDY SECTION */
/* ========================================= */
.case-study {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: rgba(10, 14, 20, 0.95);
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 4rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem;
}

.testimonial-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.5;
    color: #E8EDF2;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #00D9FF;
}

.testimonial-author .author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 0.25rem;
}

.testimonial-author .author-title {
    font-size: 0.9rem;
    color: #8B93A6;
    margin-bottom: 2rem;
}

.case-study-image-box {
    background: rgba(0, 217, 255, 0.05);
    border: 2px dashed rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: #00D9FF;
}

.case-study-image-box svg {
    margin-bottom: 1rem;
}

.case-study-image-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.case-study-image-box p {
    font-size: 0.9rem;
    color: #8B93A6;
}

/* Specific styling for the small button */
.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .case-study-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
        margin: 1.5rem 0;
    }
}

/* ========================================= */
/* CLIENTS SECTION */
/* ========================================= */
.clients {
    padding: 6rem 5% 6rem;
    position: relative;
    z-index: 1;
    background: rgba(2, 5, 8, 0.85);
}

.client-logo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.logo-placeholder {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B93A6;
    border: 1px solid rgba(0, 217, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    transition: all 0.3s;
    text-align: center;
    padding: 0.5rem;
}

/* Logo placeholder hover effect - REMOVED */

@media (max-width: 768px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================= */
/* TECH STACK SECTION - NEW */
/* ========================================= */
.tech-stack {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: rgba(2, 5, 8, 0.9);
}

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

.stack-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.15);
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00D9FF;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.stack-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
}

.stack-card p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stack-tags span {
    padding: 0.4rem 0.9rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* ========================================= */
/* INTERACTIVE DATA FEED SECTION - NEW */
/* ========================================= */
.data-feed {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    background: #020508;
    overflow: hidden;
}

.data-feed-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.data-feed-content {
    padding-right: 1rem;
}

.data-feed-container {
    align-self: start;
    position: sticky;
    top: 2rem;
}

.data-feed-content .section-badge {
    margin-bottom: 1.5rem;
}

.data-feed-content .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.data-feed-content .section-description {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.data-feed-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feed-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s;
}

.feed-feature svg {
    color: #00D9FF;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feed-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.feed-feature p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin: 0;
}

.data-feed-container {
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
    max-width: 100%;
    width: 100%;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #E8EDF2;
}

.feed-header .feed-indicator {
    color: #4CAF50;
    /* Green */
}

.feed-block {
    height: 300px;
    /* Fixed height for scrolling effect */
    overflow-y: scroll;
    padding: 1rem 1.5rem;
    background: #0A0E14;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #E8EDF2;
    white-space: pre-wrap;
    position: relative;
}

/* Scrollbar styling for data feed (reusing existing scrollbar logic, but customizing for dark background) */
.feed-block::-webkit-scrollbar {
    width: 6px;
}

.feed-block::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.5);
}

.feed-block::-webkit-scrollbar-track {
    background: #0A0E14;
}

/* Syntax/Data Highlighting for CoT */
.feed-block .cot-type-p {
    color: #00D9FF;
    font-weight: 700;
}

/* Position (P) - Cyan */
.feed-block .cot-type-t {
    color: #FFD700;
    font-weight: 700;
}

/* Target (T) - Yellow */
.feed-block .cot-uid {
    color: #4CAF50;
}

/* UID - Green */
.feed-block .cot-coord {
    color: #81D4FA;
}

/* Coordinates - Light Blue */
.feed-block .cot-detail {
    color: #FF5252;
    font-style: italic;
}

/* Details/Warnings - Red */

/* Mobile adjustment for data feed */
@media (max-width: 992px) {
    .data-feed-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .data-feed-content {
        padding-right: 0;
        text-align: center;
    }

    .data-feed-content .section-title,
    .data-feed-content .section-description {
        text-align: center;
    }

    .data-feed-content .section-description {
        margin-bottom: 2rem;
    }

    .data-feed-features {
        gap: 1rem;
    }

    .data-feed-container {
        position: static;
    }
}

/* Mobile padding already handled in main media query above */

    .data-feed-wrapper {
        gap: 2rem;
    }

    .data-feed-content .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .data-feed-content .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feed-feature {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .feed-feature svg {
        width: 20px;
        height: 20px;
    }

    .feed-feature h3 {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }

    .feed-feature p {
        font-size: 0.85rem;
    }

    .data-feed-container {
        margin: 0;
        width: 100%;
    }

    .feed-header {
        padding: 0.625rem 0.875rem;
        font-size: 0.7rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .feed-block {
        padding: 1rem;
        font-size: 0.75rem;
        height: 250px;
    }



.capabilities, .mid-cta, .system-diag, .process, .contact {
    padding: 90px 6%;
    background: radial-gradient(circle at top, rgb(12 99 70 / 8%), transparent 55%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mid-cta-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.mid-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.mid-cta p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-trust {
    margin-bottom: 35px;
    padding: 18px 22px;

    background: rgba(0, 0, 0, 0.35);
    border-left: 3px solid rgba(0, 255, 170, 0.5);
    border-radius: 6px;
}

.contact-trust ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.contact-trust li {
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
    padding-left: 18px;
}

.contact-trust li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00ffaa;
}


.mid-cta {
    position: relative;
    overflow: hidden;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    color: #00D9FF;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00D9FF;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

/* Scroll Animation */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}
/* ========================================= */
/* SOLUTIONS DROPDOWN NAVIGATION */
/* ========================================= */

/* Dropdown container */
.nav-item-dropdown {
    position: relative;
}

/* Dropdown toggle styling */
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu - Desktop */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    list-style: none;
    transform: translateX(-50%);
    min-width: 280px;
    background: rgba(10, 14, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

/* Show dropdown on hover (desktop) */
.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown menu items */
.dropdown-item {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #E8EDF2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-left-color: #00D9FF;
    color: #00D9FF;
    padding-left: 1.75rem;
}

.dropdown-item-title {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: #8B93A6;
    display: block;
}

/* Dropdown divider */
.dropdown-divider {
    height: 1px;
    background: rgba(0, 217, 255, 0.15);
    margin: 0.5rem 1rem;
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        min-width: 100%;
        margin-top: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 217, 255, 0.05);
        padding: 0;
        box-shadow: none;
    }

    /* Show dropdown when active (mobile click) */
    .nav-item-dropdown.active .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-item {
        padding: 0.75rem 1rem 0.75rem 1.5rem;
        font-size: 0.85rem;
        border-left: 2px solid transparent;
    }

    .dropdown-item:hover {
        padding-left: 1.75rem;
    }

    .dropdown-item-desc {
        font-size: 0.7rem;
    }
}

/* Prevent dropdown hover on mobile */
@media (max-width: 768px) {
    .nav-item-dropdown:hover .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
}

/* Additional navigation adjustments */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links > li > a:not(.nav-dropdown-toggle) {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }
}/* ========================================= */
/* ABOUT PAGE SPECIFIC STYLES */
/* ========================================= */

/* About Hero Section */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 9rem 5% 4rem;
    overflow: hidden;
    background: #020508;
    z-index: 1;
}

.about-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #E8EDF2;
}


/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D9FF, #81D4FA);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
}

.mv-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: #8B93A6;
    line-height: 1.8;
}

/* Our Story Section */
.our-story {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.8);
    position: relative;
    z-index: 1;
}

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

.story-content .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00D9FF 0%, rgba(0, 217, 255, 0.3) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -42px;
    top: 0;
    width: 18px;
    height: 18px;
    background: #00D9FF;
    border: 4px solid #020508;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.2);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #8B93A6;
    line-height: 1.8;
}

/* Core Values Section */
.core-values {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 217, 255, 0.2);
    font-family: 'Courier New', monospace;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
}

/* Meet Our Team Section */
.meet-team {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.8);
    position: relative;
    z-index: 1;
}

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

.team-category {
    margin-bottom: 5rem;
}

.team-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00D9FF, transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); 
    gap: 2rem;
    justify-content: center; 
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    max-width: 320px; 
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px; 
    overflow: hidden;
    background: rgba(0, 217, 255, 0.05);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center top; 
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links-team {
    display: flex;
    gap: 1rem;
}

.social-link-team {
    width: 40px;
    height: 40px;
    background: rgba(10, 14, 20, 0.9);
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    text-decoration: none;
    font-size: 1rem;
}

.team-info {
    padding: 1.75rem;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9rem;
    color: #00D9FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.85rem; 
    color: #8B93A6;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    overflow-y: auto;
    padding-right: 8px;
     max-height: 200px
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-tags span {
    padding: 0.35rem 0.8rem; /* Slightly reduced */
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem; /* Slightly reduced */
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* Hide placeholder text when image is loaded */
.team-image[src*=".jpg"]:not([src*="placeholder"]),
.team-image[src*=".png"]:not([src*="placeholder"]),
.team-image[src*=".webp"]:not([src*="placeholder"]) {
    ~ .team-image-wrapper::before,
    ~ .team-image-wrapper::after {
        display: none;
    }
}

/* Team Expertise Section */
.team-expertise {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.8);
    position: relative;
    z-index: 1;
}

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

.expertise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00D9FF;
}

.expertise-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

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

.expertise-card ul li {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 700;
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

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

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

.differentiator {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

/* Differentiator hover effect - REMOVED */

.diff-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.differentiator h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.differentiator p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
}

/* Statistics Section */
.about-stats-section {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.8);
    position: relative;
    z-index: 1;
}

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

.stat-card-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D9FF, #81D4FA);
}

/* Stat card hover effect - REMOVED */

.stat-icon {
    color: #00D9FF;
    margin-bottom: 1rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-large {
    font-size: 0.9rem;
    color: #E8EDF2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-card-large p {
    font-size: 0.85rem;
    color: #8B93A6;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-cta .cta-buttons {
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .meet-team {
        padding: 5rem 5% 4rem;
    }

    .team-category {
        margin-bottom: 3rem;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team-card {
        max-width: 100%;
    }

    .team-image-wrapper {
        height: 320px;
    }

    .team-info {
        padding: 1.5rem;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.85rem;
    }

    .team-bio {
        font-size: 0.85rem;
    }

    .social-link-team {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .about-hero {
        padding: 6rem 5% 3rem;
        min-height: 60vh;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .mission-vision,
    .our-story,
    .core-values,
    .team-expertise,
    .why-choose,
    .about-stats-section,
    .about-cta {
        padding: var(--section-padding-mobile, 5rem 5% 4rem);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 2.5rem;
    }

    .timeline-marker {
        position: relative;
        left: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .values-grid,
    .expertise-grid,
    .differentiators-grid,
    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .value-card,
    .expertise-card,
    .differentiator,
    .stat-card-large {
        padding: 2rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-cta .btn {
        width: 100%;
    }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item,
.value-card,
.expertise-card,
.differentiator,
.stat-card-large {
    animation: fadeInUp 0.6s ease-out;
}/* ========================================= */
/* ATAK DEVELOPMENT PAGE - ENHANCED STYLES */
/* ========================================= */

/* Hero Section */
.atak-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 5% 6rem;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(2, 5, 8, 0.98) 50%);
}

.atak-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.atak-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.8rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.atak-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E8EDF2;
}

.atak-hero .hero-description {
    font-size: 1.15rem;
    color: #8B93A6;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* ATAK Ecosystem */
.atak-ecosystem {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

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

.ecosystem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
    text-align: center;
}

.ecosystem-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #00D9FF;
}

.ecosystem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.ecosystem-card p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ecosystem-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ecosystem-features span {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* Plugin Categories */
.plugin-categories {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

.categories-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.category-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(0, 217, 255, 0.03);
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
}

.category-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00D9FF;
    flex-shrink: 0;
}

.category-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.category-title p {
    font-size: 1rem;
    color: #8B93A6;
}

.category-content {
    padding: 2.5rem;
}

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

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

/* Technical Capabilities */
.tech-capabilities {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

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

.tech-card-atak {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.tech-icon-atak {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.tech-card-atak h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tech-item-detail {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.tech-item-detail:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.tech-item-detail strong {
    display: block;
    font-size: 1rem;
    color: #00D9FF;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.tech-item-detail p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin: 0;
}

/* Development Process Enhanced */
.dev-process-enhanced {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.process-flow {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}

.process-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: #00D9FF;
    color: #0A0E14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin: 1.5rem auto 1.5rem;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
    text-align: center;
}

.process-card p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.process-deliverables li {
    font-size: 0.85rem;
    color: #E8EDF2;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.process-deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 700;
}

.process-arrow-right {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #00D9FF;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Use Cases Showcase */
.use-cases-showcase {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

.use-cases-grid-enhanced {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
}

.use-case-featured {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.use-case-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00D9FF, #81D4FA);
}

.case-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.case-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00D9FF;
    margin-bottom: 2rem;
}

.use-case-featured h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
}

.use-case-featured p {
    font-size: 1.1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.metric {
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.metric span {
    font-size: 0.8rem;
    color: #8B93A6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-tech-stack span {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

.use-case-card-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.use-case-mini {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.mini-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00D9FF;
}

.use-case-mini h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
}

.use-case-mini p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mini-tags span {
    padding: 0.35rem 0.8rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.7rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .process-flow {
        flex-wrap: wrap;
    }

    .process-arrow-right {
        display: none;
    }

    .process-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 992px) {
    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid-atak {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .use-cases-grid-enhanced {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .atak-hero {
        padding: 7rem 5% 4rem;
        min-height: 60vh;
    }

    .atak-hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .atak-ecosystem,
    .plugin-categories,
    .tech-capabilities,
    .dev-process-enhanced,
    .use-cases-showcase {
        padding: var(--section-padding-mobile, 5rem 5% 4rem);
    }

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

    .category-features-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-card {
        min-width: 100%;
    }

    .tech-grid-atak {
        grid-template-columns: 1fr;
    }

    .use-case-featured {
        padding: 2rem;
    }

    .use-case-featured h3 {
        font-size: 1.5rem;
    }
}/* ========================================= */
/* TAK SERVER PAGE - ENHANCED STYLES */
/* ========================================= */

/* Hero Section */
.tak-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 5% 6rem;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.04) 0%, rgba(2, 5, 8, 0.98) 50%);
}

.tak-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tak-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.8rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.tak-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E8EDF2;
}

.tak-hero .hero-description {
    font-size: 1.15rem;
    color: #8B93A6;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-capability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E8EDF2;
    transition: all 0.3s;
}

.hero-capability i {
    color: #00D9FF;
    font-size: 1.2rem;
}

/* Hero capability hover effect - REMOVED */

/* Server Architecture */
.server-architecture {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

.architecture-diagram {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.arch-layer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.arch-layer-highlight {
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid #00D9FF;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.layer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.layer-components {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.component {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    min-width: 120px;
    transition: all 0.3s;
}

.component i {
    font-size: 2rem;
    color: #00D9FF;
}

.component span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #E8EDF2;
    text-align: center;
}

.component-large {
    min-width: 250px;
    padding: 2rem;
}

.component-large i {
    font-size: 3rem;
}

.component-large span {
    font-size: 1.1rem;
}

.component-details {
    font-size: 0.75rem;
    color: #8B93A6;
    text-align: center;
    margin-top: 0.5rem;
}

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    gap: 0.5rem;
}

.arch-connector i {
    font-size: 2rem;
    color: #00D9FF;
    opacity: 0.5;
}

.arch-connector span {
    font-size: 0.8rem;
    color: #8B93A6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Core Services */
.core-services, .geospatial-capabilities {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.services-grid, .capabilities-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-major, .capability-card-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.service-card-major h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.service-card-major > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features, .capability-features  {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-feature, .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.03);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.service-feature i, .feature-item i {
    font-size: 1.2rem;
    color: #00D9FF;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-feature strong {
    display: block;
    font-size: 0.95rem;
    color: #E8EDF2;
    margin-bottom: 0.25rem;
}

.service-feature span {
    font-size: 0.85rem;
    color: #8B93A6;
    line-height: 1.5;
}

/* Deployment Options */
.deployment-options {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

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

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.option-card-featured {
    border: 2px solid #00D9FF;
    background: rgba(0, 217, 255, 0.08);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.4rem 1rem;
    background: #00D9FF;
    color: #0A0E14;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-header i {
    font-size: 3rem;
    color: #00D9FF;
}

.option-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
}

.option-description {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.option-pros {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.pro-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #E8EDF2;
}

.pro-item i {
    color: #00D9FF;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.option-ideal {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
}

.option-ideal strong {
    color: #00D9FF;
}

/* Security Features */
.security-features {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

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

.security-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.security-card p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.security-list li {
    font-size: 0.9rem;
    color: #E8EDF2;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.security-list li:last-child {
    border-bottom: none;
}

.security-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 700;
}

/* Performance Metrics */
.performance-metrics {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

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

.metric-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #00D9FF;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: #E8EDF2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.metric-large p {
    font-size: 0.9rem;
    color: #8B93A6;
    line-height: 1.6;
}

/* Implementation Timeline */
.implementation-timeline {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 100px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 49px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 217, 255, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -100px;
    top: 0;
}

.marker-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00D9FF, #81D4FA);
    color: #0A0E14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 5px rgba(0, 217, 255, 0.2);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.timeline-week {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-deliverables span {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .timeline-container {
        padding-left: 50px;
    }

    .timeline-container::before {
        left: 24px;
    }

    .timeline-marker {
        left: -50px;
    }

    .marker-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tak-hero {
        padding: 7rem 5% 4rem;
        min-height: 60vh;
    }

    .tak-hero h1 {
        font-size: 2rem;
    }

    .hero-capabilities {
        grid-template-columns: 1fr;
    }

    .server-architecture,
    .core-services,
    .deployment-options,
    .security-features,
    .performance-metrics,
    .implementation-timeline {
        padding: var(--section-padding-mobile, 5rem 5% 4rem);
    }

    .layer-components {
        flex-direction: column;
    }

    .component {
        min-width: 100%;
    }

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

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

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

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

    .timeline-container {
        padding-left: 0;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-marker {
        position: relative;
        left: 0;
        margin-bottom: 1rem;
    }

    .marker-number {
        margin: 0 auto;
    }
}/* ========================================= */
/* VIDEO PROCESSING PAGE - ENHANCED STYLES */
/* ========================================= */

/* Hero Section */
.video-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 5% 6rem;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(2, 5, 8, 0.98) 50%);
}

.video-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.8rem;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00D9FF;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00D9FF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.video-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #E8EDF2;
}

.video-hero .hero-description {
    font-size: 1.15rem;
    color: #8B93A6;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E8EDF2;
    transition: all 0.3s;
}

.hero-feature i {
    color: #00D9FF;
    font-size: 1.2rem;
}

/* Hero feature hover effect - REMOVED */

/* Pipeline Visualization */
.pipeline-visual {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

.pipeline-flow {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pipeline-stage {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.stage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #00D9FF;
}

.pipeline-stage h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.75rem;
}

.pipeline-stage p {
    font-size: 0.95rem;
    color: #8B93A6;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stage-tech {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #00D9FF;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 4px;
    display: inline-block;
}

.pipeline-arrow {
    font-size: 2rem;
    color: #00D9FF;
    opacity: 0.5;
    flex-shrink: 0;
}

/* Capabilities Showcase */
.capabilities-showcase {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.capabilities-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.capability-card-enhanced {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.capability-card-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.capability-card-enhanced > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    font-size: 0.95rem;
    color: #E8EDF2;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #00D9FF;
    font-size: 0.85rem;
}

/* Technical Specifications */
.tech-specs {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

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

.spec-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.spec-icon {
    font-size: 2.5rem;
    color: #00D9FF;
    margin-bottom: 1rem;
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: #E8EDF2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.spec-card p {
    font-size: 0.85rem;
    color: #8B93A6;
    line-height: 1.6;
}

/* Use Cases Enhanced */
.use-cases-enhanced {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.9) 0%, rgba(2, 5, 8, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.use-case-card-large {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: all 0.3s;
}

.use-case-image {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #00D9FF;
    border-right: 1px solid rgba(0, 217, 255, 0.2);
}

.use-case-content {
    padding: 2.5rem;
}

.use-case-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.use-case-content p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.use-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.8rem;
    color: #8B93A6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Technology Stack */
.tech-stack-video {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.9);
    position: relative;
    z-index: 1;
}

.tech-categories {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.tech-category h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-category h3 i {
    color: #00D9FF;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    padding: 0.6rem 1.2rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pipeline-arrow {
        display: none;
    }

    .pipeline-flow {
        flex-direction: column;
    }

    .capabilities-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .use-case-card-large {
        grid-template-columns: 1fr;
    }

    .use-case-image {
        min-height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    }

    .use-case-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-hero {
        padding: 7rem 5% 4rem;
        min-height: 60vh;
    }

    .video-hero h1 {
        font-size: 2rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-visual,
    .capabilities-showcase,
    .tech-specs,
    .use-cases-enhanced,
    .tech-stack-video {
        padding: var(--section-padding-mobile, 5rem 5% 4rem);
    }

    .pipeline-stage {
        min-width: 100%;
    }

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

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .use-case-content {
        padding: 1.5rem;
    }

    .use-case-content h3 {
        font-size: 1.4rem;
    }
}

/* ========================================= */
/* GEOSPATIAL, SENSOR-IOT, COT-MESSAGES STYLES */
/* ========================================= */

.capability-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

/* GIS Technologies */
.gis-technologies {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

/* Use Cases Geospatial */
.use-cases-geospatial {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

/* Integration Process */
.integration-process {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

/* Sensor Categories */
.sensor-categories {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

/* IoT Protocols */
.iot-protocols {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.protocol-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

/* Protocol card hover effect - REMOVED */

.protocol-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.protocol-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.protocol-card > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.protocol-features li {
    font-size: 0.9rem;
    color: #E8EDF2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.protocol-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: bold;
}

.protocol-features li:last-child {
    border-bottom: none;
}

/* Integration Architecture */
.integration-architecture {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

/* Data Processing */
.data-processing {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

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

.processing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

/* Processing card hover effect - REMOVED */

.processing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.processing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.processing-card > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.processing-card ul li {
    font-size: 0.9rem;
    color: #E8EDF2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.processing-card ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: bold;
}

.processing-card ul li:last-child {
    border-bottom: none;
}

/* Use Cases IoT */
.use-cases-iot {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

/* COT Overview */
.cot-overview {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

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

.explanation-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

/* Explanation card hover effect - REMOVED */

.explanation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.explanation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.explanation-card p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
}

/* COT Structure */
.cot-structure {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.structure-diagram {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.structure-components {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.component-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 12px;
}

.component-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00D9FF;
    flex-shrink: 0;
}

.component-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 0.5rem;
}

.component-content p {
    font-size: 0.95rem;
    color: #8B93A6;
    line-height: 1.6;
}

/* Custom COT Types */
.custom-cot-types {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

.cot-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cot-type-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

/* COT type card hover effect - REMOVED */

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.cot-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.cot-type-card > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.type-features span {
    padding: 0.4rem 0.9rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

.type-example {
    padding: 1rem;
    background: rgba(0, 217, 255, 0.05);
    border-left: 3px solid #00D9FF;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #8B93A6;
}

.type-example strong {
    color: #00D9FF;
}

/* COT Development */
.cot-development {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.dev-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dev-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

/* Dev step hover effect - REMOVED */

.step-number {
    position: absolute;
    top: -15px;
    left: -40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #00D9FF;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin: 1rem 0 1.5rem;
}

.dev-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.dev-step > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.dev-step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-step ul li {
    font-size: 0.9rem;
    color: #E8EDF2;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding-left: 1.5rem;
    position: relative;
}

.dev-step ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: bold;
}

.dev-step ul li:last-child {
    border-bottom: none;
}

/* COT Standards */
.cot-standards {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: rgba(2, 5, 8, 0.85);
    position: relative;
    z-index: 1;
}

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

.standard-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

/* Standard card hover effect - REMOVED */

.standard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 217, 255, 0.05));
    border: 2px solid #00D9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 1.5rem;
}

.standard-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.standard-card p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
}

/* COT Examples */
.cot-examples {
    padding: var(--section-padding, 8rem 5% 6rem);
    background: linear-gradient(180deg, rgba(10, 14, 20, 0.95) 0%, rgba(2, 5, 8, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.examples-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.example-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

/* Example card hover effect - REMOVED */

.example-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 217, 255, 0.15);
    border: 1px solid #00D9FF;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.example-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8EDF2;
    margin-bottom: 1rem;
}

.example-card > p {
    font-size: 1rem;
    color: #8B93A6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.example-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.example-tech span {
    padding: 0.4rem 0.9rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #00D9FF;
    font-family: 'Courier New', monospace;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .structure-diagram {
        grid-template-columns: 1fr;
    }
    
    
    
    .protocols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cot-types-grid,
    .examples-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .protocols-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .geospatial-capabilities,
    .gis-technologies,
    .use-cases-geospatial,
    .integration-process,
    .sensor-categories,
    .iot-protocols,
    .integration-architecture,
    .data-processing,
    .use-cases-iot,
    .cot-overview,
    .cot-structure,
    .custom-cot-types,
    .cot-development,
    .cot-standards,
    .cot-examples {
        padding: var(--section-padding-mobile, 5rem 5% 4rem);
    }
    
    .dev-process-grid {
        grid-template-columns: 1fr;
    }
    
    .processing-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
}