    
        :root {
            --industrial-blue: #003366;
            --precision-silver: #c0c0c0;
            --safety-orange: #0dcaf0;
            --text-dark: #2b2d42;
            --text-light: #f8f9fa;
            --highlight: #0ea5e9;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.6;
        }
         h1, h2, h3, h4 {
            font-family: 'Inter', sans-serif;
          
        }


        .industrial-hero {
          height: 70vh;
            min-height: 500px;
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(135, 206, 235, 0.75) 100%), 
                        url('../images/wetransfer_blu-fashion_2025-07-31_0458/WOW00237-1280.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 0 5%;
            color: var(--white);
            position: relative;
            margin-top:20px;

        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .hero-content h1 {
            font-family: 'Inter', sans-serif;
             color: #fff;
             font-weight:700;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
           .hero-content h1::after {
           content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            margin-top: 15px; 
        }

        .hero-tagline {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .precision-badge {
            display: inline-block;
            background-color: var(--safety-orange);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-family: 'Inter', sans-serif;
            color: #000;
            position: relative;
            display: inline-block;
            font-size: 2.5rem;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--highlight);
        }

        .tech-specs {
            background-color: #f8f9fa;
            padding: 4rem 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .spec-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--highlight);
            transition: transform 0.3s ease;
        }

        .spec-card:hover {
            transform: translateY(-5px);
        }

        .spec-icon {
            font-size: 2.5rem;
            color: var(--highlight);
            margin-bottom: 1rem;
        }

        .service-showcase {
            padding: 6rem 0;
        }

        .service-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .service-tab {
            padding: 1rem 2rem;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .service-tab.active {
            border-bottom: 3px solid var(--highlight);
            color: var(--highlight);
        }

        .service-content {
            display: none;
        }

        .service-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .quality-assurance {
            background-color: var(--industrial-blue);
            color: white;
            padding: 6rem 0;
        }

        .qa-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }

        .qa-badge {
            background-color: var(--safety-orange);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 1rem;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }

        .comparison-table th, .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }

        .comparison-table th {
            background-color: var(--industrial-blue);
            color: white;
        }

        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .tech-features {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }

        .feature-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .feature-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .feature-content {
            padding: 2rem;
        }

        .feature-content h3 {
            font-family: 'Inter', sans-serif;
            color: var(--industrial-blue);
            margin-bottom: 1rem;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--highlight);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--industrial-blue);
            color: white;
        }

        .btn-outline-primary {
            background-color: transparent;
            color: var(--highlight);
            border: 2px solid var(--highlight);
        }

        .btn-outline-primary:hover {
            background-color: var(--highlight);
            color: white;
        }

        .btn-lg {
            padding: 15px 30px;
            font-size: 1.1rem;
        }
          li{
            list-style: none;
        }

        /* Animation for scroll-in effect */
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
            transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
        }
        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .industrial-hero {
                height: 60vh;
                padding: 40px 0 0 0;
            }
            .hero-content h1 {
                font-size: 2.1rem;
            }
            .hero-content {
                max-width: 100%;
                padding: 0 1rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .spec-grid, .qa-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feature-image {
                height: 180px;
            }
            /* Ensure mobile nav bar is correct and not overridden */
            .main-menu {
                top: 80px !important;
                height: calc(100vh - 80px) !important;
                padding-top: 30px !important;
            }
        }
        @media (max-width: 576px) {
            .industrial-hero {
                height: 50vh;
                padding: 20px 0 0 0;
                margin-top:70px;
            }
            .hero-content h1 {
                font-size: 1.2rem;
            }
            .precision-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }
            .feature-image {
                height: 120px;
            }
            .section-header h2 {
                font-size: 1.1rem;
            }
            .spec-card, .feature-card {
                padding: 1rem;
            }
        
             .tech-features .row {
            align-items: stretch;
            
        }
        .feature-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        
        }
        }

          /* Ensure all feature-cards are the same height */
        .tech-features .row {
            align-items: stretch;
            
        }
        .feature-card {
            height: 100%;
            display: flex;
            flex-direction: column;
                margin-bottom:20px;
        }
        .feature-image {
            flex-shrink: 0;
        }
        .feature-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
   