/* --- Root Variables dynamically matching Logo Palette --- */
:root {
    --primary-grey: #333333;
    --primary-blue: #0044cc;
    --light-bg: #ffffff;
    --subtle-border: #eef2f5;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Resets & Anti-Emptiness Base Structure --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Top Utility Bar Styling --- */
.top-bar {
    background-color: var(--primary-grey);
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-blue);
}

.top-info, .top-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-info a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-info a:hover, .top-info i {
    color: var(--primary-blue);
}

.top-info i {
    margin-right: 6px;
}

.laser-tag {
    background: rgba(0, 68, 204, 0.2);
    border: 1px solid var(--primary-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.5px;
    animation: pulseGlow 2s infinite;
}

.quick-call {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* --- Main Navigation Bar Styling --- */
.nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--subtle-border);
    position: relative;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* Sticky Class triggered via JS */
.nav-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

/* Logo Structure */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Footer Logo Sizing --- */
.footer-logo-img {
    max-width: 200px; /* You can adjust this number to make the logo larger or smaller */
    height: auto;
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-grey);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Desktop Menu Layout */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-grey);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

/* Modern underline tracking effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.dropdown-icon {
    font-size: 11px;
    margin-left: 4px;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* --- Anti-Empty Mega Menu System --- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 90%;
    max-width: 1100px;
    background: #ffffff;
    border-top: 3px solid var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 30px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 30px;
}

.mega-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-grey);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--subtle-border);
    padding-bottom: 8px;
}

.mega-col h4 i {
    color: var(--primary-blue);
    margin-right: 6px;
}

.mega-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.mega-col a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Highlight Panel for Custom Services */
.custom-solutions-box {
    background: linear-gradient(135deg, #f8fafd 0%, #edf3fc 100%);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-blue);
}

.custom-solutions-box h4 {
    border: none;
    color: var(--primary-blue);
}

.custom-solutions-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.mega-cta-btn {
    display: inline-block !important;
    background-color: var(--primary-grey) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.mega-cta-btn:hover {
    background-color: var(--primary-blue) !important;
    padding-left: 16px !important;
}

/* --- Header Action Elements --- */
.btn-quote {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.2);
}

.btn-quote:hover {
    background-color: var(--primary-grey);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.2);
    transform: translateY(-2px);
}

.btn-quote i {
    transition: var(--transition-smooth);
}

.btn-quote:hover i {
    transform: translateX(5px);
}

/* Mobile Toggle Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-grey);
    transition: var(--transition-smooth);
}

/* --- Animation Animations --- */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 68, 204, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 68, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 68, 204, 0); }
}

/* --- Hide Mobile Elements on Desktop --- */
.mobile-menu-header, .mobile-menu-footer {
    display: none;
}

/* --- Responsive Breakpoints (Mobile Friendly) --- */
@media (max-width: 992px) {
    .top-bar {
        display: none; 
    }

    /* Hide the Quote Button on Mobile */
    .btn-quote {
        display: none; 
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Restructured Mobile Drawer as a Flexbox Column */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        padding: 0;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile Header Styling */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 24px;
        border-bottom: 1px solid var(--subtle-border);
        background-color: var(--light-bg);
    }

    .mobile-logo {
        height: 40px;
        width: auto;
    }

    /* Navigation List */
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 24px;
        flex-grow: 1; /* Pushes the footer to the bottom */
    }

    .nav-link {
        font-size: 16px;
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    /* --- Replace the mega-menu section in your Mobile Media Query with this --- */
    
    .nav-list li {
        width: 100%; /* Ensures all list items strictly stay within the drawer */
    }

    /* Mega Menu adjustments for mobile */
    .mega-menu {
        position: static !important;
        transform: none !important; /* Kills the desktop hover shift */
        left: 0 !important;
        width: 100%;
        box-sizing: border-box;
        box-shadow: none;
        padding: 15px 15px 15px 20px;
        display: none; 
        border-top: none;
        border-left: 3px solid var(--primary-blue);
        margin-top: 5px;
        border-radius: 4px;
        background-color: #f8fafd;
    }
    
    /* Force override any hover states dragging it left */
    .dropdown:hover .mega-menu,
    .dropdown.active .mega-menu {
        display: block !important;
        transform: none !important; 
        left: 0 !important;
    }

    /* Optional: Removes that black focus box around "Products" when clicked */
    .nav-link:focus {
        outline: none;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 15px; /* Slightly tighter gap for mobile */
    }

    .mega-col h4 {
        margin-bottom: 10px;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile Footer Styling (Contact & Socials) */
    .mobile-menu-footer {
        display: block;
        padding: 24px;
        background-color: #f8fafd;
        border-top: 1px solid var(--subtle-border);
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .mobile-contact a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-contact a i {
        color: var(--primary-blue);
        font-size: 16px;
    }

    .mobile-socials {
        display: flex;
        gap: 12px;
    }

    .mobile-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background-color: #eef2f5;
        color: var(--primary-grey);
        border-radius: 50%;
        text-decoration: none;
        transition: var(--transition-smooth);
    }

    .mobile-socials a:hover {
        background-color: var(--primary-blue);
        color: #ffffff;
        transform: translateY(-2px);
    }

    /* Animated Hamburger to X Close icon */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-blue);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-blue);
    }
}








/* --- HERO SECTION STYLES --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh; /* Responsive height */
    min-height: 600px;
    background-color: var(--primary-grey);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark gradient overlay for text readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 15px;
}

/* --- Slide Typography & Animations --- */
.slide-subtitle {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(0, 68, 204, 0.15);
    padding: 6px 16px;
    border-left: 3px solid var(--primary-blue);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-title {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s; /* Delayed start */
}

.slide-title span {
    color: var(--primary-blue);
}

.slide-desc {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.slide-actions {
    display: flex;
    gap: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

/* Trigger Animations ONLY when slide is active */
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-blue);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-grey);
}

/* --- Swiper Customization --- */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-blue) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-blue);
    color: #ffffff !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue) !important;
    opacity: 1 !important;
    width: 25px !important;
    border-radius: 5px !important;
}

/* --- Mobile Adjustments for Hero --- */
@media (max-width: 992px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-desc {
        font-size: 15px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important; /* Hide arrows on mobile to save space */
    }
}

















/* --- ABOUT SECTION STYLES --- */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    overflow: hidden; /* Prevents animation overflow */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section Typography */
.section-subtitle {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle i {
    margin-right: 8px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: var(--primary-grey);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-blue);
}

.about-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-desc strong {
    color: var(--primary-grey);
}

.mt-4 {
    margin-top: 20px;
}

/* --- Layered Visual Composition --- */
.about-visuals {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    z-index: 1;
}

.sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 2;
    border: 10px solid var(--light-bg);
    border-radius: 14px; /* Slightly larger to account for border */
}

/* Glassmorphism Floating Badge */
.floating-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 68, 204, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    background-color: var(--primary-blue);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.badge-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-grey);
}

.badge-desc {
    display: block;
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Interactive Bento Grid --- */
.feature-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bento-card {
    background-color: #f8fafd;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--subtle-border);
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 68, 204, 0.08);
    border-color: rgba(0, 68, 204, 0.2);
}

.bento-card i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.bento-card h4 {
    color: var(--primary-grey);
    font-size: 16px;
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.highlight-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-grey) 0%, #1a1a1a 100%);
    border: none;
}

.highlight-card i {
    color: #ffffff;
}

.highlight-card h4 {
    color: #ffffff;
}

.highlight-card p {
    color: #cccccc;
}

/* Scroll Reveal Initial States */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visuals {
        min-height: 400px;
        order: -1; /* Forces image to top on mobile */
    }

    .floating-badge {
        right: 10px;
        top: 20px;
        padding: 10px 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .feature-bento {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        grid-column: span 1;
    }
}















/* --- VERTICAL PILLAR PRODUCTS SECTION --- */
.products-pillar-section {
    padding: 100px 0;
    background-color: #f8fafd;
}

.pillar-container {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 15px;
}

/* Base Pillar Styling */
.pillar-panel {
    position: relative;
    flex: 0 0 80px; /* Slim 80px width when closed */
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Active (Expanded) Pillar */
.pillar-panel.active {
    flex: 1; /* Takes up remaining space */
    cursor: default;
}

/* Overlay for text readability */
.pillar-overlay {
    position: absolute;
    inset: 0; /* Shorthand for top, right, bottom, left 0 */
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(26,26,26,0.9) 100%);
    transition: var(--transition-smooth);
}

.pillar-panel:not(.active):hover .pillar-overlay {
    background: rgba(0, 68, 204, 0.5); /* Blue tint on hover for closed pillars */
}

/* --- Vertical Title (For Closed State) --- */
.pillar-vertical-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.pillar-vertical-title h3 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
    /* This creates the bottom-to-top vertical text */
    writing-mode: vertical-rl;
    transform: rotate(180deg); 
    text-transform: uppercase;
}

/* Hide vertical text when panel is expanded */
.pillar-panel.active .pillar-vertical-title {
    opacity: 0;
    pointer-events: none;
}

/* --- Expanded Content (For Active State) --- */
.pillar-expanded-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none; /* Prevents clicking invisible elements */
}

.pillar-panel.active .pillar-expanded-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Waits for pillar to expand before showing text */
    pointer-events: auto;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 68, 204, 0.4);
}

.pillar-text h3 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.pillar-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 500px;
}

.pillar-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.pillar-link:hover {
    background-color: #ffffff;
    color: var(--primary-grey);
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .pillar-container {
        flex-direction: column; /* Stack vertically on mobile */
        height: 75vh; 
        min-height: 500px;
    }

    .pillar-panel {
        flex: 0 0 60px; /* Slim horizontal strips when closed */
    }

    /* Change Vertical Text to Horizontal for Mobile */
    .pillar-vertical-title {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .pillar-vertical-title h3 {
        writing-mode: horizontal-tb; /* Resets to normal reading */
        transform: none;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .pillar-expanded-content {
        flex-direction: column;
        align-items: flex-start;
        left: 20px; right: 20px; bottom: 20px;
        gap: 15px;
    }

    .pillar-icon {
        width: 45px; height: 45px; min-width: 45px; font-size: 18px;
    }

    .pillar-text h3 { font-size: 24px; }
}








/* --- DARK THEME INDUSTRIES SECTION --- */
.industries-section {
    padding: 100px 0;
    background-color: #111111; /* Sleek Dark Theme */
    color: #ffffff;
}

.ind-split-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* --- Left: Sticky Visual Panel --- */
.ind-visual-panel {
    flex: 1;
    position: sticky;
    top: 120px; /* Stays fixed while scrolling the right side */
    height: 70vh;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #1a1a1a;
}

.ind-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 4s ease;
}

.ind-img.active {
    opacity: 1;
    transform: scale(1); /* Creates a subtle cinematic zoom-out effect when activated */
}

/* Add a tech-like grid overlay to the images */
.ind-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 68, 204, 0.2) 0%, rgba(0,0,0,0.5) 100%);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    pointer-events: none;
}

/* --- Right: Interactive Industry List --- */
.ind-content-panel {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px; /* Extra padding so the last item can be scrolled up */
}

.ind-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Tech border line on the left */
.ind-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #333333;
    transition: var(--transition-smooth);
}

.ind-item:hover, .ind-item.active {
    background-color: #222222;
    transform: translateX(10px);
    border-color: #333333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.ind-item.active::before {
    background-color: var(--primary-blue);
    box-shadow: 0 0 15px var(--primary-blue); /* Neon glow effect */
}

.ind-icon {
    font-size: 32px;
    color: #666666;
    transition: var(--transition-smooth);
}

.ind-item:hover .ind-icon, .ind-item.active .ind-icon {
    color: var(--primary-blue);
}

.ind-text {
    flex-grow: 1;
}

.ind-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
}

.ind-text p {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.ind-item.active .ind-text p {
    color: #cccccc;
}

.ind-arrow {
    font-size: 18px;
    color: #444444;
    transition: var(--transition-smooth);
}

.ind-item:hover .ind-arrow, .ind-item.active .ind-arrow {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .ind-split-layout {
        flex-direction: column;
    }

    .ind-visual-panel {
        position: relative; /* Disables sticky on mobile */
        top: 0;
        width: 100%;
        height: 350px;
        min-height: 350px;
        margin-bottom: 20px;
    }

    .ind-item {
        padding: 20px;
        gap: 15px;
    }

    .ind-icon {
        font-size: 24px;
    }

    .ind-text h3 {
        font-size: 18px;
    }
    
    .ind-item:hover, .ind-item.active {
        transform: translateX(5px); /* Less dramatic shift on mobile */
    }
}











/* --- CNC & WORKSHOP SECTION --- */
.workshop-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Technical Blueprint Grid Background */
.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 68, 204, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 68, 204, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.workshop-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.workshop-content {
    flex: 1;
}

.workshop-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Custom Tech List */
.tech-list {
    list-style: none;
    margin-bottom: 40px;
}

.tech-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.tech-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.08);
}

.tech-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: rgba(0, 68, 204, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.tech-info h4 {
    color: var(--primary-grey);
    font-size: 18px;
    margin-bottom: 5px;
}

.tech-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* --- Interactive 3D Tilt Visual --- */
.workshop-visual {
    flex: 1;
    perspective: 1000px; /* Required for 3D effect */
}

.tilt-wrapper {
    position: relative;
    border-radius: 12px;
    transform-style: preserve-3d; /* Allows children to float in 3D space */
    transition: transform 0.1s ease; /* Fast transition for smooth mouse follow */
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.workshop-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid var(--subtle-border);
}

/* Floating Glass Data Panel */
.floating-tech-panel {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #333333;
    padding: 25px;
    border-radius: 8px;
    width: 250px;
    transform: translateZ(50px); /* Pushes the panel out toward the user in 3D */
    box-shadow: 20px 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* Animated Laser Scan Line */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue), 0 0 20px var(--primary-blue);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.floating-tech-panel h5 {
    color: var(--primary-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333333;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
}

.spec-row span {
    color: #999999;
}

.spec-row .spec-val {
    color: #ffffff;
    font-family: monospace;
    font-size: 14px;
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .workshop-layout {
        flex-direction: column;
    }

    .tilt-wrapper {
        transform: none !important; /* Disable 3D tilt on mobile */
    }

    .floating-tech-panel {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        transform: translateZ(0); /* Flatten for mobile */
    }
}





/* --- MODERN SITE FOOTER --- */
.site-footer {
    background-color: #111111; /* Deep industrial dark */
    color: #cccccc;
    padding-top: 80px;
    border-top: 4px solid var(--primary-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #aaaaaa;
}

.footer-desc strong {
    color: #ffffff;
}

/* Social Media Circles */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #222222;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid #333333;
}

.footer-socials a:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.footer-links i {
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Contact List Formatting */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-list i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 4px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-text strong {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-text span, 
.contact-text a {
    color: #aaaaaa;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-blue);
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid #222222;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #777777;
    font-size: 13px;
}

/* Back to Top Button */
.back-to-top {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
}



















/* --- LIGHT ARCHITECTURAL BANNER STYLES --- */
.architectural-banner {
    background-color: var(--light-bg); /* Clean white background */
    padding: 60px 0 80px 0; 
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Left: Typography --- */
.banner-typography {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.tech-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.tech-breadcrumb a:hover {
    color: var(--primary-blue);
}

.tech-breadcrumb .divider {
    color: #cccccc; /* Lighter divider for light mode */
}

.tech-breadcrumb .current {
    color: var(--primary-blue);
}

.monumental-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 65px;
    line-height: 1.1;
    color: var(--primary-grey); /* Swapped from white to deep grey */
    margin-bottom: 30px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.monumental-title .blue-text {
    color: var(--primary-blue);
}

.banner-lead {
    color: var(--text-muted); /* Darker text for readability */
    font-size: 18px;
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 50px;
    border-left: 3px solid var(--primary-blue); /* Changed from dark grey to blue for a pop of color */
    padding-left: 20px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0; 
}

/* Custom Scroll Mouse Indicator */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid #bbbbbb; /* Lighter border */
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

.scroll-text {
    color: #888888; /* Darker for light background */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* --- Right: Machined Visual --- */
.banner-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.machined-image-wrapper {
    position: relative;
    width: 90%;
    height: 600px;
    z-index: 2;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Added subtle shadow since background is white */
}

.machined-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%); /* Softened the filter slightly for light mode */
    transition: filter 0.5s ease;
}

.machined-image-wrapper:hover .machined-img {
    filter: grayscale(0%) contrast(100%);
}

.tech-badge {
    position: absolute;
    bottom: 40px;
    left: 0px; 
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 10px 10px 30px rgba(0, 68, 204, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

/* Decorative Background Lines - Inverted for light background */
.deco-line {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.05); /* Dark lines with very low opacity */
    z-index: 1;
}

.line-horizontal {
    width: 150%;
    height: 1px;
    top: 20%;
    right: -20%;
}

.line-vertical {
    width: 1px;
    height: 150%;
    top: -20%;
    right: 20%;
}

/* --- Load Animations --- */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .banner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .architectural-banner {
        padding-top: 40px;
        min-height: auto;
    }

    .monumental-title {
        font-size: 42px;
    }

    .banner-visual {
        justify-content: center;
    }

    .machined-image-wrapper {
        width: 100%;
        height: 400px;
        clip-path: polygon(5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%, 0 5%);
    }
    
    .tech-badge {
        left: 20px;
        bottom: 20px;
    }
}

























/* --- MISSION, VISION, GOALS SECTION (MAGNETIC SPOTLIGHT) --- */
.vmg-section {
    padding: 100px 0;
    background-color: #0a0a0a; /* Ultra-dark background for the glow to pop */
    position: relative;
    overflow: hidden;
}

/* Background ambient glow */
.vmg-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 68, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.vmg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* The outer card acts as the border container for the glow effect */
.vmg-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    position: relative;
    padding: 2px; /* This padding becomes the border width */
    overflow: hidden;
    cursor: default;
}

/* The magic pseudo-element that creates the spotlight border */
.vmg-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The JS will update these --mouse-x and --mouse-y variables */
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y), 
        rgba(0, 68, 204, 0.8), /* Electric Blue glow */
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.vmg-grid:hover .vmg-card::before {
    opacity: 1; /* Reveals the border glow when mouse is over the grid */
}

/* The inner card holds the actual content and covers the center of the glow */
.vmg-card-inner {
    background-color: #111111;
    border-radius: 14px; /* Slightly less than outer to fit inside */
    padding: 50px 40px;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Second magic pseudo-element for the faint internal spotlight */
.vmg-card-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y), 
        rgba(0, 68, 204, 0.06), /* Very faint blue for the inside */
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.vmg-grid:hover .vmg-card-inner::before {
    opacity: 1;
}

/* Content Styling */
.vmg-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 68, 204, 0.1);
    border: 1px solid rgba(0, 68, 204, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.vmg-card:hover .vmg-icon-wrapper {
    transform: translateY(-5px);
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.3);
}

.vmg-title {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
}

.vmg-desc {
    color: #999999;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.vmg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmg-list li {
    color: #999999;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vmg-list i {
    color: var(--primary-blue);
    font-size: 14px;
    margin-top: 3px;
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .vmg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vmg-card-inner {
        padding: 40px 30px;
    }
}




























/* --- MATERIALS & CAPABILITIES SECTION --- */
.capabilities-section {
    padding: 100px 0;
    background-color: #f8fafd; /* Very soft grey to contrast with the white cards */
}

/* --- The Material Arsenal Dashboard --- */
.materials-arsenal {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    margin-bottom: 50px;
    border: 1px solid var(--subtle-border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arsenal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--subtle-border);
    padding-bottom: 15px;
}

.arsenal-header i {
    color: var(--primary-blue);
    font-size: 20px;
}

.arsenal-header h4 {
    color: var(--primary-grey);
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Individual Material Pills */
.m-tag {
    background-color: #f0f4f8;
    color: var(--primary-grey);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    cursor: default;
}

.m-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.m-tag i {
    color: #888888;
}

/* Custom Metal Colors */
.brass-tag:hover { border-color: #b5a642; color: #b5a642; background-color: #fff; }
.brass-tag:hover i { color: #b5a642; }

.copper-tag:hover { border-color: #b87333; color: #b87333; background-color: #fff; }
.copper-tag:hover i { color: #b87333; }

/* Special Exotic Alloys */
.tag-divider {
    width: 2px;
    height: 24px;
    background-color: #e0e0e0;
    margin: 0 10px;
}

.special-alloy {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002266 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 68, 204, 0.2);
}

.special-alloy:hover {
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.4);
}

/* --- Product Category Bento Grid --- */
.category-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bento-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--subtle-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle blue top-border on hover */
.bento-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bento-category:hover::before {
    transform: scaleX(1);
}

.bento-cat-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 68, 204, 0.08);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.bento-category h3 {
    color: var(--primary-grey);
    font-size: 20px;
    font-family: 'Orbitron', sans-serif;
}

/* List Styling */
.bento-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-item-list li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--subtle-border);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.bento-item-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bento-item-list li i {
    color: var(--primary-blue);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.bento-category:hover .bento-item-list li i {
    transform: translateX(4px);
}

.bento-item-list li:hover {
    color: var(--primary-blue);
}

/* --- Highlighted Dark Bento Box (Workshop) --- */
.highlight-bento {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    border-color: #333333;
    color: #ffffff;
}

.highlight-bento h3 {
    color: #ffffff;
}

.highlight-bento .bento-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.bento-desc {
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-list li {
    color: #cccccc;
    border-bottom-color: #333333;
}

.highlight-list li i {
    color: #00cc66; /* Green checkmarks to signify capability/approval */
    font-size: 14px;
}

.highlight-bento:hover .highlight-list li i {
    transform: none; /* Keep checkmarks static */
}

.highlight-list li:hover {
    color: #ffffff;
}

/* --- Mobile Adjustments --- */
@media (max-width: 1200px) {
    .category-bento-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
    }
}

@media (max-width: 768px) {
    .category-bento-grid {
        grid-template-columns: 1fr; /* Stack vertically on phones */
    }
    
    .tag-divider {
        display: none; /* Hide divider on small screens to allow natural wrapping */
    }
}


















.quality-bridge {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.bridge-card {
    background: linear-gradient(135deg, #0044cc 0%, #002266 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.bridge-content { z-index: 1; max-width: 600px; }
.bridge-tag { color: #aaccff; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }
.bridge-content h3 { font-family: 'Orbitron', sans-serif; font-size: 36px; margin: 15px 0; }
.bridge-content p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 30px; }

.bridge-actions { display: flex; align-items: center; gap: 30px; }
.cert-icons { display: flex; gap: 20px; font-size: 14px; font-weight: 600; opacity: 0.8; }

.bridge-visual { font-size: 120px; color: rgba(255,255,255,0.1); z-index: 0; }

@media (max-width: 768px) {
    .bridge-card { padding: 40px; flex-direction: column; text-align: center; }
    .bridge-actions { flex-direction: column; gap: 20px; }
    .bridge-visual { display: none; }
}

/* --- UPGRADED GLOW SWEEP BUTTON --- */
.btn-glow-hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* The shine that sweeps across the button */
.btn-glow-hover::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-glow-hover:hover {
    background-color: #0033aa; /* Slightly darker blue on hover */
    box-shadow: 0 0 25px rgba(0, 68, 204, 0.7); /* Outer glow */
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-glow-hover:hover::before {
    left: 100%; /* Sweeps the shine to the right */
}

.btn-glow-hover i {
    transition: transform 0.3s ease;
}

.btn-glow-hover:hover i {
    transform: translateX(6px); /* Arrow slides right */
}

/* --- UPGRADED RIGHT SIDE: TECH HUD --- */
.bridge-visual-complex {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    margin-right: 20px;
}

.tech-ring {
    position: absolute;
    border-radius: 50%;
}

/* Dashed outer ring */
.ring-outer {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    animation: spinSlow 25s linear infinite;
}

/* Solid inner ring with a bright accent edge */
.ring-inner {
    width: 65%;
    height: 65%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid #aaccff;
    border-right: 2px solid #aaccff;
    animation: spinSlow 15s linear infinite reverse;
}

/* Glowing center piece */
.central-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 68, 204, 0.3);
    border: 1px solid rgba(0, 68, 204, 0.6);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 68, 204, 0.5), inset 0 0 15px rgba(0, 68, 204, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.central-badge i { 
    font-size: 26px; 
    margin-bottom: 5px; 
    color: #ffffff;
}

.central-badge span { 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
}

/* Floating icons around the rings */
.float-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #002266;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaccff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.float-1 { top: -5px; left: 30px; animation: floatObj 4s ease-in-out infinite; }
.float-2 { bottom: 30px; right: -10px; animation: floatObj 5s ease-in-out infinite 1s; }
.float-3 { bottom: 5px; left: 15px; animation: floatObj 4.5s ease-in-out infinite 0.5s; }

/* HUD Animations */
@keyframes spinSlow { 
    100% { transform: rotate(360deg); } 
}

@keyframes floatObj { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-12px); } 
}

/* Hide on mobile to save space */
@media (max-width: 992px) {
    .bridge-visual-complex {
        display: none;
    }
}

















/* --- MACHINE PARK CAPABILITIES SECTION --- */
.capabilities-park {
    padding: 100px 0;
    background-color: #111111;
    border-top: 1px solid #222222;
}

.machine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.machine-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: var(--transition-smooth);
}

.machine-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.machine-img-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.machine-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.machine-card:hover .machine-img-container img {
    transform: scale(1.05);
}

.machine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, #1a1a1a 100%);
}

.machine-info {
    padding: 0 40px 40px 40px;
    position: relative;
    margin-top: -30px;
    z-index: 2;
}

.machine-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.3);
}

.machine-info h3 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.machine-info p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Mini Tech Specs Table */
.tech-specs-mini {
    display: flex;
    gap: 20px;
    border-top: 1px solid #333333;
    padding-top: 20px;
}

.spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-item span {
    color: #666666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.spec-item strong {
    color: var(--primary-blue);
    font-family: monospace;
    font-size: 16px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .machine-grid {
        grid-template-columns: 1fr;
    }
    
    .machine-img-container {
        height: 250px;
    }
}


















/* --- FABRICATION PIPELINE SECTION --- */
.pipeline-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Engineering Graph Paper Background */
.blueprint-bg {
    position: absolute;
    inset: 0;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(0, 68, 204, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 68, 204, 0.03) 1px, transparent 1px);
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

/* --- Pipeline Layout --- */
.pipeline-wrapper {
    position: relative;
    margin: 60px 0 80px 0;
}

/* The horizontal track connecting the steps */
.laser-track {
    position: absolute;
    top: 45px; /* Aligns with the center of the icons */
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--subtle-border);
    z-index: 1;
}

/* The animated blue laser beam */
.laser-beam {
    height: 100%;
    width: 0;
    background-color: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Triggers the laser beam when hovering over the pipeline area */
.pipeline-wrapper:hover .laser-beam {
    width: 100%;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* --- Individual Pipeline Nodes --- */
.pipeline-node {
    background-color: #ffffff;
    border: 1px solid var(--subtle-border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.pipeline-node:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 68, 204, 0.08);
}

.node-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary-grey);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 3px solid #ffffff;
}

.pipeline-node:hover .node-number {
    background-color: var(--primary-blue);
}

.node-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: #f8fafd;
    border: 2px solid var(--subtle-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var(--primary-grey);
    transition: var(--transition-smooth);
}

.pipeline-node:hover .node-icon {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 68, 204, 0.3);
}

.pipeline-node h4 {
    color: var(--primary-grey);
    font-size: 18px;
    margin-bottom: 12px;
}

.pipeline-node p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}



/* --- Mobile Adjustments --- */
@media (max-width: 1100px) {
    .pipeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .laser-track {
        display: none; /* Hide connecting line on stacked layouts */
    }
}

@media (max-width: 768px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
}



















/* --- THE COMMITMENT STATEMENT --- */
.quality-statement {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.statement-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 80px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border-left: 6px solid var(--primary-blue);
    overflow: hidden;
}

.statement-bg-element {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 250px;
    color: rgba(0, 68, 204, 0.03);
    z-index: 0;
    line-height: 1;
}

.statement-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.statement-title {
    color: var(--primary-grey);
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
}

.statement-title span {
    color: var(--primary-blue);
}

.statement-text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.management-signoff {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.signoff-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-blue);
    margin-bottom: 10px;
}

.management-signoff strong {
    color: var(--primary-grey);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.management-signoff span {
    color: #888888;
    font-size: 14px;
}

/* --- TESTING PROTOCOLS (BENTO GRID) --- */
.testing-protocols {
    padding: 40px 0;
    background-color: #ffffff;
}

.protocol-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 30px;
}

.protocol-card {
    background-color: #f8fafd;
    border: 1px solid var(--subtle-border);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-tall {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
}

.protocol-card:hover {
    background-color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 68, 204, 0.08);
    transform: translateY(-5px);
}

.protocol-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.protocol-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(0, 68, 204, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: var(--transition-smooth);
}

.protocol-card:hover .protocol-icon {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 68, 204, 0.3);
}

.protocol-card h3 {
    color: var(--primary-grey);
    font-size: 20px;
    margin: 0;
}

.protocol-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.protocol-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    border-top: 1px solid var(--subtle-border);
    padding-top: 25px;
}

.protocol-features li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.protocol-features li i {
    color: #00cc66;
}

/* --- TRACEABILITY & MTC SECTION --- */
.mtc-traceability {
    padding: 0 0 40px 0;
    background-color: #ffffff;
}

.mtc-dashboard {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4d 100%);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 68, 204, 0.15);
}

.mtc-data-panel {
    flex: 1.5;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mtc-tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.mtc-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
}

.mtc-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.standards-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.standard-badge {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.mtc-graphics {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
}

.doc-icon-wrapper {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: floatDoc 4s ease-in-out infinite;
}

@keyframes floatDoc {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- COMPLETE RESPONSIVENESS (Media Queries) --- */

@media (max-width: 1200px) {
    .protocol-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-tall {
        grid-row: auto;
    }
    .card-wide {
        grid-column: span 2;
    }
    .mtc-data-panel {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .statement-wrapper {
        padding: 50px 40px;
    }
    
    .statement-title {
        font-size: 28px;
    }

    .mtc-dashboard {
        flex-direction: column;
    }
    
    .mtc-graphics {
        padding: 60px 40px;
        background: rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 768px) {
    .statement-wrapper {
        padding: 40px 25px;
        border-left-width: 4px;
    }
    
    .statement-text {
        font-size: 16px;
    }
    
    .statement-bg-element {
        font-size: 150px;
        top: -10px;
        right: 20px;
    }

    .protocol-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .card-wide {
        grid-column: span 1;
    }

    .protocol-card {
        padding: 30px 25px;
    }

    .mtc-data-panel {
        padding: 40px 25px;
    }
    
    .mtc-title {
        font-size: 26px;
    }
    
    .standards-badge-container {
        flex-direction: column;
        width: 100%;
    }
    
    .standard-badge {
        text-align: center;
        width: 100%;
    }

    .doc-icon-wrapper {
        font-size: 90px;
    }
}




















/* --- PRODUCT BANNER (Matches Reference Image) --- */
.product-banner {
    position: relative;
    height: 380px; /* Gives that wide, cinematic look */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deep Industrial Blue Overlay */
.banner-overlay-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deep industrial gradient: dark black to VEFLOX blue */
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(0, 86, 179, 0.65) 100%);
    z-index: 0;
}

.banner-centered-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeUp 0.8s ease forwards;
}

.product-banner-title {
    font-size: 56px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.product-breadcrumb {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.product-breadcrumb a:hover {
    color: #ffffff;
}

.product-breadcrumb .divider {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- PRODUCT PAGE LAYOUT --- */
.product-page-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* 1. Ensure the grid aligns items to the START, not stretch */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start; /* CRITICAL: If this is missing, sticky will fail */
}

/* 2. Apply sticky to the direct grid item, NOT the wrapper */
.product-sidebar {
    position: sticky;
    top: 110px; /* Adjust this if it hides behind your header */
    z-index: 10;
}

/* You can completely remove the old .sidebar-wrapper CSS rule */

.sidebar-menu-container {
    background-color: #f8fafd;
    border: 1px solid var(--subtle-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.sidebar-title {
    background-color: var(--primary-grey);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    padding: 22px 25px;
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid var(--subtle-border);
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-menu a i {
    font-size: 12px;
    color: #cccccc;
    transition: all 0.3s ease;
}

/* Sidebar Hover & Active States */
.sidebar-menu li:hover a,
.sidebar-menu li.active a {
    background-color: #ffffff;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 30px; /* Creates a smooth indent effect */
}

.sidebar-menu li:hover a i,
.sidebar-menu li.active a i {
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* Sidebar Contact Widget */
.sidebar-contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002266 100%);
    padding: 35px 30px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 68, 204, 0.2);
}

.sidebar-contact h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.sidebar-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

.sidebar-btn {
    background-color: #ffffff;
    color: var(--primary-grey);
    width: 100%;
    display: block;
    border: none;
    box-shadow: none;
}

.sidebar-btn:hover {
    background-color: #f0f0f0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-banner {
        height: 280px;
    }
    
    .product-banner-title {
        font-size: 38px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-sidebar {
        /* On mobile, the sidebar moves ABOVE the content so users can select a product quickly */
        order: -1; 
        margin-bottom: 20px;
    }
    
    .sidebar-wrapper {
        position: static; /* Disables sticky behavior on phones */
    }
}






















/* --- PRODUCT INTRO HEADER --- */
.product-intro-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.product-intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.product-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-intro-image:hover img {
    transform: scale(1.05);
}

.product-intro-text {
    flex: 1.2;
}

.product-main-title {
    font-size: 34px;
    color: var(--primary-grey);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
}

.product-lead-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--primary-grey);
    font-weight: 600;
    font-size: 15px;
}

.product-highlights li i {
    color: #00cc66; /* Trust-building green checkmarks */
    font-size: 14px;
}

/* --- PRODUCT SPECIFICATIONS TABLE --- */
.product-specs-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--subtle-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.specs-title {
    font-size: 24px;
    color: var(--primary-grey);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--subtle-border);
    padding-bottom: 15px;
}

.specs-title i {
    color: var(--primary-blue);
}

/* Makes table horizontally scrollable on small phone screens */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.industrial-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
    min-width: 600px; /* Prevents columns from crushing too tightly on mobile */
}

.industrial-table thead th {
    background-color: #f8fafd;
    color: var(--primary-grey);
    padding: 18px 25px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-blue); /* Solid blue line separates header */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.industrial-table tbody td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--subtle-border);
    color: var(--text-muted);
    line-height: 1.6;
}

.industrial-table tbody tr {
    transition: background-color 0.3s ease;
}

.industrial-table tbody tr:hover {
    background-color: #f4f8fc; /* Subtle blue highlight on row hover */
}

.industrial-table tbody td strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* --- Mobile Responsiveness for Content Area --- */
@media (max-width: 992px) {
    .product-intro-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-specs-section {
        padding: 30px 20px;
    }
}

















/* --- STRUCTURAL TYPES SECTION --- */
.product-types-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--subtle-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.types-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.type-card {
    background-color: #f8fafd;
    border: 1px solid var(--subtle-border);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Keeps image corners rounded */
    transition: var(--transition-smooth);
}

/* Image Wrapper & Hover Effect */
.type-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #eeeeee;
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.type-card:hover .type-card-image img {
    transform: scale(1.08); /* Smooth zoom effect on hover */
}

/* Floating Category Tag */
.type-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

/* Card Content Area */
.type-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.4s ease;
    z-index: 3;
}

.type-card:hover {
    background-color: #ffffff;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 68, 204, 0.08);
}

.type-card:hover::after {
    width: 40%; 
}

.type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.type-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #ffffff;
    border: 1px solid var(--subtle-border);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-grey);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.type-card:hover .type-icon-box {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 68, 204, 0.2);
}

.type-header h4 {
    color: var(--primary-grey);
    font-size: 18px;
    margin: 0;
}

.type-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

/* Technical Meta Footer */
.type-footer-meta {
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
    display: flex;
    align-items: center;
    margin-top: auto; /* Pushes footer to the bottom */
}

.type-footer-meta span {
    font-size: 12px;
    font-weight: 600;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
}

.type-footer-meta i {
    color: #00cc66; 
}

/* --- Responsive Layout Scales --- */
@media (max-width: 1200px) {
    .types-card-grid {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .product-types-section {
        padding: 30px 20px;
    }
    
    .type-card-image {
        height: 180px; /* Slightly shorter image on mobile */
    }
    
    .type-card-content {
        padding: 20px;
    }
}





















/* --- FEATURES & APPLICATIONS SECTION --- */
.product-features-apps-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--subtle-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

/* Dark Performance Banner */
.features-dark-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4d 100%);
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0, 68, 204, 0.15);
}

.feature-item {
    color: #ffffff;
    position: relative;
    padding-left: 60px; /* Leaves room for absolute positioned icon */
}

.f-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #aaccff;
}

.feature-item h5 {
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Applications Container & Grid */
.applications-container {
    padding-top: 10px;
}

.sub-heading-apps {
    font-size: 18px;
    color: var(--primary-grey);
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--subtle-border);
    padding-bottom: 10px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.ind-card {
    background-color: #f8fafd;
    border: 1px solid var(--subtle-border);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-card i {
    font-size: 24px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.ind-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-grey);
    transition: all 0.3s ease;
}

/* Hover Effects for Industry Tiles */
.ind-card:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.2);
}

.ind-card:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.ind-card:hover span {
    color: #ffffff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .features-dark-banner {
        grid-template-columns: 1fr; /* Stack features in the sidebar-heavy layout */
        gap: 25px;
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-features-apps-section {
        padding: 25px 20px;
    }
    
    .features-dark-banner {
        padding: 30px 20px;
    }
    
    .industry-grid {
        grid-template-columns: 1fr; /* Stack application cards on small phones */
    }
}






















/* --- CONTACT DETAILS SECTION --- */
.contact-details-section {
    padding: 100px 0;
    background-color: #f8fafd;
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid var(--subtle-border);
    border-radius: 12px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Make the phone section stretch across the bottom if needed */
.contact-card-wide {
    grid-column: span 2;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 68, 204, 0.08);
    border-color: var(--primary-blue);
}

/* New Flex Wrapper for Icon and Heading */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Prevents the icon box from shrinking */
    background: rgba(0, 68, 204, 0.06);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 0; /* Removed bottom margin as the wrapper handles it now */
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.2);
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-grey);
    font-size: 22px;
    margin-bottom: 0; /* Removed bottom margin so it vertically centers with the icon */
}

.contact-value {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-link-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-action:hover {
    color: #002266;
}

.highlight-link {
    font-size: 18px;
    word-break: break-all;
}

/* Phone Directory Styling */
.phone-directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.phone-item {
    background: #f8fafd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--subtle-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.3s ease;
}

.phone-item:hover {
    background: #ffffff;
    border-color: var(--primary-blue);
}

.phone-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 17px;
    color: var(--primary-grey);
    font-weight: 700;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--primary-blue);
}

/* --- MAP SECTION --- */
.contact-map-section {
    line-height: 0; /* Removes bottom gap under iframe */
    background: #eeeeee;
}

.contact-map-section iframe {
    width: 100%;
    filter: grayscale(100%) contrast(1.2); /* Gives the map an industrial, desaturated look */
    transition: filter 0.5s ease;
}

.contact-map-section iframe:hover {
    filter: grayscale(0%) contrast(1); /* Returns color when user interacts with map */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .phone-directory {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contact-details-section {
        padding: 60px 20px;
    }
    
    .contact-card {
        padding: 40px 30px;
    }
    
    .phone-directory {
        grid-template-columns: 1fr; /* Stacks phone numbers on mobile */
    }
}