/* 
   FB SAVUNMA - Main Stylesheet
   Theme: Magnificent Light, Blue/Navy/Turquoise
*/

:root {
    /* Color Palette */
    --primary-navy: #0a192f;
    /* Deep Navy - Authority */
    --accent-turquoise: #00bcd4;
    /* Vibrant Turquoise - Energy */
    --accent-blue: #0056b3;
    /* Royal Blue - Trust */
    --text-dark: #1d1d1f;
    /* Almost Black for text */
    --text-light: #6e6e73;
    /* Grey for secondary text */
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    /* Very light grey blue tint */
    --border-color: #e1e4e8;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --top-bar-height: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   Top Info Bar
   ========================================= */
/* =========================================
   Top Info Bar - Premium
   ========================================= */
.top-info-bar {
    background: linear-gradient(90deg, var(--primary-navy) 0%, #112240 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.top-info-bar .container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 30px;
    padding-right: 25px;
    /* Optically align with rounded button below */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.info-item:hover {
    color: var(--accent-turquoise);
}

.info-item i {
    color: var(--accent-turquoise);
    font-size: 0.9rem;
}

/* =========================================
   Header - Magical Glassmorphism
   ========================================= */
.main-header {
    background-color: rgba(255, 255, 255, 0.92);
    /* Translucent */
    backdrop-filter: blur(12px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(12px);
    height: var(--header-height);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.logo-container:hover img {
    transform: scale(1.05);
}

/* Navigation - Magical Hover */
.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
    align-items: center;
}

.main-nav a {
    display: inline-block;
    /* Ensure padding affects layout correctly */
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
}

/* Animated Underline */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-turquoise), var(--accent-blue));
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.main-nav a:hover {
    color: var(--accent-blue);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Special Button Style for Last Item (Contact) */
.main-nav li:last-child a {
    background: var(--primary-navy);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.main-nav li:last-child a::after {
    display: none;
    /* No underline for button */
}

.main-nav li:last-child a:hover {
    background: var(--accent-turquoise);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

/* Mobile Close Button (Hidden on Desktop) */
.mobile-close {
    display: none !important;
}

/* Desktop Navigation - Ensure horizontal layout */
@media screen and (min-width: 993px) {
    .main-nav {
        position: static !important;
        right: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: transparent !important;
        background-color: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        display: block !important;
    }

    .main-nav ul {
        display: flex !important;
        flex-direction: row !important;
        gap: 40px !important;
    }

    .main-nav li {
        border: none !important;
        width: auto !important;
    }

    .main-nav a {
        color: var(--primary-navy) !important;
        padding: 10px 0 !important;
    }

    .main-nav li:last-child a {
        background: var(--primary-navy) !important;
        color: white !important;
        padding: 10px 24px !important;
    }

    .mobile-close {
        display: none !important;
    }

    .mobile-toggle {
        display: none !important;
    }
}

/* =========================================
   Magnificent Wide Slider - ULTRA PREMIUM
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: var(--primary-navy);
}

/* Floating Particles Overlay */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(0, 188, 212, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 60% 20%, rgba(0, 188, 212, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 10% 80%, rgba(0, 188, 212, 0.2) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
    background-size: 100% 100%;
    animation: floatParticles 20s linear infinite;
    z-index: 5;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Animated Glow Line at Bottom */
.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-turquoise) 25%,
            #00bcd4 50%,
            var(--accent-turquoise) 75%,
            transparent 100%);
    background-size: 200% 100%;
    animation: glowLine 3s linear infinite;
    z-index: 10;
}

@keyframes glowLine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.8s;
    z-index: 1;
}

/* Ken Burns Zoom Effect */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.08) translateX(-1%);
    }
}

/* Premium Gradient Overlay - Enhanced for Readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(10, 25, 47, 0.97) 0%, rgba(10, 25, 47, 0.85) 35%, rgba(10, 25, 47, 0.5) 60%, transparent 80%),
        linear-gradient(to bottom, rgba(10, 25, 47, 0.4) 0%, transparent 30%, transparent 70%, rgba(10, 25, 47, 0.95) 100%);
    z-index: 1;
}

/* Animated Accent Glow Behind Text */
.slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.text-wrapper {
    max-width: 700px;
    color: white;
    padding: 40px 50px;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Staggered Text Reveal Animation */
.slide.active .text-wrapper h1 {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.slide.active .text-wrapper p {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(40px);
}

.slide.active .text-wrapper .btn {
    animation: slideUp 0.8s ease-out 0.6s forwards, btnGlow 2s ease-in-out 1.4s infinite;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4);
    }

    50% {
        box-shadow: 0 5px 40px rgba(0, 188, 212, 0.8), 0 0 60px rgba(0, 188, 212, 0.3);
    }
}

/* Hero Badge / Label */
.text-wrapper::before {
    content: 'FB SAVUNMA';
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 188, 212, 0.2);
    border: 1px solid rgba(0, 188, 212, 0.4);
    border-radius: 30px;
    color: var(--accent-turquoise);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.text-wrapper h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

/* Turquoise Accent on Keywords */
.text-wrapper h1 span {
    color: var(--accent-turquoise);
    text-shadow:
        0 0 20px rgba(0, 188, 212, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.text-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    max-width: 580px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Premium Button */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--accent-blue) 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 188, 212, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn:hover::before {
    width: 100%;
}

/* Premium Glassmorphism Controls */
.slider-controls div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.slider-controls div:hover {
    background: var(--accent-turquoise);
    border-color: var(--accent-turquoise);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}

.prev-slide {
    left: 50px;
}

.next-slide {
    right: 50px;
}

/* Premium Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--accent-turquoise);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

/* =========================================
   Corporate Features Section
   ========================================= */
/* =========================================
   Unique Accordion Features (Redesign)
   ========================================= */
.corporate-features {
    padding: 90px 0;
    position: relative;
    z-index: 20;
    margin-top: -60px;
    margin-bottom: -60px;
    /* Kept the balanced overlap */
}

.fluid-container {
    width: 95%;
    /* Almost full width */
    max-width: 1600px;
    margin: 0 auto;
}

.accordion-features {
    display: flex;
    height: 400px;
    /* Restored magnificent height */
    gap: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: white;
}

.feature-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: white;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Restored bottom text alignment */
    padding: 40px;
    /* Restored spacious padding */
    border-top: 5px solid transparent;
}

.feature-panel:last-child {
    border-right: none;
}

/* Background Effect */
.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

/* Hover State & Active State (Expansion) */
.feature-panel:hover,
.feature-panel.active {
    flex: 3;
    /* Restored expansion ratio */
    border-top-color: var(--accent-turquoise);
}

.feature-panel:hover .panel-bg,
.feature-panel.active .panel-bg {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #001233 100%);
}

/* Content */
.panel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transition: all 0.4s ease;
}

.panel-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.panel-num {
    font-size: 4rem;
    /* Restored giant number */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 0.8;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.4s ease;
}

.panel-header i {
    font-size: 2.5rem;
    /* Restored large icon */
    color: var(--primary-navy);
    transition: all 0.4s ease;
}

.feature-panel h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.2;
    transition: all 0.4s ease;
    white-space: nowrap;
}

/* Description - Hidden by default or subtle */
.panel-desc {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    /* Delay */
    max-width: 500px;
    display: none;
    /* Hide essentially to prevent layout shift initially */
}

/* Active State Styles (Hover & Active) */
.feature-panel:hover .panel-num,
.feature-panel.active .panel-num {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.feature-panel:hover i,
.feature-panel.active i {
    color: var(--accent-turquoise);
    transform: rotateY(180deg);
}

.feature-panel:hover h3,
.feature-panel.active h3 {
    color: white;
    font-size: 2rem;
    /* Grows */
}

.feature-panel:hover .panel-desc,
.feature-panel.active .panel-desc {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    display: block;
}

.panel-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-turquoise);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s ease 0.2s;
}

.feature-panel:hover .panel-link,
.feature-panel.active .panel-link {
    opacity: 1;
    transform: translateX(0);
}

.panel-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .accordion-features {
        flex-direction: column;
        height: auto;
    }

    .feature-panel {
        height: 150px;
        flex: none;
        /* Reset flex */
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-panel:hover {
        height: 300px;
        /* Expand vertically */
        flex: none;
    }

    .panel-desc {
        display: block;
        /* Always render for layout in block mode */
        opacity: 0.5;
    }
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-turquoise);
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .text-wrapper h1 {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 60vh;
    }

    .prev-slide,
    .next-slide {
        display: none;
    }

    /* Use swipe or dots on mobile */
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* Needs JS toggle */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .top-info-bar {
        display: none;
    }
}

/* =========================================
   Defense Solutions Section
   ========================================= */
.defense-solutions {
    padding: 100px 0;
    background-color: #f8fbff;
    /* Very subtle blue-white for corporate feel */
    position: relative;
    overflow: hidden;
}

.defense-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Visual Side */
.defense-visual {
    flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    /* Strong lift */
    height: 500px;
    /* Fixed height for consistency */
}

.defense-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Slight zoom for effect */
    transition: transform 10s ease;
}

.defense-visual:hover .defense-img {
    transform: scale(1.15);
    /* Subtle zoom on hover */
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent);
    z-index: 1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-turquoise);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    font-size: 2rem;
    color: var(--primary-navy);
}

.floating-badge span {
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

/* Content Side */
.defense-content {
    flex: 1;
    padding-right: 20px;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-turquoise);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.defense-content h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 800;
}

.feature-highlight {
    margin-bottom: 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 30px;
}

.feature-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-highlight p {
    color: #666;
    line-height: 1.6;
}

.capability-row {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 196, 204, 0.1);
    /* Light turquoise */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--accent-turquoise);
}

.capability-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.capability-text p {
    font-size: 0.95rem;
    color: #666;
}

/* Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-navy);
    color: white;
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-download:hover {
    background: #000;
    color: var(--accent-turquoise);
    border-color: var(--accent-turquoise);
    padding-left: 50px;
    /* Slight movement */
    padding-right: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .defense-wrapper {
        flex-direction: column;
    }

    .defense-visual {
        width: 100%;
        margin-bottom: 40px;
    }

    .defense-content {
        padding-right: 0;
    }

    .defense-content h2 {
        font-size: 2.5rem;
    }
}

/* =========================================
   Comprehensive Footer (Magnificent)
   ========================================= */
.main-footer {
    background-color: #0a192f;
    color: white;
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-turquoise);
}

/* Brand Column */
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.slogan {
    color: #a8b2d1;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-turquoise);
    transform: translateY(-3px);
}

/* Links Lists */
.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a8b2d1;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-turquoise);
    padding-left: 5px;
}

/* Contact Info */
.contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #a8b2d1;
}

.contact-info i {
    color: var(--accent-turquoise);
    margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #081426;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6e7a99;
    font-size: 0.85rem;
}

.policy-links a {
    color: #6e7a99;
    margin-left: 20px;
}

.policy-links a:hover {
    color: var(--accent-turquoise);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .policy-links a {
        margin: 0 10px;
    }
}

/* =========================================
   Products Section (Global Capabilities)
   ========================================= */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Clean white background */
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sub-heading {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-turquoise);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 20px;
}

.header-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* Responsive Grid */
    gap: 30px;
}

/* Magnificent Card */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.2);
}

/* Image Wrapper */
.product-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--primary-navy);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

/* Content */
.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: var(--accent-turquoise);
}

.product-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Button */
.btn-product {
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-product i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-product:hover {
    color: var(--accent-turquoise);
    gap: 12px;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    /* Center content vertically */
    color: white;
    padding-top: 100px;
    /* Added spacing for header overlap */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    /* Deep Navy Overlay */
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    /* Center text */
    margin: 0 auto;
    /* Center container */
}

.hero-label {
    display: table;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-turquoise);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 10px;
    /* Center label */
    background: rgba(0, 188, 212, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: white;
    /* Ensure text is white */
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    /* Ensure description is readable */
    max-width: 600px;
    margin: 0 auto;
    /* Center paragraph */
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    margin-top: -60px;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--accent-turquoise);
}

.contact-card.highlight {
    background: #0a192f;
    color: white;
}

.contact-card.highlight h3,
.contact-card.highlight p,
.contact-card.highlight a {
    color: white;
}

.contact-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-turquoise);
}

/* Form & Map Section */
.contact-form-section {
    background: #f4f6f9;
    padding-bottom: 80px;
    /* Added padding to separate from footer */
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    /* Changed from height to min-height */
}

.form-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.input-group textarea {
    height: 120px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-turquoise);
    outline: none;
}

.btn-submit {
    background: var(--primary-navy);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent-turquoise);
}

.map-container {
    height: 100%;
    min-height: 400px;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }

    .map-container {
        height: 400px;
    }
}

/* =========================================
   Who We Are Page Styles
   ========================================= */

/* Intro Section */
.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-turquoise);
    padding-left: 20px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.img-wrapper-magnificent {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(10, 25, 47, 0.1);
    /* Architectural shadow */
}

.img-wrapper-magnificent img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper-magnificent:hover img {
    transform: scale(1.05);
}

/* Global Authority Section */
.global-authority {
    padding: 120px 0;
    position: relative;
    background: var(--primary-navy);
    color: white;
    overflow: hidden;
}

.global-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/global_map_bg.png');
    /* Updated to new global map */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Slightly increased opacity for better visibility */
    z-index: 1;
}

.global-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.icon-header {
    font-size: 3rem;
    color: var(--accent-turquoise);
    margin-bottom: 20px;
}

.global-authority h2 {
    color: white;
    /* Explicitly set to white */
    font-size: 2.5rem;
    font-weight: 800;
}

.divider-center {
    width: 80px;
    height: 4px;
    background: var(--accent-turquoise);
    margin: 20px auto 40px;
}

/* ... existing styles ... */
.global-text {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.global-text strong {
    color: var(--accent-turquoise);
    font-weight: 700;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f8fafd;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-navy);
}

.mission-card::before {
    background: var(--accent-turquoise);
}

.vision-card::before {
    background: var(--primary-navy);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 25, 47, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

/* Removed .card-icon-img styles as they are no longer used */

.mission-card .card-icon {
    color: var(--accent-turquoise);
    background: rgba(0, 188, 212, 0.1);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.mv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

@media (max-width: 992px) {

    .intro-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-row {
        justify-content: flex-start;
    }
}

/* =========================================
   Products Page Styles
   ========================================= */

.product-catalog-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.catalog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-turquoise);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.7), transparent);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.catalog-card:hover .card-image img {
    transform: scale(1.1);
}

.catalog-card:hover .card-overlay {
    opacity: 0.3;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.catalog-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.catalog-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent-turquoise);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-discover i {
    transition: transform 0.3s;
}

.btn-discover:hover {
    color: var(--primary-navy);
    gap: 15px;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Product Detail Page Styles
   ========================================= */

/* Overview Section */
.product-overview {
    padding: 100px 0;
    background: white;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin-bottom: 25px;
}

.divider-center {
    height: 3px;
    width: 60px;
    background: var(--accent-turquoise);
    margin: 20px auto;
    border-radius: 2px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: var(--accent-turquoise);
    margin-top: 5px;
}

.img-wrapper-tech {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
}

.img-wrapper-tech img {
    width: 100%;
    display: block;
}

/* Technical Capabilities */
.tech-capabilities {
    padding: 80px 0;
    background: #f4f6f9;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cap-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
    border-bottom: 4px solid transparent;
}

.cap-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-turquoise);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cap-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.cap-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.cap-detail {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Specs Section */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.specs-wrapper h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-navy);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.specs-table th,
.specs-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background: var(--primary-navy);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.specs-table tr:hover {
    background: #f9fbff;
}

.specs-table td {
    color: #555;
    font-weight: 500;
}

@media (max-width: 992px) {

    .overview-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }


    .table-responsive {
        overflow-x: auto;
    }
}

/* =========================================
   Corporate Feature Pages Styles
   ========================================= */

/* Strategy Grid */
.strategy-section,
.cooperation-section,
.workflow-section,
.innovation-section {
    padding: 100px 0;
    background: white;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.strategy-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    text-align: center;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-turquoise);
}

.strat-icon {
    font-size: 2.5rem;
    color: var(--accent-turquoise);
    margin-bottom: 25px;
}

.strategy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.strategy-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Market Analysis / Two Column */
.market-analysis-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.row-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.row-split>div {
    flex: 1;
}

/* Stat List */
.stat-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding: 0;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.stat-desc {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

/* Corporate Tables */
.corporate-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.corporate-table th,
.corporate-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.corporate-table th {
    background: var(--primary-navy);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.dominant {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-turquoise);
}

.status-badge.growing {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.status-badge.strategic {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-badge.established {
    background: rgba(10, 25, 47, 0.1);
    color: var(--primary-navy);
}

.full-width {
    width: 100%;
    min-width: 800px;
    /* Force scroll on small screens */
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-turquoise);
    min-width: 200px;
}

.step-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    margin-bottom: -20px;
}

.process-step h4 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 1.1rem;
    position: relative;
}

.process-connector {
    color: #ccc;
    font-size: 1.5rem;
}

/* Simple Bar Chart */
.simple-bar-chart {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bar-row {
    margin-bottom: 20px;
}

.bar-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

.bar-track {
    width: 100%;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent-turquoise);
    border-radius: 5px;
}

@media (max-width: 992px) {
    .row-split {
        flex-direction: column;
    }

    .process-flow {
        flex-direction: column;
    }


    .process-connector {
        transform: rotate(90deg);
    }
}

/* =========================================
   Services Page Styles
   ========================================= */

.service-section {
    padding: 100px 0;
    overflow: hidden;
    /* Prevent overflow from animations */
}

.service-section.bg-light {
    background-color: #f8f9fa;
    /* Slight contrast for alternating sections */
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 188, 212, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    margin-left: -5px;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    text-align: justify;
    /* Justify for that "full" corporate look */
}

.img-wrapper-service {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.img-wrapper-service img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.service-row:hover .img-wrapper-service img {
    transform: scale(1.03);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent-turquoise);
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 0.9rem;
}

.btn-text:hover {
    color: var(--primary-navy);
    gap: 15px;
    /* Arrow slide animation */
}

@media (max-width: 992px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-text p {
        text-align: left;
        /* Reset justify on mobile for readability */
    }

    .service-num {
        font-size: 3rem;
    }
}

/* =========================================
   Kemiox Footer Credit
   ========================================= */

.kemiox-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    /* Subtle color matching footer text */
    margin-left: 20px;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.kemiox-credit:hover {
    color: var(--accent-turquoise);
    animation: heartbeat 1.2s infinite;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
}

@media (max-width: 576px) {
    .kemiox-credit {
        display: block;
        margin: 10px 0;
    }
}

/* =========================================
   Magnificent Feedback Modal
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.6);
    /* Navy tint */
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-navy);
}

.modal-state {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-state.hidden {
    display: none;
}

.modal-state h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin: 20px 0 10px;
}

.modal-state p {
    color: #666;
    margin-bottom: 30px;
}

/* Icons */
.success-icon,
.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-turquoise);
}

.error-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 188, 212, 0.2);
    border-top: 5px solid var(--accent-turquoise);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Buttons */
.btn-modal {
    background: var(--primary-navy);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modal.error-btn {
    background: #ff4444;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   Mobile Responsiveness (Hallettim Refinements)
   ========================================= */

@media (max-width: 992px) {

    /* Header & Navigation */
    .mobile-toggle {
        display: block;
        /* Show hamburger */
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none !important;
        flex-direction: column;
        padding: 30px 0;
        z-index: 10000 !important;
        border-top: 1px solid #eee;
    }

    .main-nav.active {
        display: flex !important;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
        margin: 0;
        display: block;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
        color: var(--primary-navy) !important;
        font-size: 1.1rem;
    }

    .main-nav li:last-child a {
        display: inline-block;
        margin-top: 20px;
        width: auto;
        padding: 12px 30px;
        color: #ffffff !important;
        /* Force white text for the button */
        background: var(--primary-navy);
        /* Ensure background is set */
    }

    /* Slider Adjustments */
    .text-wrapper h1 {
        font-size: 2.5rem;
        /* Smaller title */
    }

    .hero-slider {
        height: 60vh;
        /* Shorter slider */
    }
}

@media (max-width: 768px) {

    /* Top Bar - Stack or Hide */
    .top-info-bar .container {
        justify-content: center;
        font-size: 0.75rem;
        gap: 15px;
        padding-right: 20px;
    }

    /* Slider Controllers - Fix "Bad Look" */
    .slider-controls div {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.15);
        /* More subtle */
        backdrop-filter: blur(4px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .prev-slide {
        left: 10px;
        /* Closer to edge */
    }

    .next-slide {
        right: 10px;
        /* Closer to edge */
    }

    .text-wrapper {
        padding: 0 20px;
        text-align: center;
    }

    .text-wrapper p {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /* Prevent text overflow */
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* =========================================
   Premium Product Detail Styles (Missile/UAV)
   ========================================= */

.center-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Premium Image Wrapper */
.img-wrapper-premium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-wrapper-premium img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.img-wrapper-premium:hover img {
    transform: scale(1.05);
}

/* Tech Overlay */
.tech-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.85);
    /* Navy transparent */
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(0, 188, 212, 0.3);
    /* Turquoise border */
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.img-wrapper-premium:hover .tech-overlay {
    opacity: 1;
    transform: translateY(0);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-turquoise);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tech Specs Section */
.tech-specs-section {
    padding: 100px 0;
    position: relative;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Premium Tech Card */
.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    /* Techy sharp/round mix */
    border-top: 4px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-turquoise);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: rgba(10, 25, 47, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.tech-card:hover .tech-icon {
    background: var(--primary-navy);
    color: var(--accent-turquoise);
}

.tech-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-navy);
}

.tech-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Spec Table Section */
.specs-table-section {
    padding: 100px 0;
    background: white;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mt-30 {
    margin-top: 30px;
}

.specs-table-section .image-col img {
    max-width: 90%;
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
}

/* =========================================
   ULTRA-PREMIUM DESIGN UPGRADES
   ========================================= */

/* Dark Tech Background */
.bg-dark-tech {
    background: linear-gradient(135deg, #0a192f 0%, #020c1b 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

/* Abstract Tech Pattern Background */
.bg-dark-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 188, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Glowing Accent Blob */
.bg-dark-tech::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Section Header Gradient Text */
.gradient-text-gold {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Separators (Smooth Transitions) */
.section-separator {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.separator-top {
    top: 0;
    left: 0;
    transform: translateY(-99%);
}

.separator-bottom {
    bottom: 0;
    left: 0;
    transform: translateY(99%);
}

/* Fix for GAP: ensure SVG scales slightly to cover sub-pixel rendering issues */
.section-separator svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    /* Increased height for smoother curve */
    transform: scaleY(1.02);
    /* Slight over-scale */
}

.sep-fill-white {
    fill: #ffffff;
}

.sep-fill-light {
    fill: #f8faff;
}

/* Soft light blue/gray */
.sep-fill-dark {
    fill: #0a192f;
}

/* Refined Backgrounds for Flow */
.bg-light-flow {
    background-color: #f8faff;
    /* Not harsh white, soft tech gray */
    position: relative;
    padding: 120px 0;
    /* More consistent padding */
}

/* Adjust Dark Section Padding for Separators */
.bg-dark-tech {
    padding: 120px 0;
}

/* Dark Glass Card */
.tech-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-card-dark:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tech-card-dark:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-turquoise);
    box-shadow: 0 0 15px var(--accent-turquoise);
}

.tech-card-dark h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.tech-card-dark p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-card-dark .tech-icon {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-turquoise);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.tech-card-dark:hover .tech-icon {
    background: var(--accent-turquoise);
    color: #0a192f;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

/* Premium Divider */
.divider-premium {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--accent-turquoise), transparent);
    margin: 25px auto;
    border-radius: 2px;
}

/* Floating Animation */
@keyframes float-slow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float-slow 6s ease-in-out infinite;
}

/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */

/* Tablet Landscape (max-width: 1200px) */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .fluid-container {
        width: 98%;
    }

    .text-wrapper h1 {
        font-size: 3.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait (max-width: 992px) */
@media screen and (max-width: 992px) {

    /* Header - Reset for mobile */
    .main-header {
        background-color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Header */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #0a192f 0%, #0d2137 100%) !important;
        background-color: #0a192f !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 80px 30px 40px !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
        overflow-y: auto !important;
    }

    .main-nav.active {
        right: 0 !important;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
    }

    .main-nav li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a {
        color: #ffffff !important;
        padding: 20px 10px;
        display: block;
        font-size: 1.05rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .main-nav a:hover {
        color: var(--accent-turquoise) !important;
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.05);
    }

    .main-nav a::after {
        display: none !important;
    }

    /* Contact Button Special Styling */
    .main-nav li:last-child {
        border-bottom: none;
        margin-top: 30px;
    }

    .main-nav li:last-child a {
        text-align: center;
        background: linear-gradient(135deg, var(--accent-turquoise) 0%, var(--accent-blue) 100%);
        border-radius: 50px;
        padding: 18px 30px;
        color: #ffffff !important;
        box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
    }

    .main-nav li:last-child a:hover {
        padding-left: 30px;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--primary-navy);
        border-radius: 10px;
        color: white;
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Mobile Close Button Inside Nav */
    .mobile-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .mobile-close i {
        color: #ffffff;
        font-size: 1.2rem;
    }

    .mobile-close:hover {
        background: var(--accent-turquoise);
        border-color: var(--accent-turquoise);
        transform: rotate(90deg);
    }

    /* Menu Overlay Background */
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .main-nav.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Hero Slider */
    .hero-slider {
        height: 70vh;
    }

    .text-wrapper {
        max-width: 90%;
        padding: 30px 35px;
    }

    .text-wrapper h1 {
        font-size: 2.8rem;
    }

    .text-wrapper p {
        font-size: 1rem;
    }

    .slider-controls div {
        width: 50px;
        height: 50px;
    }

    .prev-slide {
        left: 20px;
    }

    .next-slide {
        right: 20px;
    }

    /* Corporate Features Accordion */
    .accordion-features {
        flex-direction: column;
        height: auto;
    }

    .feature-panel {
        flex: none !important;
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-panel.active,
    .feature-panel:hover {
        flex: none !important;
    }

    .panel-num {
        font-size: 2.5rem;
    }

    .panel-header i {
        font-size: 1.8rem;
    }

    /* Defense Solutions */
    .defense-wrapper {
        flex-direction: column;
    }

    .defense-visual,
    .defense-content {
        width: 100%;
    }

    .defense-visual {
        height: 400px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Stats Counter */
    .stats-counter .container>div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }

    /* Product Page Sections */
    .summary-grid,
    .specs-layout {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .variants-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cap-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .app-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Page Hero */
    .page-hero {
        min-height: 60vh !important;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 30px !important;
    }

    .hero-stat .number {
        font-size: 2.5rem !important;
    }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {

    /* General */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Top Bar - Hide on mobile */
    .top-info-bar {
        display: none;
    }

    /* Header */
    .main-header {
        height: 70px;
    }

    .logo-container img {
        height: 42px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 85vh;
    }

    .hero-slider::before {
        opacity: 0.3;
    }

    .text-wrapper {
        max-width: 100%;
        padding: 25px;
        margin: 0 15px;
        border-radius: 15px;
    }

    .text-wrapper::before {
        font-size: 0.7rem;
        padding: 6px 15px;
        letter-spacing: 2px;
    }

    .text-wrapper h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .text-wrapper p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 0.85rem;
    }

    .slider-controls div {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }

    .slider-dots {
        bottom: 25px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Corporate Features */
    .corporate-features {
        margin-top: -30px;
        margin-bottom: -30px;
        padding: 60px 0;
    }

    .feature-panel {
        padding: 25px;
    }

    .feature-panel h3 {
        font-size: 1.2rem;
    }

    /* Defense Solutions */
    .defense-solutions {
        padding: 60px 0;
    }

    .defense-visual {
        height: 300px;
    }

    .defense-content h2 {
        font-size: 2rem;
    }

    /* Products Grid */
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Stats Counter */
    .stats-counter {
        padding: 60px 0 !important;
    }

    .stats-counter .container>div {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .stat-item>div:first-child {
        font-size: 2.5rem !important;
    }

    /* Trust Indicators */
    .trust-section>div>div:last-child {
        gap: 40px !important;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* Page Hero */
    .page-hero {
        min-height: 50vh !important;
        padding: 80px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px !important;
    }

    .hero-stat .number {
        font-size: 2rem !important;
    }

    /* Product Page - Executive Summary */
    .executive-summary {
        padding: 60px 0 !important;
    }

    .summary-content h2 {
        font-size: 2rem !important;
    }

    .floating-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 20px;
        display: inline-block;
    }

    /* Product Variants */
    .variants-section {
        padding: 60px 0 !important;
    }

    .variants-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .variant-card {
        padding: 30px 25px;
    }

    /* Capabilities */
    .capabilities-premium {
        padding: 60px 0 !important;
    }

    .cap-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .cap-item {
        padding: 35px 25px;
    }

    /* Applications */
    .applications-section {
        padding: 60px 0 !important;
    }

    .app-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .app-item {
        padding: 25px 15px;
    }

    /* Specs */
    .specs-premium {
        padding: 60px 0 !important;
    }

    .specs-visual {
        padding: 35px;
    }

    /* CTA Premium */
    .cta-premium {
        padding: 60px 0 !important;
    }

    .cta-premium h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Small Mobile (max-width: 576px) */
@media screen and (max-width: 576px) {
    .text-wrapper h1 {
        font-size: 1.8rem;
    }

    .text-wrapper p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .summary-content h2 {
        font-size: 1.6rem !important;
    }

    .variants-header h2,
    .cap-header h2,
    .app-header h2 {
        font-size: 1.6rem;
    }

    .app-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-counter .container>div {
        grid-template-columns: 1fr !important;
    }

    .hero-stat {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat:last-child {
        border-bottom: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .feature-panel:hover {
        flex: 1;
    }

    .feature-panel.active {
        flex: 3;
    }

    .slider-controls div:hover {
        transform: translateY(-50%);
    }

    .product-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .cap-item:hover,
    .variant-card:hover,
    .tech-card-dark:hover {
        transform: none;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 992px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }

    .text-wrapper {
        padding: 20px 30px;
        max-width: 60%;
    }

    .text-wrapper h1 {
        font-size: 2rem;
    }
}