:root {
    /* Colors - Industrial Light Palette */
    --primary: #0077b6;        /* Professional Sky Blue */
    --primary-dark: #023e8a;   /* Deep Navy for accents */
    --primary-light: #00b4d8;  /* Turquoise Blue */
    --glow-primary: 0 4px 15px rgba(0, 119, 182, 0.2);
    --accent: #caf0f8;         /* Light Blue backdrop */
    --accent-green: #90e0ef;   /* Cyan highlight */
    --secondary: #F8FAFC;      /* Clean Minimal Background */
    --text-main: #0F172A;      /* Dark Professional Slate text */
    --text-muted: #475569;      /* Muted Slate text */
    --white: #FFFFFF;
    --light-bg: rgba(0, 119, 182, 0.05);
    --border: rgba(15, 23, 42, 0.1);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing & Radius */
    --section-padding: 80px 0;
    --container-width: 1240px;
    --radius: 12px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--secondary);
}

/* Technical HUD Section - Premium Dark Dashboard */
.tech-hud-section {
    padding: 120px 0;
    background: var(--secondary);
    background-image: 
        linear-gradient(rgba(0, 119, 182, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 119, 182, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    border-top: 4px solid var(--primary);
}

.hud-dashboard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.hud-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', monospace;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hud-title i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.product-finder-wrap {
    width: 450px;
    position: relative;
    margin-right: -10px; /* Slight offset for bracket alignment */
}

.search-input-inner {
    position: relative;
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}












.search-input-inner i {
    padding: 0 20px;
    color: var(--primary);
    border-right: 1px solid var(--border);
    width: auto !important;
    height: 20px !important;
}

.search-input-inner:focus-within i {
    color: var(--primary);
    border-right-color: rgba(52, 106, 148, 0.3);
    filter: drop-shadow(0 0 5px rgba(52, 106, 148, 0.5));
}

.search-input-inner input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 16px 20px !important;
    color: var(--text-main) !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    outline: none !important;
}

.search-input-inner input::placeholder {
    color: var(--text-muted) !important;
}

.search-input-inner:focus-within input::placeholder {
    color: var(--text-muted);
}

.blue {
    color: var(--primary);
}

.underline {
    position: relative;
    white-space: nowrap;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}




h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 17, 33, 0.98); /* Premium Dark Navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle light border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1600px !important;
    width: 95% !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex: 2; /* Take more space to ensure centering */
}

.nav-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-cta {
        display: none; /* Hide in mobile, it's usually inside the side menu */
    }
}

.nav-links li a {
    display: block;
    color: var(--white); /* White for dark header */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

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

.nav-links li a:hover {
    color: var(--primary);
}

/* Standard Dropdowns */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    padding: 10px 0; /* Precise 10px top/bottom padding */
    min-width: 240px; 
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    z-index: 1001;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding: 12px 50px !important; /* Aggressive horizontal padding for clear change */
    margin-bottom: 6px; 
    color: var(--text-main) !important; /* Force Dark Slate for contrast */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}


/* Hidden decorative elements */
.dropdown-item::after,
.dropdown-all {
    display: none !important;
}

.dropdown-item i {
    display: none !important; /* Remove icons from submenus */
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(0, 180, 216, 0.05);
    color: var(--primary) !important;
    border-left-color: var(--primary);
}

.dropdown-menu .dropdown-item span {
    font-weight: 600;
    color: inherit !important; /* Inherit the dark slate from parent a tag */
}

/* Mega Menu Implementation */
.nav-links li.has-mega {
    position: static; /* Required for full-width mega menu relative to nav/container */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
    z-index: 1001;
    transform: translateY(15px);
}

.nav-links li.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-col {
    padding: 0 20px;
}

.mega-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    display: flex;
    align-items: center;
    padding-left: 50px !important; /* Align with items */
}

.mega-title i {
    display: none !important; /* Remove icons from mega menu titles */
}

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

.mega-list li {
    margin-bottom: 12px;
}

.mega-menu .mega-item {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    color: var(--text-main) !important; /* Force Dark Slate for contrast */
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 50px !important;
}

.mega-menu .mega-item:hover {
    color: var(--primary) !important;
    background: rgba(0, 119, 182, 0.05);
    padding-left: 60px !important;
}

.mega-item::after {
    display: none !important;
}

.mega-item i {
    display: none !important; /* Remove icons from mega items */
}

.mega-item:hover {
    color: var(--primary);
    background: rgba(0, 180, 216, 0.03); /* Subtle background for mega items too */
}

.mega-item i {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mega-item:hover i {
    opacity: 1;
    color: var(--primary);
}

/* Mobile Adjustments for Mega Menu */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 20px 0;
        display: none; /* Controlled by JS in mobile */
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .nav-links li.has-mega.mobile-open .mega-menu {
        display: block;
    }
}

.menu-toggle {
    display: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-links li a {
        font-size: 18px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 0 !important; /* Remove menu padding to rely on item padding */
        min-width: 100%;
    }

    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu::before {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 14px rgba(0, 91, 183, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.45);
}

.btn-dark-outline {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 14px 34px;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 50px;
}

.btn-dark-outline:hover {
    background: var(--primary-light);
    color: var(--secondary);
    border-color: var(--primary-light);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
    transform: translateY(-3px);
}

/* Product Subpages Shared Styles */
.prod-hero {
    min-height: 80vh;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('assets/product-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
}

.prod-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.prod-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    font-weight: 900;
}

.prod-content h1 span.blue {
    color: var(--primary-light);
}

.prod-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.prod-content .section-tag {
    color: var(--primary-light);
}

.prod-content .section-tag::before {
    background: var(--primary-light);
}

.prod-visual-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-visual-wrap img {
    width: 100%;
    max-width: 550px;
    mix-blend-mode: multiply;
    filter: brightness(1.2) contrast(1.1);
    z-index: 2;
}

.visual-glow-main {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.tech-hud-container {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.hud-specs-card {
    background: var(--white);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.spec-item {
    border-left: 2px solid rgba(0, 180, 216, 0.3);
    padding-left: 20px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-main);
    font-size: 14px;
    min-width: 900px; /* Ensure columns have room */
}

.tech-table th {
    background: rgba(0, 180, 216, 0.05);
    color: var(--primary-light);
    text-align: left;
    padding: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}

.tech-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', monospace; /* Monospaced look for data */
    font-weight: 500;
}

.tech-table tr:hover {
    background: rgba(0, 119, 182, 0.03);
}

.tech-table td:first-child {
    color: var(--primary-light);
    font-weight: 800;
}

/* Product Finder Tool Styles */
.finder-bar {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.finder-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}

.finder-input-wrap {
    position: relative;
    width: 280px;
}

.finder-input-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.finder-input {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 20px 12px 45px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.finder-input:focus {
    background: rgba(0, 180, 216, 0.05);
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
}

.no-results {
    padding: 100px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    display: none;
}

.no-results i {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Spec-Tile Results Grid */
.tech-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}


.spec-tile {
    background: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.spec-tile:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1), var(--glow-primary);
}


.spec-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    opacity: 0;
    transition: 0.3s;
}

.spec-tile:hover::before {
    opacity: 1;
}

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

.tile-designation {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tile-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    background: rgba(15, 23, 42, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.tile-main-spec {
    margin-bottom: 25px;
}

.shaft-value-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.shaft-val {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    font-family: 'Inter', monospace;
}

.shaft-unit {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.tile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-lbl {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-val {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 700;
    font-family: 'Inter', monospace;
}

.tile-bolt {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 11px;
    color: rgba(0, 180, 216, 0.6);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tile-bolt i {
    width: 12px;
    height: 12px;
}

@media (max-width: 600px) {
    .tech-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .prod-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .prod-content p {
        margin: 0 auto;
    }
    .prod-visual-wrap img {
        max-width: 400px;
    }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-dark-outline {
    color: var(--text-main); /* Corrected to dark for visibility on light bg */
    border: 2px solid rgba(15, 23, 42, 0.2);
    background: transparent;
}

.hero .btn-dark-outline {
    color: var(--white); /* Keep white for the dark hero sections */
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.2);
}

.hero .btn-dark-outline:hover {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for header */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .container {
    z-index: 2;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.hero-support-points {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.hero-support-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-support-points li:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    cursor: default;
}

.hero-support-points li i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.hero .container {
    max-width: 1600px !important;
    width: 95% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    position: relative;
    z-index: 2;
}

.product-orbit-container {
    position: absolute;
    right: -30px; /* Anchored to the edge for a sleeker industrial look */
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Ensure it stays above the slides */
}

.main-products-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #0056FF 0%, #003399 70%, #001A4D 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 4px 12px rgba(255, 255, 255, 0.4),
        inset 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.main-products-circle.active {
    transform: rotate(360deg);
}

.main-products-circle:hover {
    background: radial-gradient(circle at 35% 35%, #0077FF 0%, #0044CC 70%, #002266 100%) !important;
    transform: scale(1.08) rotate(15deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 4px 15px rgba(255, 255, 255, 0.5);
}

.orbit-item {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #0056FF 0%, #002266 80%, #001133 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 9;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.6),
        inset 0 4px 10px rgba(255, 255, 255, 0.4),
        inset 0 -4px 10px rgba(0, 0, 0, 0.4);
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.orbit-label {
    position: absolute;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.orbit-item.active {
    opacity: 1;
    pointer-events: auto;
    --dist: 220px;
    transform: translate(calc(cos(var(--angle)) * var(--dist)), calc(sin(var(--angle)) * var(--dist))) scale(1) rotate(0deg);
}

.orbit-item:hover {
    background: radial-gradient(circle at 35% 35%, #0056FF 0%, #003399 70%, #001A4D 100%) !important;
    transform: translate(calc(cos(var(--angle)) * var(--dist)), calc(sin(var(--angle)) * var(--dist))) scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.7),
        inset 0 4px 12px rgba(255, 255, 255, 0.5);
}

.orbit-item:hover img {
    opacity: 0.15; /* Fade out image to let text look proper */
    transform: scale(0.8);
}

.orbit-item:hover .orbit-label {
    opacity: 1;
    transform: scale(1);
}

/* Wide left-facing arc for 5 circles from the right edge */
.orbit-item:nth-child(2) { --angle: 120deg; } /* Top Left */
.orbit-item:nth-child(3) { --angle: 150deg; }
.orbit-item:nth-child(4) { --angle: 180deg; } /* Pure Left */
.orbit-item:nth-child(5) { --angle: 210deg; }
.orbit-item:nth-child(6) { --angle: 240deg; } /* Bottom Left */

.orbit-item.active {
    --dist: 220px; /* Significant spacing */
    transform: translate(calc(cos(var(--angle)) * var(--dist)), calc(sin(var(--angle)) * var(--dist))) scale(1);
}

@keyframes floatOrbit {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

.hero h1 {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    text-transform: none;
    font-weight: 800;
}

.hero h1 span.blue {
    color: var(--primary);
}

.hero h1 span.underline {
    position: relative;
    color: var(--primary);
}

.hero h1 span.underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.hero .sub-heading {
    font-weight: 500;
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    line-height: 1.6;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Section Common */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.section-title .industrial-label {
    display: inline-block;
    font-family: 'Inter', monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: var(--primary-light);
    padding: 6px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.section-title h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text-main);
    text-transform: uppercase;
    margin: 0 auto;
    max-width: 800px;
}

.blue {
    color: var(--primary) !important;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Product Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 50px 35px;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.product-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.card-corner, .card-scan { display: none; } /* Disabled HUD scifi elements */

.product-image {
    height: 300px; /* Increased from 220px to make bearings look larger */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2;
}

.product-image img {
    max-height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transition: 0.6s;
}

.product-card:hover .product-image img {
    /* Removed transform scale and rotate as requested */
    filter: drop-shadow(0 0 30px rgba(0, 119, 182, 0.25)) brightness(1.05);
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.product-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Why Choose Us */
.why-section {
    background: var(--light-bg);
}

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

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border-color: var(--border);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 20px;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.industry-card {
    height: 350px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: var(--white);
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 91, 183, 0.7)); /* Primary color gradient */
    opacity: 0.6;
    z-index: 1;
    transition: var(--transition);
}

.industry-card:hover::after {
    opacity: 0.9;
}

.industry-card h3 {
    color: var(--white);
    z-index: 2;
    font-size: 24px;
    font-weight: 700;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

/* CTA Section HUD Upgrade */
.cta-section {
    background: var(--primary);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Tactical Button Component */
.btn-tac-cta {
    background: #ffffff;
    color: var(--primary) !important;
    border: 2px solid #ffffff;
    font-weight: 900;
    padding: 16px 45px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
}

.btn-tac-cta:hover {
    background: transparent;
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
    letter-spacing: 2px;
}











/* Heavy-Duty Industrial Footer */
footer {
    background: rgba(11, 17, 33, 0.99); /* Match Header Dark Navy */
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 50px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.caution-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        45deg,
        #FFD700,
        #FFD700 10px,
        #000000 10px,
        #000000 20px
    );
    z-index: 10;
}

.footer-bolt {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #444 30%, #111 80%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5), 0 2px 5px rgba(0,0,0,0.5);
}

.bolt-tl { top: 20px; left: 20px; }
.bolt-tr { top: 20px; right: 20px; }
.bolt-bl { bottom: 20px; left: 20px; }
.bolt-br { bottom: 20px; right: 20px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-about img {
    opacity: 1;
    margin-bottom: 30px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.6); /* Muted white */
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
}

.footer-socials a i,
.footer-socials a svg {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
}

.footer-socials a:hover svg {
    stroke-width: 2.5;
}

/* Brand Specific Hover States */
.footer-socials a[aria-label="LinkedIn"]:hover { color: #0077B5; border-color: #0077B5; }
.footer-socials a[aria-label="YouTube"]:hover { color: #FF0000; border-color: #FF0000; }
.footer-socials a[aria-label="Instagram"]:hover { color: #E4405F; border-color: #E4405F; }
.footer-socials a[aria-label="Twitter"]:hover { color: var(--primary-light); border-color: var(--primary-light); }

.footer-column {
    border-left: 1px solid var(--border);
    padding-left: 40px;
}

.footer-column h4 {
    color: var(--white); /* White for dark theme */
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7); /* Readable link color */
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
    gap: 10px;
}

.footer-links a::before {
    content: '›';
    opacity: 0;
    color: var(--primary);
    font-weight: 900;
    transition: 0.3s;
}

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

.footer-contact li {
    margin-bottom: 25px;
    display: flex;
    gap: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.footer-metadata {
    display: flex;
    gap: 30px;
}

.footer-metadata div {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 800;
}

.footer-metadata span {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        text-align: center;
    }

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

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

/* Reliable Motion Section - Premium Industrial Style */
.reliable-motion {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.reliable-motion::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 91, 183, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.reliable-motion .container {
    max-width: 1300px;
    position: relative;
    z-index: 5;
}

.rm-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    align-items: flex-start;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.section-tag::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.rm-left h2 {
    font-size: 62px;
    line-height: 1.05;
    color: var(--text-main); /* Changed from secondary to main for visibility */
    margin-bottom: 30px;
    letter-spacing: -1px;
    transition: var(--transition);
    cursor: default;
}


.rm-subline {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.5;
}

.rm-content p {
    font-size: 19px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 35px;
}

.rm-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 60px;
}

.rm-point {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.rm-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 91, 183, 0.1);
    border-color: var(--primary);
}

.point-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 91, 183, 0.08);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.rm-point span {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main); /* Changed from secondary to main for visibility */
    line-height: 1.3;
}

/* Reliable Motion Visuals */
.rm-visual {
    position: relative;
    width: 100%;
    max-width: 600px; /* Increased from 450px to accommodate larger image */
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.bearing-360 {
    width: 480px; /* Increased from 320px for greater impact */
    filter: drop-shadow(0 25px 60px rgba(0,0,0,0.2));
    mix-blend-mode: multiply;
    transition: transform 0.5s ease; /* Reduced transition time for a tighter feel */
    z-index: 2;
    cursor: default; /* Removed pointer as it's no longer interactive */
    -webkit-mask-image: radial-gradient(circle, black 65%, transparent 95%);
    mask-image: radial-gradient(circle, black 65%, transparent 95%);
}

.rm-visual:hover .bearing-360 {
    /* Removed rotation and scaling as requested */
    transform: none; 
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 91, 183, 0.12) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(20px);
}

/* Responsive Fixes */
@media (max-width: 1100px) {
    .rm-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}



/* Inspired by Excellence - Technical Redesign */
.why-section {
    background: var(--white);
    color: var(--text-main);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.rm-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 91, 183, 0.1) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(0, 91, 183, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Inspired by Excellence - Tactical Horizontal Slider */
.excellence-mastery {
    padding: 120px 0;
    background: #0B1121; /* Dark Navy Background */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.excellence-mastery .section-title {
    margin-bottom: 30px !important; /* Overrode global 90px margin to remove extra space */
}

.excellence-mastery .section-title h2 {
    color: var(--white);
}

.excellence-mastery .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.excellence-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 0; /* Completely removed padding to bring cards up */
}

.ex-slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0 60px 0;
}

.ex-slider-viewport::-webkit-scrollbar {
    display: none;
}

.ex-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.ex-card {
    flex: 0 0 520px;
    background: rgba(26, 34, 53, 0.95); /* Dark Hud Background */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.ex-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.ex-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.ex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ex-card:hover .ex-image img {
    transform: scale(1.1);
}

.ex-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 14, 20, 0.1), rgba(11, 14, 20, 0.3));
}

.ex-copy {
    padding: 45px;
}

.ex-copy h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ex-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.ex-copy p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748B;
}

/* Tactical Interaction Controls */
.ex-slider-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.ex-slider-nav {
    display: flex;
    gap: 15px;
}

.ex-btn {
    width: 55px;
    height: 55px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ex-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 91, 183, 0.2);
}

.ex-seeker-track {
    flex-grow: 1;
    height: 4px;
    background: #E2E8F0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.ex-seeker-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: var(--primary);
    border-radius: 2px;
    transition: left 0.3s ease;
}

@media (max-width: 992px) {
    .ex-card {
        flex: 0 0 420px;
    }
}

@media (max-width: 600px) {
    .ex-card {
        flex: 0 0 calc(100vw - 60px);
    }
    .ex-copy {
        padding: 30px;
    }
    .ex-copy h3 {
        font-size: 22px;
    }
}



/* Industries Section Redesign - Premium Technical Dark Grid */
#industries {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 91, 183, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Industries Section - Heavy Industry Visual Showcase */
#industries {
    padding: 140px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.7), rgba(248, 250, 252, 0.7)), 
                url('assets/industrial_factory.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#industries .section-title h2 {
    color: var(--text-main);
    margin-bottom: 50px;
    font-weight: 800;
}

.sector-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.sector-tab {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 16px 32px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.sector-tab:hover {
    background: var(--primary-light);
    color: var(--white);
}

.sector-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.industries-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

/* Industries Section - Tactical Dark HUD Redesign */
.industries-section {
    padding: 160px 0;
    background-color: var(--secondary);
    background-image: 
        radial-gradient(rgba(0, 119, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.industries-section .section-title {
    margin-bottom: 40px !important; /* Tightens gap between title and sector buttons */
}

.industries-section .section-title h2 {
    color: var(--text-main) !important; /* Forced dark color for contrast */
}

.industries-section .section-title p {
    color: var(--text-muted);
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.industries-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, transparent 15%, transparent 85%, var(--secondary) 100%);
    pointer-events: none;
    z-index: 2;
}

.sector-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.8); /* Changed from 0.03 to 0.8 for distinct contrast */
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 119, 182, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.sector-tab {
    padding: 22px 45px;
    background: transparent;
    color: var(--text-main); /* Increased from text-muted for visibility */
    border: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-right: 1px solid var(--border);
}

.sector-tab:last-child {
    border-right: none;
}

.sector-tab:hover {
    color: var(--text-main);
    background: rgba(0, 119, 182, 0.05);
}

.sector-tab.active {
    background: var(--primary-light);
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.4);
}

.industries-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.ind-tile {
    display: none;
    opacity: 0;
    background: transparent;
    border-radius: 8px;
    perspective: 1000px;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    min-height: 400px;
    cursor: pointer;
}

.ind-tile.active {
    display: block;
}
.ind-tile-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.ind-tile:hover .ind-tile-inner {
    transform: rotateY(180deg);
}

.ind-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ind-face.front {
    z-index: 2;
    background: var(--bg-dark);
}

.ind-face.back {
    background: #0a0f18 !important; /* Solid Opaque Dark */
    transform: rotateY(180deg) translateZ(2px); /* Explicitly bring to front */
    border: 1px solid var(--primary-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 1;
}

.ind-tile:hover .ind-face.back {
    z-index: 3; /* Ensure back is on top when hovered */
}

.ind-face.front {
    z-index: 1;
}

.ind-tile:hover .ind-face.front {
    pointer-events: none; /* Prevent front face from blocking clicks */
}

/* Ensure the back face is interactable when visible */
.ind-tile:hover .ind-face.back {
    pointer-events: auto;
}

.ind-face.back h4 {
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Enhanced Tactical Button with Hover */
.btn-tac-cta {
    display: inline-block;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid white;
    box-shadow: 0 4px 15px rgba(0, 209, 255, 0.1);
}

.btn-tac-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 209, 255, 0.3);
    border-color: var(--primary);
}

.ind-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) contrast(1.1);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.ind-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    opacity: 0.8;
}

.ind-tile:hover .ind-bg {
    transform: scale(1.1);
}

.ind-id {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Inter', monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-light);
    background: rgba(0, 180, 216, 0.1);
    padding: 6px 12px;
    border-radius: 2px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    letter-spacing: 2px;
    z-index: 20;
    transition: all 0.4s ease;
}

.ind-tile:hover .ind-id {
    background: var(--primary-light);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.ind-content {
    position: relative;
    margin-top: auto;
    padding: 60px 45px;
    z-index: 10;
    background: transparent;
}

.ind-icon {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}

.ind-tile:hover .ind-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-light);
    color: var(--secondary);
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.4);
}

.ind-tile h4 {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added subtle shadow for legibility */
}

.ind-tile:hover .ind-face.front h4 {
    color: var(--white) !important;
    transform: translateX(10px);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.ind-id {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    z-index: 10;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .industries-grid-new {
        grid-template-columns: 1fr;
    }
}

.ind-tile.entering {
    animation: interestingEnter 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.ind-tile.exiting {
    animation: interestingExit 0.5s cubic-bezier(1, 0, 0, 1) forwards;
}

@keyframes interestingEnter {
    0% { 
        opacity: 0; 
        transform: perspective(1000px) rotateX(-90deg) translateY(40px) scale(0.8);
        filter: brightness(2) blur(10px);
    }
    50% {
        opacity: 0.5;
        filter: brightness(1.5) blur(5px);
    }
    100% { 
        opacity: 1; 
        transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
        filter: brightness(1) blur(0);
    }
}

@keyframes interestingExit {
    0% { 
        opacity: 1; 
        transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
        filter: brightness(1);
    }
    100% { 
        opacity: 0; 
        transform: perspective(1000px) rotateX(90deg) translateY(-40px) scale(0.8);
        filter: brightness(0.2) blur(10px);
    }
}

.ind-tile:hover {
    transform: translateY(-15px) rotateX(5deg) !important;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.ind-icon {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 91, 183, 0.4);
}

.ind-tile:hover .ind-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 91, 183, 0.6);
}

.ind-tile h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ind-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.ind-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 91, 183, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.6s ease;
    box-shadow: 0 0 15px rgba(0, 91, 183, 0.1);
}

.ind-tile:hover .ind-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
    box-shadow: 0 0 25px rgba(0, 91, 183, 0.5);
}

.ind-tile h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    transition: var(--transition);
}

.ind-tile:hover h4 {
    color: var(--white);
}

@media (max-width: 992px) {
    .industries-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .industries-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    .ind-tile {
        padding: 25px 15px;
        min-height: 180px;
    }
}

/* Our Clients Section - High-Tech Industrial Marquee */
.clients-section {
    padding: 60px 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.clients-section .section-title {
    margin-bottom: 30px !important; 
}

.clients-section .section-title h2 {
    color: var(--text-main);
}

.clients-section .section-title p {
    color: var(--text-muted);
}

.clients-section .industrial-label {
    background: var(--text-main);
    color: var(--white);
    box-shadow: 4px 4px 0 rgba(15, 23, 42, 0.1);
}

.clients-section .blueprint-ruler {
    background-image: 
        linear-gradient(90deg, var(--secondary) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.2) 1px, transparent 1px);
}

.marquee-container {
    width: 100%;
    margin-top: 0;
    padding: 20px 0 20px;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    gap: 60px;
}

.marquee-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo {
    width: 220px;
    height: 120px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-left: 1px solid #CBD5E1;
    border-top: 1px solid #CBD5E1;
}

.client-logo:hover, .client-logo.is-focused {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05) translateY(-5px);
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 30px)); }
}

@media (max-width: 768px) {
    .client-logo {
        width: 160px;
        height: 100px;
        padding: 15px;
    }
    .marquee-track, .marquee-content {
        gap: 30px;
    }
}

/* WhatsApp Floating Button - Premium Industrial Style */
/* --- TACTICAL HOLOGRAM WHATSAPP INTERFACE --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.whatsapp-float i {
    width: 30px;
    height: 30px;
    z-index: 5;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Rotating Tactical Multi-Orbit System */
.wa-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    border-top: 2px solid var(--primary-light);
    animation: waRotateCW 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Secondary Orbit - CCW */
.wa-ring::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px dashed rgba(0, 180, 216, 0.4);
    border-radius: 50%;
    animation: waRotateCCW 3s linear infinite;
}

/* Tertiary Pulse Edge */
.wa-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    animation: waOrbitPulse 2s ease-in-out infinite;
}

@keyframes waRotateCW {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes waRotateCCW {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes waOrbitPulse {
    0%, 100% { transform: scale(1.0); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* Holographic Icon Core */
/* Clean High-Fidelity Icon Core */
.whatsapp-float i,
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    fill: currentColor;
}

/* Ensure Text & HUD Elements stay hidden from the button core */
.wa-tooltip, 
.wa-scan {
    display: none !important;
}

.whatsapp-float:hover i,
.whatsapp-float:hover svg {
    animation: holoFlicker 0.4s ease infinite;
}

@keyframes holoFlicker {
    0% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 5px #fff); }
    10% { opacity: 0.7; filter: brightness(2) drop-shadow(0 0 15px var(--primary-light)); }
    20% { opacity: 1; filter: brightness(1.3) drop-shadow(0 0 8px #fff); }
    50% { opacity: 0.9; filter: brightness(1.8) drop-shadow(0 0 20px var(--primary-light)); }
    100% { opacity: 1; filter: brightness(1.2) drop-shadow(0 0 5px #fff); }
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(37, 211, 102, 0.7), 
        0 0 40px rgba(0, 180, 216, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.whatsapp-float:hover .wa-ring {
    animation-duration: 1.5s; /* High Speed */
    border-top-color: #fff;
    scale: 1.1;
}

.whatsapp-float:hover .wa-ring::before {
    animation-duration: 1s; /* Multi-speed Sync */
    border-color: #fff;
    scale: 1.1;
}

.whatsapp-float:hover .wa-ring::after {
    animation-duration: 0.8s;
    border-color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
    .wa-tooltip {
        display: none !important;
    }
}

/* --- PREMIUM NEBULA & PORTAL SYSTEM (ABOUT PAGE REDESIGN) --- */

.nebula-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
    pointer-events: none;
}

.nebula-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 91, 183, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: nebulaFloat 25s infinite alternate;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: nebulaFloat 30s infinite alternate-reverse;
}

@keyframes nebulaFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

/* Portrait / Leadership Styling */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    padding-bottom: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.leader-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.1);
    background: var(--white);
}

.leader-image-wrap {
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.leader-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: all 0.6s ease;
}

.leader-card:hover .leader-image-wrap img {
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.05);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-name {
    color: var(--text-main);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.leader-role {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.leader-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 250px;
    margin: 0 auto;
}

/* Bearing Eclipse Portal */
.portal-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.bearing-portal {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--white);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 100px rgba(0, 119, 182, 0.1);
}

.portal-ring {
    position: absolute;
    width: 100.5%;
    height: 100.5%;
    border-radius: 50%;
    background: linear-gradient(45deg, #005BB7, var(--primary-light), #005BB7);
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: drop-shadow(0 0 15px #005BB7) drop-shadow(0 0 30px var(--primary-light));
    animation: portalRotate 10s linear infinite;
}

@keyframes portalRotate {
    0% { transform: rotate(0deg); filter: hue-rotate(0deg); }
    100% { transform: rotate(360deg); filter: hue-rotate(45deg); }
}

.portal-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.glass-vision-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.glass-vision-card:hover {
    background: var(--white);
    border-color: var(--primary);
}

.glass-vision-card i {
    color: var(--primary-light);
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.3));
}

/* Hex Grid Overlay */
.hex-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iMTA0IiB2aWV3Qm94PSIwIDAgNjAgMTA0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik02MCAxMDQuMzV2LTEuMTZMMzAgODYuNjcgMCAxMDMuMTl2MS4xNmwzMC0xNi41MmwzMCAxNi41MnpNMzAgMzQuMzJMMCAxNy44NVYwMmwzMCAxNi41Mkw2MCAwNXYxNS44NUwzMCAzNC4zMnpNMCA4Ni42N1YzNC4zMmwzMCAxNi41MmwzMC0xNi41MnY1Mi4zNUwzMCAxMDMuMTlMIDI2IDg2LjY3eiIIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
    background-size: 60px 104px;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}


/* Eclipse Immersive Reader (Cinematic HUD) */
.hud-reader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hud-reader-overlay.active {
    display: flex;
    opacity: 1;
}

.reader-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 180, 216, 0.05) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 1;
    animation: scanPulse 10s linear infinite;
}

@keyframes scanPulse {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

.reader-container {
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hud-reader-overlay.active .reader-container {
    transform: translateY(0) scale(1);
}

/* Tactical Corner Brackets */
.reader-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-light);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.4));
}

.br-tl { top: -2px; left: -2px; border-bottom: none; border-right: none; }
.br-tr { top: -2px; right: -2px; border-bottom: none; border-left: none; }
.br-bl { bottom: -2px; left: -2px; border-top: none; border-right: none; }
.br-br { bottom: -2px; right: -2px; border-top: none; border-left: none; }

.reader-header {
    background: rgba(0, 180, 216, 0.08);
    padding: 22px 40px;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reader-title {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.reader-title i {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.5));
}

.btn-reader-close {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-light);
    padding: 10px 25px;
    font-family: 'Inter', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-reader-close:hover {
    background: var(--primary-light);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
}

.reader-body {
    flex: 1;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.reader-body iframe {
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reader-body iframe.loaded {
    opacity: 1;
}

/* Loading HUD Layer */
.pdf-loading-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 180, 216, 0.1);
    border-top: 2px solid var(--primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 30px;
}

.loading-text {
    color: var(--primary-light);
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.loading-bar-wrap {
    width: 300px;
    height: 1px;
    background: rgba(0, 180, 216, 0.1);
    position: relative;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-light);
    animation: loadProgressImmersive 3s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes loadProgressImmersive {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

.reader-footer {
    padding: 15px 40px;
    background: rgba(0, 180, 216, 0.05);
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reader-status {
    font-family: 'Inter', monospace;
    font-size: 9px;
    color: rgba(0, 180, 216, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reader-status span {
    color: var(--primary-light);
    font-weight: 700;
}

@media (max-width: 768px) {
    .hud-reader-overlay {
        padding: 0;
    }
    
    .reader-container {
        height: 100vh;
        border: none;
    }
    
    .reader-bracket {
        display: none;
    }
}

/* --- NEXUS GLOBAL EVENTS DASHBOARD (INDUSTRIAL AERO) --- */

.event-timeline-section {
    position: relative;
    padding: 120px 0;
    background: var(--secondary);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(0, 119, 182, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 119, 182, 0.05) 0%, transparent 40%);
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        rgba(0, 180, 216, 0.2), 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    z-index: 1;
}

.timeline-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.02) 0%, transparent 70%);
    filter: blur(20px);
}

.timeline-event {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 160px;
    z-index: 2;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-event.reveal .timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.timeline-hub {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
    transition: all 0.5s ease;
}

.timeline-event.reveal .timeline-hub {
    border-color: var(--primary-light);
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.4);
}

.timeline-hub::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
}

.timeline-event.reveal .timeline-hub::after {
    opacity: 1;
    animation: hubGlow 2.5s infinite ease-in-out;
}

@keyframes hubGlow {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 rgba(0, 180, 216, 0.5); }
    50% { transform: scale(1.4); opacity: 0.6; box-shadow: 0 0 20px rgba(0, 180, 216, 0.3); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 rgba(0, 180, 216, 0.5); }
}

.tactical-event-card {
    background: var(--white);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 24px; /* Softer radius */
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.tactical-event-card:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.event-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif; /* Cleaner font */
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.event-designation {
    color: rgba(255, 255, 255, 0.5);
    border-left: 2px solid var(--primary-light);
    padding-left: 12px;
}

.event-date-stamp {
    color: var(--primary-light);
}

.event-poster-container {
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 30px;
    filter: brightness(0.9); /* Brighter */
    transition: all 1s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tactical-event-card:hover .event-poster-container {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.event-details h3 {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 35px;
}

.event-venue i {
    color: var(--primary-light);
    opacity: 0.7;
}

.ex-tactical-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.ex-tactical-btn:hover {
    background: var(--primary-light);
    color: #0F172A;
    border-color: var(--primary-light);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .timeline-track { left: 40px; transform: none; }
    .timeline-hub { left: 40px; transform: translateX(-50%); }
    .timeline-content { width: calc(100% - 120px); margin-left: 80px; }
    .timeline-event, .timeline-event:nth-child(even) { flex-direction: row; }
}

@media (max-width: 600px) {
    .timeline-track { display: none; }
    .timeline-hub { display: none; }
    .timeline-content { width: 100%; margin-left: 0; }
    .tactical-event-card { padding: 30px; }
}

/* --- Newsletter Thumbnail System (Aero) --- */
.newsletter-thumb {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: top center;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.leader-card:hover .newsletter-thumb {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.newsletter-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.8));
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.leader-card:hover .newsletter-thumb::after {
    opacity: 0.3;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.leader-card:hover .thumb-overlay {
    opacity: 1;
}

.thumb-overlay i {
    color: #fff;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.leader-card:hover .thumb-overlay i {
    transform: scale(1);
}

/* --- Clean Document Grid (Light Theme) --- */
.clean-doc-section {
    background-color: #f5f5f5; 
    padding: 60px 0;
}

.clean-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .clean-doc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .clean-doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .clean-doc-grid { grid-template-columns: 1fr; }
}

.clean-doc-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 4px; /* Slight rounding for a clean look */
}

.clean-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.clean-doc-thumb {
    width: 100%;
    height: 380px; 
    background-size: cover;
    background-position: top center;
    border-bottom: 1px solid #eee;
}

.clean-doc-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.clean-doc-edition {
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.clean-doc-date {
    font-size: 14px;
    color: #777;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Floating Industrial Product Hub --- */
.product-hub-wrapper {
    position: fixed;
    right: 40px;
    bottom: 200px;
    z-index: 999;
}

.product-hub-float {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--glow-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.hub-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hub-main-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Counter-rotate main label to keep it upright */
.product-hub-wrapper.active .hub-center-content {
    transform: rotate(-135deg);
}

.product-hub-float:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.5), var(--glow-primary);
}

.hub-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(6, 8, 12, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.product-hub-float:hover .hub-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

.hub-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: hubPulse 2s infinite;
    pointer-events: none;
}

@keyframes hubPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .product-hub-wrapper {
        right: 15px;
    }
    .product-hub-float {
        width: 50px;
        height: 50px;
    }
}

/* Sub-circles expansion */
.product-hub-subs {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
    transform: translate(50%, -50%);
}

.product-hub-wrapper.active .product-hub-subs {
    pointer-events: auto;
}

.hub-sub {
    position: absolute;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-dark), rgba(0, 119, 182, 0.8));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    opacity: 0;
    transform: translate(0, 0) scale(0);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4), 0 0 10px rgba(0, 119, 182, 0.2);
}

.hub-sub:hover {
    background: var(--white);
    color: var(--primary);
    transform: translate(var(--tx), var(--ty)) scale(1.1) !important;
}

.hub-sub i {
    width: 16px;
    height: 16px;
}

.hub-sub-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Symmetrical Semi-Circle Fan (Leftward) */
.product-hub-wrapper.active .hub-sub {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(1);
}

/* Staggered transition delay */
.hub-sub[style*="--i:0"] { --tx: -30px;  --ty: -150px; transition-delay: 0.0s; }
.hub-sub[style*="--i:1"] { --tx: -130px; --ty: -100px; transition-delay: 0.08s; }
.hub-sub[style*="--i:2"] { --tx: -170px; --ty: 0px;    transition-delay: 0.16s; }
.hub-sub[style*="--i:3"] { --tx: -130px; --ty: 100px;  transition-delay: 0.24s; }
.hub-sub[style*="--i:4"] { --tx: -30px;  --ty: 150px;  transition-delay: 0.32s; }

/* Trigger interaction */
.product-hub-wrapper.active .product-hub-float {
    transform: rotate(135deg);
    background: var(--secondary);
    border-color: var(--primary);
    color: var(--primary-dark) !important; /* Forced dark color for visibility */
}

.product-hub-wrapper.active .hub-pulse {
    display: none;
}


/* ==========================================================================
   TACTICAL READING CONSOLE - BLOG SYSTEM
   ========================================================================== */

.article-console {
    background: var(--white) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 80px 100px !important;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    margin-bottom: 150px !important;
}

.article-console:hover {
    border-color: var(--primary);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), var(--glow-primary);
    transform: translateY(-5px);
}

.progress-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 1000;
    box-shadow: 0 0 15px var(--primary);
    transition: width 0.1s linear;
}

.focus-block {
    position: relative;
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 25px !important;
    color: var(--text-muted) !important;
}

.focus-block:hover {
    opacity: 1;
    transform: translateX(10px);
    color: #fff !important;
}

.focus-block::before {
    content: "";
 position: absolute;
 left: -30px;
 top: 50%;
 transform: translateY(-50%) scale(0);
 width: 8px;
 height: 8px;
 background: var(--primary);
 border-radius: 2px;
 transition: all 0.3s ease;
}

.focus-block:hover::before {
 transform: translateY(-50%) scale(1);
 box-shadow: var(--glow-primary);
}

.console-heading {
 position: relative;
 color: #fff !important;
 font-weight: 900 !important;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-top: 60px !important;
 margin-bottom: 30px !important;
 display: inline-block;
}

.console-heading::after {
 content: \\;
 position: absolute;
 bottom: -10px;
 left: 0;
 width: 50px;
 height: 3px;
 background: var(--primary);
 transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.article-console:hover .console-heading::after {
 width: 100%;
}

.neon-link {
 color: var(--primary);
 text-decoration: none;
 position: relative;
 font-weight: 800;
 transition: all 0.3s ease;
}

.neon-link::after {
 content: \\;
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0%;
 height: 1px;
 background: var(--primary);
 box-shadow: 0 0 10px var(--primary);
 transition: width 0.3s ease;
}

.neon-link:hover {
 text-shadow: 0 0 10px var(--primary);
}

.neon-link:hover::after {
 width: 100%;
}

@media (max-width: 768px) {
    .article-console {
        padding: 40px 25px !important;
    }
}

/* ==========================================================================
   Tactical HUD Component Library
   ========================================================================== */

.narrative-card {
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 50px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.narrative-card:hover {
    background: var(--white);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* Tactical HUD Brackets */
.card-bracket {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary);
    opacity: 0.3;
    transition: all 0.4s ease;
    pointer-events: none;
}

.narrative-card:hover .card-bracket {
    opacity: 1;
    width: 30px;
    height: 30px;
    border-width: 2px;
    filter: drop-shadow(0 0 5px var(--primary));
}

.bracket-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.bracket-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.bracket-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.bracket-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* Scanning Animation */
.scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
}

.narrative-card:hover .scan-line {
    animation: scanLine 3s linear infinite;
    opacity: 0.5;
}

@keyframes scanLine {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 0.5; }
    50% { opacity: 0.2; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

.narrative-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.narrative-id-tag {
    font-size: 10px;
    font-weight: 900;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
}

/* Tactical Author Card */
.article-author-card {
    display: flex;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.article-author-card:hover {
    background: rgba(0, 119, 182, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.author-icon-box {
    width: 65px;
    height: 65px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.4);
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.article-author-card:hover .author-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 35px rgba(0, 119, 182, 0.6);
}

.author-info {
    padding-left: 25px;
}

.author-info h4 {
    color: var(--text-main);
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.author-info p {
    color: var(--text-muted) !important;
    font-size: 13px !important;
    margin: 5px 0 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 800 !important;
    opacity: 0.7;
}

/* Tactical Selector Component - High-Fidelity HUD Engineering */
.tactical-selector-wrap {
    position: relative;
    width: 100%;
}

.tactical-selector-trigger {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 15px;
    color: var(--text-main);
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 5;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tactical-selector-trigger:hover {
    border-color: var(--primary);
    background: rgba(0, 119, 182, 0.05);
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.1);
}

.tactical-selector-trigger.is-open {
    border-color: var(--primary);
    background: rgba(0, 119, 182, 0.08);
}

.tactical-selector-trigger i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.tactical-selector-trigger.is-open i {
    transform: rotate(180deg);
}

.tactical-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    z-index: 100;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    padding: 10px 0;
}

.tactical-options.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.tactical-option {
    padding: 15px 25px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.tactical-option:hover {
    background: rgba(0, 119, 182, 0.05);
    color: var(--primary);
    padding-left: 35px;
    border-left-color: var(--primary);
}

/* Scanning Pulse for Options */
.tactical-option:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.05), transparent);
    animation: hud-scan 2s linear infinite;
    pointer-events: none;
}

@keyframes hud-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tactical-option.is-selected {
    color: var(--primary);
    background: rgba(0, 119, 182, 0.05);
    border-left-color: var(--primary);
}

/* HUD Decorative Brackets logic for Dropdown */
.tactical-options .hud-corner {
    width: 12px;
    height: 12px;
    position: absolute;
    border: 1px solid var(--primary);
}
.tactical-options .hud-corner.tl { top: 0px; left: 0px; border-right: none; border-bottom: none; }
.tactical-options .hud-corner.tr { top: 0px; right: 0px; border-left: none; border-bottom: none; }
.tactical-options .hud-corner.bl { bottom: 0px; left: 0px; border-right: none; border-top: none; }
.tactical-options .hud-corner.br { bottom: 0px; right: 0px; border-left: none; border-top: none; }

/* Schematic Hover Zoom */
.schematic-zoom:hover {
    transform: scale(1.15);
}


/* Make Model Name Bigger */
.tile-designation { font-size: 1.6rem !important; letter-spacing: 0.5px !important; }





@media (max-width: 1200px) {
    .mobile-scroll-hint {
        display: block;
    }
}

/* --- Individual Card Technical Table --- */
.card-table-wrap {
    margin-top: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}

.card-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.card-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.card-table tr:last-child td {
    border-bottom: none;
}

.card-table .td-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 40%;
    background: rgba(15, 23, 42, 0.02);
}

.card-table .td-value {
    color: var(--text-main);
    font-weight: 700;
    text-align: right;
    font-family: 'Inter', monospace;
}

.card-table tr:hover td {
    background: rgba(0, 180, 216, 0.03);
}

.tile-footer-v2 {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}


/* Search Input Hover Effects */
.search-input-inner {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.search-input-inner:hover {
    background: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.1) !important;
}

.search-input-inner:focus-within {
    background: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2) !important;
    transform: translateY(-2px);
}

/* --- CINEMATIC MOTION PROTOCOL --- */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-down {
    transform: translateY(-50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered Delay System (Supports up to 10 items) */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }
.stagger-item:nth-child(7) { transition-delay: 0.7s; }
.stagger-item:nth-child(8) { transition-delay: 0.8s; }
.stagger-item:nth-child(9) { transition-delay: 0.9s; }
.stagger-item:nth-child(10) { transition-delay: 1s; }

/* --- REVEAL FALLBACK ---
   Ensures content is visible if JS fail to initialize or intersection observer misses its cue.
*/
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.reveal.reveal-force,
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Smooth Section Transitions */
section {
    overflow: hidden; /* Prevent reveal offsets from causing scrollbars */
}
