/*
Theme Name: Lio Custom Theme
Author: Trae AI
Description: Custom theme for Lio based on provided design.
Version: 1.0
*/

:root {
    --primary-blue: #1f4fbf;
    --dark-blue: #0d2a6b;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --bg-light: #f5f5f5;
    --bg-placeholder: #e0e0e0;
    --white: #ffffff;
    --border-color: #dddddd;
    --header-height: 108px;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset & Utilities */
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }
.text-center { text-align: center; }
.blue-text { color: var(--primary-blue); }
.bg-light { background-color: var(--bg-light); }
.section-padding { padding: 80px 0; }
.placeholder-img { background-color: var(--bg-placeholder); display: flex; align-items: center; justify-content: center; color: var(--text-gray); font-weight: 500; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 12px 30px; 
    border-radius: 4px; 
    transition: all 0.3s; 
    font-weight: 500; 
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}
.btn-primary { 
    background-color: var(--primary-blue); 
    color: var(--white); 
    border: 1px solid var(--primary-blue);
}
.btn-primary:hover { 
    background-color: #163a91; 
    border-color: #163a91;
}
.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}
.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 40px; font-size: 16px; }

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed; /* Fixed position as requested */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

body {
    padding-top: var(--header-height); /* Prevent content overlap */
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 24px;
    width: 100%;
}

/* Logo */
.site-branding { flex-shrink: 0; margin-right: 0; }
.custom-logo { height: 80px; width: auto; }
.text-logo { font-size: 32px; font-weight: 700; color: var(--primary-blue); letter-spacing: 0.5px; }

/* Navigation */
.main-navigation { display: flex; justify-content: center; justify-self: center; margin-right: 0; }
.main-navigation ul { display: flex; gap: 30px; align-items: center; }
.main-navigation ul li a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 2px;
}
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 4px;
    height: 2px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.main-navigation ul li a:hover,
.main-navigation ul li a:focus-visible {
    color: var(--primary-blue);
}
.main-navigation ul li a:hover::after,
.main-navigation ul li a:focus-visible::after {
    transform: scaleX(1);
}
.main-navigation li.current-menu-item > a,
.main-navigation li.current-menu-ancestor > a,
.main-navigation li.current_page_item > a,
.main-navigation li.current_page_ancestor > a,
.main-navigation li.current-menu-parent > a,
.main-navigation li.active > a {
    color: var(--primary-blue);
}
.main-navigation li.current-menu-item > a::after,
.main-navigation li.current-menu-ancestor > a::after,
.main-navigation li.current_page_item > a::after,
.main-navigation li.current_page_ancestor > a::after,
.main-navigation li.current-menu-parent > a::after,
.main-navigation li.active > a::after {
    transform: scaleX(1);
}

/* CTA */
.header-cta { flex-shrink: 0; }

/* Mobile Toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0; }
.bar { display: block; width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px 0; }

.blog-hero {
    padding: 90px 0 70px;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}
.blog-hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
}
.blog-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 320px;
}
.blog-hero-text { max-width: 640px; }
.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.blog-hero-graphic { display: flex; }
.blog-hero-graphic .globe-graphic {
    width: 860px;
    max-width: none;
    height: 400px;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    opacity: 0.95;
}

.category-tabs {
    display: flex;
    align-items: stretch;
    margin-top: 40px;
    max-width: none;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    background: var(--white);
    position: relative;
    z-index: 3;
}
.category-tabs .tab-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    color: var(--text-dark);
    text-align: center;
    flex: 1;
    min-height: 86px;
}
.category-tabs .tab-item:not(:first-child) { border-left: 1px solid #e6e8eb; }
.category-tabs .tab-cn { font-size: 16px; font-weight: 700; line-height: 1.2; }
.category-tabs .tab-en { margin-top: 6px; font-size: 12px; color: var(--text-gray); line-height: 1.2; }
.category-tabs .tab-item:hover,
.category-tabs .tab-item:focus-visible { color: var(--primary-blue); }
.category-tabs .tab-item:hover .tab-en,
.category-tabs .tab-item:focus-visible .tab-en { color: var(--primary-blue); opacity: 0.8; }
.category-tabs .tab-item.active {
    background-color: var(--primary-blue);
    color: var(--white);
}
.category-tabs .tab-item.active .tab-en { color: rgba(255,255,255,0.85); opacity: 1; }
.category-tabs .tab-item.active:hover,
.category-tabs .tab-item.active:focus-visible {
    background-color: #163a91;
    color: var(--white);
}


.category-tabs .tab-item.is-primary { flex: 0 0 260px; }

@media (min-width: 992px) {
    .blog-hero-graphic {
        position: absolute;
        top: 14px;
        right: -120px;
        z-index: 0;
        justify-content: flex-end;
        width: 860px;
        pointer-events: none;
    }
}

@media (max-width: 991px) {
    .blog-hero { padding: 70px 0 40px; }
    .blog-hero-inner { flex-direction: column; align-items: flex-start; min-height: 0; }
    .blog-hero-graphic { display: none; }
    .category-tabs { position: relative; }
}

@media (max-width: 768px) {
    .blog-hero { padding: 60px 0 30px; }
    .blog-hero-title { font-size: 36px; }
    .category-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    .category-tabs .tab-item { padding: 14px 18px; }
    .category-tabs .tab-item { flex: 0 0 auto; min-width: 160px; }
    .category-tabs .tab-item.is-primary { min-width: 200px; }
}

.blog-posts { padding: 50px 0 80px; }

.quote-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.quote-form-wrap .forminator-ui.forminator-custom-form {
    margin: 0;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: #f5f5f5; /* Light gray base as per design */
    overflow: hidden;
    position: relative;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.hero-content {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
    position: relative;
    z-index: 5;
}
.hero-title {
    font-size: 48px; /* Standard large size */
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 480px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--primary-blue);
}
.hero-actions { display: flex; gap: 15px; margin-bottom: 40px; }

.hero-image-wrapper { 
    flex: 1.2; 
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-img-placeholder { 
    width: 100%; 
    height: 450px; 
    border-radius: 4px;
    background: #e6e8eb;
}

/* Section Grids */
.section-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.section-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Feature Tiles (Homepage) */
.feature-tile {
    position: relative; 
    height: 240px; 
    background: #f9f9f9; 
    border-radius: 4px; 
    overflow: hidden;
}
.tile-img-placeholder { width: 100%; height: 100%; background: #e0e0e0; }
.tile-label {
    position: absolute; 
    bottom: 20px; 
    left: 20px; 
    background: white; 
    padding: 5px 15px; 
    border-radius: 20px; 
    color: var(--primary-blue); 
    font-weight: bold; 
    font-size: 14px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Process Tiles (Homepage) */
.process-section { padding-bottom: 60px; }
.process-tile {
    height: 200px; 
    background: var(--dark-blue); 
    border-radius: 4px; 
    display: flex; 
    align-items: center; 
    padding-left: 40px; 
    position: relative; 
    overflow: hidden;
}
.process-tile h3 {
    color: white; 
    font-size: 24px; 
    position: relative; 
    z-index: 2; 
    margin: 0;
}

.process-carousel { padding-bottom: 0; }

.process-carousel-viewport {
    position: relative;
    overflow: hidden;
}

.process-carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 480ms ease;
}

.process-carousel-slide {
    position: relative;
    flex: 0 0 100%;
    height: 500px;
    overflow: hidden;
}

.process-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 71, 171, 0.9) 0%, rgba(0, 71, 171, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}

.process-carousel-overlay h3 {
    color: #fff;
    font-size: 48px;
    margin: 0 0 10px;
    font-weight: 600;
}

.process-carousel-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 320px;
    margin: 0;
    line-height: 1.6;
}

.process-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    cursor: pointer;
    z-index: 2;
}

.process-carousel-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.process-carousel-prev { left: 16px; }
.process-carousel-prev::before { transform: translate(-50%, -50%) rotate(-135deg); }

.process-carousel-next { right: 16px; }

.process-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.process-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 0;
}

.process-carousel-dot.is-active {
    background: rgba(255, 255, 255, 0.95);
}

.process-banner {
    padding-bottom: 0;
}

.process-banner-stage {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.process-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 71, 171, 0.92) 0%, rgba(0, 71, 171, 0.25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}

.process-banner-overlay h3 {
    color: #fff;
    font-size: 48px;
    margin: 0 0 10px;
    font-weight: 600;
}

.process-banner-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 360px;
    margin: 0;
    line-height: 1.6;
}

.process-banner-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 18px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.process-banner-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.process-banner-item:hover,
.process-banner-item:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: rgba(0,71,171,0.35);
    outline: none;
}

.process-banner-item.is-active {
    border-color: rgba(0,71,171,0.65);
    box-shadow: 0 12px 30px rgba(0,71,171,0.12);
}

.process-banner-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.process-banner-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f1a2a;
}

.process-pair-carousel {
    padding: clamp(34px, 4vw, 72px) 0;
}

.process-pair-viewport {
    position: relative;
    overflow: hidden;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 clamp(14px, 2vw, 32px);
}

.process-pair-track {
    display: flex;
    gap: 18px;
    will-change: transform;
    transition: transform 520ms ease;
}

.process-pair-item {
    position: relative;
    flex: 0 0 calc((100% - 18px) / 2);
    height: clamp(420px, 30vw, 680px);
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.process-pair-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.92);
    color: #0f1a2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    transition: transform 160ms ease, background 160ms ease;
}

.process-pair-arrow span {
    font-size: 30px;
    line-height: 1;
    margin-top: -2px;
}

.process-pair-arrow:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.04);
}

.process-pair-arrow:active {
    transform: translateY(-50%) scale(0.98);
}

.process-pair-arrow-prev {
    left: clamp(10px, 1.2vw, 18px);
}

.process-pair-arrow-next {
    right: clamp(10px, 1.2vw, 18px);
}

.process-pair-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-pair-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 71, 171, 0.62), rgba(0, 71, 171, 0.42));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    text-align: center;
}

.process-pair-title {
    color: #fff;
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.process-pair-body {
    margin-top: 8px;
    max-width: 42ch;
    color: rgba(255,255,255,0.9);
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.6;
}

.process-pair-track.is-no-animate {
    transition: none;
}

.process-pair-cta {
    max-width: 1760px;
    margin: 18px auto 0;
    padding: 0 clamp(14px, 2vw, 32px);
    display: flex;
    justify-content: flex-start;
}

.process-pair-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    background: #eef2ff;
    color: #0047AB;
    border: 1px solid rgba(0, 71, 171, 0.18);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.process-pair-cta-btn:hover,
.process-pair-cta-btn:focus-visible {
    background: #e6efff;
    border-color: rgba(0, 71, 171, 0.28);
    transform: translateY(-1px);
    outline: none;
}

@media (max-width: 768px) {
    .process-carousel-slide { height: 380px; }
    .process-carousel-overlay { padding: 34px 22px; }
    .process-carousel-overlay h3 { font-size: 34px; }
    .process-carousel-overlay p { font-size: 14px; }

    .process-banner-stage { height: 380px; }
    .process-banner-overlay { padding: 34px 22px; }
    .process-banner-overlay h3 { font-size: 34px; }
    .process-banner-overlay p { font-size: 14px; }
    .process-banner-items {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px 16px 0;
        gap: 12px;
    }

    .process-pair-viewport { padding: 0 16px; }
    .process-pair-track { gap: 12px; }
    .process-pair-item { flex: 0 0 100%; height: 320px; }

    .process-pair-arrow {
        width: 40px;
        height: 40px;
    }

    .process-pair-arrow span {
        font-size: 26px;
    }
}

/* Engineering Section */
.engineering-section { position: relative; padding: 60px 0; }
.engineering-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}
.engineering-text {
    flex: 1; 
    padding-right: 40px;
}
.section-title { font-size: 32px; font-weight: bold; margin-bottom: 20px; color: #333; }
.engineering-image { flex: 1.5; position: relative; }
.engineering-img-placeholder { width: 100%; height: 400px; border-radius: 4px; background: #f9f9f9; }
.img-label {
    position: absolute; 
    bottom: 30px; 
    left: 30px; 
    background: #333; 
    color: white; 
    padding: 5px 15px; 
    font-size: 12px; 
    border-radius: 2px;
}

/* SLA & Service Info */
.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
}
.shadow-box { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.sla-time { font-size: 42px; font-weight: 700; color: var(--primary-blue); margin: 20px 0; }

/* Clients */
.clients-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.client-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}
.client-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.client-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
}

/* Cases */
.case-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.case-img { height: 180px; background: #eee; }
.case-txt { padding: 20px; }

/* CTA Section */
.cta-box {
    padding: 60px 40px;
    border: 1px solid #eee;
    background: var(--white);
    border-radius: 4px;
}
.cta-box h2 { font-size: 28px; margin-bottom: 10px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* Services Page Styles */
.services-detail-section {
    background-color: var(--white);
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.service-detail-card:last-child {
    margin-bottom: 0;
}
.service-detail-card.reverse-layout {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}
.service-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}
.service-text .lead {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 500;
}
.service-text p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-features li::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.service-image {
    flex: 1;
    height: 400px;
}

/* QA Grid */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.qa-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
}
.qa-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.qa-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Service Nav Grid (New Design) */
.service-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
}
.service-nav-item {
    position: relative;
    background-color: var(--dark-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.nav-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: all 0.3s;
}
.service-nav-item:hover .nav-overlay {
    background: rgba(31, 79, 191, 0.8); /* Primary blue on hover */
}
.nav-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}
.nav-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* Industry Solutions Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.industry-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.industry-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
}
.industry-detail p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}
.industry-detail strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

/* Tech Specs Box */
.specs-box {
    max-width: 900px;
    margin: 0 auto;
}
.spec-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.spec-row:last-child {
    border-bottom: none;
}
.spec-label {
    flex: 0 0 150px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 15px;
}
.spec-value {
    flex: 1;
    color: var(--text-dark);
    font-size: 15px;
}

/* Responsive for New Services Page */
@media (max-width: 992px) {
    .service-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .service-nav-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 150px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .section-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .spec-row {
        flex-direction: column;
    }
    .spec-label {
        margin-bottom: 5px;
    }
}

/* Quote Page Styles */
.quote-hero {
    background: #fff;
    padding: 0;
}

.quote-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 560px;
}

.quote-hero__media {
    position: relative;
    background-size: cover;
    background-position: left center;
    background-color: #fff;
    opacity: 1;
    filter: none;
}

.quote-hero__media::after {
    display: none;
}

.quote-hero__content {
    padding: clamp(56px, 7vw, 96px) 0;
    padding-left: clamp(18px, 5vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-hero__kicker {
    font-size: clamp(18px, 2.2vw, 28px);
    color: #6f8fda;
    font-weight: 500;
    margin-bottom: 12px;
}

.quote-hero__title {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 46px);
    line-height: 1.25;
    color: #4d8aff;
    font-weight: 600;
}

.quote-hero__title .quote-hero__em {
    color: var(--primary-blue);
    font-weight: 800;
}

.quote-hero__actions {
    margin-top: 26px;
}

.quote-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.quote-hero__btn:hover {
    background: #003b91;
    color: #fff;
}

.quote-hero__support {
    margin-top: 18px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.quote-hero__note {
    margin-top: 14px;
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

.quote-hero__note a {
    color: var(--primary-blue);
}

.quote-steps {
    padding: clamp(56px, 6vw, 90px) 0;
    background: #f6f8ff;
}

.quote-steps__title {
    text-align: center;
    margin: 0;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    color: #6f8fda;
    letter-spacing: 0.5px;
}

.quote-steps__title .quote-steps__em {
    color: var(--primary-blue);
    font-weight: 800;
}

.quote-steps__subtitle {
    text-align: center;
    margin: 12px 0 40px;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
}

.quote-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e9eefb;
    max-width: 1120px;
    margin: 0 auto;
}

.quote-step {
    background: #fff;
    padding: 36px 32px 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}

.quote-step:not(:first-child) {
    border-left: 1px solid #e9e9e9;
}

.quote-step__num {
    font-size: 54px;
    font-weight: 800;
    color: #d5d5d5;
    line-height: 1;
    margin-bottom: 18px;
}

.quote-step__title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
    color: #111;
    font-weight: 800;
}

.quote-step__desc {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.quote-step__icon {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.quote-step__icon img {
    height: 64px;
    width: auto;
    display: block;
}

@media (max-width: 992px) {
    .quote-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .quote-hero__media {
        display: none;
    }
    .quote-hero__content {
        padding-left: 0;
    }
    .quote-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-step:not(:first-child) {
        border-left: 0;
    }
    .quote-step:nth-child(2n) {
        border-left: 1px solid #e9e9e9;
    }
    .quote-step:nth-child(n+3) {
        border-top: 1px solid #e9e9e9;
    }
}

@media (max-width: 600px) {
    .quote-steps__grid {
        grid-template-columns: 1fr;
    }
    .quote-step {
        min-height: auto;
    }
    .quote-step:nth-child(2n) {
        border-left: 0;
    }
    .quote-step:nth-child(n+2) {
        border-top: 1px solid #e9e9e9;
    }
}

.quote-includes {
    padding: clamp(56px, 6vw, 90px) 0;
    background: #fff;
}

.quote-includes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 52px);
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
}

.quote-includes__left,
.quote-includes__right {
    border: 1px solid #c7d6ff;
    background: #f6f8ff;
    border-radius: 2px;
    padding: clamp(26px, 3.5vw, 40px);
}

.quote-includes__left-title,
.quote-includes__right-title {
    margin: 0 0 22px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.25;
}

.quote-includes__promises {
    display: grid;
    gap: 16px;
}

.quote-promise {
    background: #fff;
    border: 1px solid #e9eefb;
    border-radius: 2px;
    padding: 16px 18px;
}

.quote-promise__title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
}

.quote-promise__desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.quote-includes__extras {
    margin-top: 22px;
}

.quote-includes__extras-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.quote-includes__extras-list {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.quote-includes__list {
    display: grid;
    gap: 14px;
}

.quote-include {
    background: #fff;
    border: 1px solid #e9eefb;
    border-radius: 2px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
}

.quote-include__k {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.35;
}

.quote-include__v {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .quote-includes__grid {
        grid-template-columns: 1fr;
    }
}

.quote-clients {
    padding: clamp(64px, 7vw, 110px) 0;
    background: #fff;
}

.quote-clients__title {
    text-align: center;
    margin: 0 0 46px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #111;
}

.quote-clients__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(26px, 4vw, 56px);
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.quote-client__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.quote-client__logo img {
    max-height: 81px;
    width: auto;
    display: block;
    filter: none;
    opacity: 1;
}

.quote-faq {
    padding: clamp(56px, 6vw, 90px) 0;
    background: #fff;
}

.quote-faq__title {
    text-align: center;
    margin: 0 0 46px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #111;
}

.quote-faq__list {
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid #e9eefb;
}

.quote-faq__item {
    border-bottom: 1px solid #e9eefb;
    padding: 18px 0;
}

.quote-faq__item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    outline: none;
}

.quote-faq__item summary::-webkit-details-marker {
    display: none;
}

.quote-faq__item summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c7d6ff;
    border-radius: 999px;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1;
}

.quote-faq__item[open] summary::after {
    content: '–';
}

.quote-faq__a {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.quote-cta {
    padding: clamp(64px, 7vw, 110px) 0;
    background: #fff;
}

.quote-cta__box {
    max-width: 640px;
    margin: 0 auto;
    padding: 46px 56px;
    border: 1px solid #c7d6ff;
    background: #f6f8ff;
    border-radius: 2px;
    text-align: center;
}

.quote-cta__icon {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-cta__icon img {
    height: 44px;
    width: auto;
    display: block;
}

.quote-cta__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
}

.quote-cta__subtitle {
    margin: 0 0 26px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.quote-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 26px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.quote-cta__btn:hover {
    background: #003b91;
    color: #fff;
}

.quote-cta__links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.quote-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid #c7d6ff;
    background: #fff;
    color: var(--primary-blue);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.quote-cta__link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

@media (max-width: 768px) {
    .quote-clients__logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-client__logo img {
        max-height: 66px;
    }
    .quote-cta__box {
        padding: 36px 20px;
    }
}

@media (max-width: 420px) {
    .quote-clients__logos {
        grid-template-columns: 1fr;
    }
}

.process-steps .step-card {
    background: transparent;
    padding: 0 10px;
}
.process-steps .step-num {
    line-height: 1;
}

/* AI Features List */
.ai-list .check-list li {
    font-size: 15px;
    margin-bottom: 10px;
}

/* FAQ Accordion */
.faq-list .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-q {
    font-size: 16px;
    cursor: pointer; /* Prepared for JS interaction */
}

/* Factory Hero Split */
.factory-hero {
    background: white;
}
.hero-split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-text-content {
    flex: 1;
}
.hero-intro-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}
.hero-image-content {
    flex: 1;
}

/* Equipment Clean List */
.equipment-clean-list {
    border-top: 2px solid var(--primary-blue);
}
.equipment-row-header, .equipment-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr 1fr;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.equipment-row-header {
    background: #f9f9f9;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}
.equipment-row {
    font-size: 14px;
    color: var(--text-gray);
    transition: background 0.2s;
}
.equipment-row:hover {
    background: #f0f4ff;
}

/* Quality Columns */
.quality-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.quality-col h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-blue);
    padding-left: 10px;
}
.quality-col p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}
.quality-col p::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

/* Environment Grid */
.environment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.env-item {
    position: relative;
}
.env-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

/* Engineering Cards */
.engineering-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.eng-card {
    background: var(--dark-blue);
    color: white;
    padding: 20px 10px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s;
}
.eng-card:hover {
    transform: translateY(-5px);
    background: var(--primary-blue);
}
.eng-card h4 {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.eng-card-img {
    display: block;
    max-width: 90%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Process Steps Row */
.process-steps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 40px auto;
}
.step-item {
    text-align: center;
    width: 120px;
}
.step-icon {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    background: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 auto 10px;
}
.step-item p {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}
.step-arrow {
    color: #ccc;
    font-size: 20px;
}

/* Logistics Panels */
.logistics-panels {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.page-template-page-factory-php .logistics-section.section-padding,
.page-factory .logistics-section.section-padding {
    padding-top: 76px;
    padding-bottom: 70px;
}

.page-template-page-factory-php .logistics-section .logistics-panels,
.page-factory .logistics-section .logistics-panels {
    gap: 26px;
    margin-top: 34px;
}
.log-panel {
    background: var(--dark-blue);
    color: white;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-template-page-factory-php .logistics-section .log-panel,
.page-factory .logistics-section .log-panel {
    background: #fff;
    border: 2px solid rgba(0, 71, 171, 0.18);
    border-radius: 2px;
    padding: 32px 26px;
    min-height: 300px;
    color: var(--primary-blue);
    box-shadow: 0 16px 40px rgba(15, 40, 86, 0.12);
}
.log-panel.middle {
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.page-template-page-factory-php .logistics-section .log-panel.middle,
.page-factory .logistics-section .log-panel.middle {
    background: #fff;
    border: 2px solid rgba(0, 71, 171, 0.18);
    color: var(--primary-blue);
}
.log-panel h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.page-template-page-factory-php .logistics-section .log-panel h4,
.page-factory .logistics-section .log-panel h4 {
    color: var(--primary-blue);
    font-weight: 800;
    margin: 0 0 18px;
    line-height: 1.35;
}
.log-panel.middle h4 {
    color: var(--primary-blue);
}

.page-template-page-factory-php .logistics-section .log-panel.middle h4,
.page-factory .logistics-section .log-panel.middle h4 {
    color: var(--primary-blue);
}
.bubble-chart {
    position: relative;
    height: 150px;
}

.page-template-page-factory-php .logistics-section .bubble-chart,
.page-factory .logistics-section .bubble-chart {
    height: 190px;
}
.bubble {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.page-template-page-factory-php .logistics-section .bubble,
.page-factory .logistics-section .bubble {
    background: rgba(0, 71, 171, 0.08);
    border: 1px solid rgba(0, 71, 171, 0.16);
    color: var(--primary-blue);
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(15, 40, 86, 0.10);
}
.bubble.main { width: 80px; height: 80px; left: 50%; top: 50%; transform: translate(-50%, -50%); font-weight: bold; }
.bubble.sub1 { width: 60px; height: 60px; left: 10%; top: 10%; }
.bubble.sub2 { width: 50px; height: 50px; right: 10%; bottom: 10%; }

.page-template-page-factory-php .logistics-section .bubble.main,
.page-factory .logistics-section .bubble.main {
    width: 92px;
    height: 92px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.page-template-page-factory-php .logistics-section .bubble.sub1,
.page-factory .logistics-section .bubble.sub1 {
    width: 82px;
    height: 82px;
    left: 18px;
    top: 98px;
}

.page-template-page-factory-php .logistics-section .bubble.sub2,
.page-factory .logistics-section .bubble.sub2 {
    width: 82px;
    height: 82px;
    right: 18px;
    top: 98px;
}

.log-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.page-template-page-factory-php .logistics-section .log-logos,
.page-factory .logistics-section .log-logos {
    gap: 20px;
    margin: 18px auto 0;
    max-width: 420px;
    justify-items: center;
    align-items: center;
}

@media (max-width: 420px) {
    .page-template-page-factory-php .logistics-section .log-logos,
    .page-factory .logistics-section .log-logos {
        grid-template-columns: 1fr;
        max-width: 260px;
    }
}
.logo-text {
    font-weight: 900;
    font-size: 24px;
    color: #333;
    font-style: italic;
}

.page-template-page-factory-php .logistics-section .logo-text,
.page-factory .logistics-section .logo-text {
    color: var(--primary-blue);
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0.02em;
}

.page-template-page-factory-php .logistics-section .log-logo-img,
.page-factory .logistics-section .log-logo-img {
    width: 100%;
    max-width: 200px;
    height: 76px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.page-template-page-factory-php .logistics-section .log-logo-svg,
.page-factory .logistics-section .log-logo-svg {
    width: 100%;
    max-width: 200px;
    height: 76px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-template-page-factory-php .logistics-section .log-logo-img,
    .page-factory .logistics-section .log-logo-img,
    .page-template-page-factory-php .logistics-section .log-logo-svg,
    .page-factory .logistics-section .log-logo-svg {
        max-width: 190px;
        height: 68px;
    }
}

.page-template-page-factory-php .logistics-section .factory-logistics-footer,
.page-factory .logistics-section .factory-logistics-footer {
    margin-top: 22px;
    color: #111;
    opacity: 0.78;
}

/* Blog Hero */
.blog-hero {
    background: white;
}
.hero-text {
    flex: 1;
}
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.globe-graphic {
    border-radius: 50%;
}

/* Category Tabs */
.blog-tabs-section {
    border-bottom: 1px solid #eee;
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
}
.tab-item {
    padding: 20px 40px;
    text-align: center;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.tab-item:hover {
    color: var(--primary-blue);
}
.tab-item.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--primary-blue);
}
.tab-cn {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.tab-en {
    display: block;
    font-size: 12px;
    color: #999;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.card-image {
    height: 220px;
    background: #f5f5f5;
    color: #ccc;
}
.card-content {
    padding: 25px;
}
.entry-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.entry-title a {
    color: var(--text-dark);
}
.entry-title a:hover {
    color: var(--primary-blue);
}
.entry-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}
.entry-summary {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}
.read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
}
.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.page-numbers {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid transparent;
    color: var(--text-gray);
    font-size: 14px;
    border-radius: 4px;
}
.page-numbers.current {
    background: var(--primary-blue);
    color: white;
}
.page-numbers:hover:not(.current):not(.dots) {
    background: #f0f4ff;
    color: var(--primary-blue);
}
.page-numbers.next {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-graphic { justify-content: center; margin-top: 30px; }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-item { padding: 15px 20px; }
}
@media (max-width: 768px) {
    .article-grid { grid-template-columns: 1fr; }
    .category-tabs { flex-wrap: wrap; }
    .tab-item { width: 50%; border-bottom: 1px solid #eee; }
    .tab-item.active { border-bottom: 3px solid var(--primary-blue); }
}

/* Timeline Chart */
.about-timeline-section {
    background: white;
}
.timeline-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 600px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.timeline-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 5px;
    position: relative;
}
.bar-year {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 600;
}
.bar-visual {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: all 0.3s;
}
.timeline-bar-col:hover .bar-visual {
    filter: brightness(0.9);
}
.bar-desc {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
    line-height: 1.4;
    min-height: 60px; /* Ensure alignment */
}

/* About & Culture Split */
.split-layout {
    display: flex;
    gap: 80px;
}
.split-col {
    flex: 1;
}
.text-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}
.culture-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.culture-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 5px 0 0;
}
.culture-item strong {
    color: var(--text-dark);
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

/* Responsive About */
@media (max-width: 992px) {
    .timeline-chart { overflow-x: auto; justify-content: flex-start; gap: 20px; }
    .timeline-bar-col { min-width: 150px; }
    .split-layout { flex-direction: column; gap: 40px; }
}

/* Document Search */
.doc-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.doc-search-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px; /* Standard input radius */
    padding: 5px 15px;
    background: white;
}
.search-icon {
    font-size: 18px;
    color: #999;
    margin-right: 10px;
}
.search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
}
.search-field::placeholder {
    color: #ccc;
}

/* Spec Card Grid */
.spec-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.spec-card {
    aspect-ratio: 1 / 1; /* Square */
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.spec-card:hover {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.spec-card-inner {
    text-align: center;
    padding: 10px;
}
.spec-label {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
}

/* Contact Split Section */
.contact-split-layout {
    display: flex;
    gap: 50px;
}
.contact-form-col {
    flex: 3;
}
.contact-map-col {
    flex: 2;
}

/* Contact Form */
.custom-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.custom-contact-form .form-group {
    flex: 1;
    position: relative;
}
.custom-contact-form .form-group.full-width {
    width: 100%;
}
.custom-contact-form input, 
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
}
.custom-contact-form input:focus, 
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    background: white;
}
.required-tag {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #ccc;
    pointer-events: none;
}
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Contact Details */
.contact-details-grid {
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.detail-row {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
}
.detail-label {
    width: 100px;
    color: #999;
    flex-shrink: 0;
}
.detail-value {
    color: var(--text-gray);
}
.social-links a {
    margin-right: 15px;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-split-layout { flex-direction: column; }
    .contact-map-col { margin-top: 30px; }
}
@media (max-width: 768px) {
    .custom-contact-form .form-row { flex-direction: column; gap: 15px; }
    .form-actions { flex-direction: column; gap: 15px; }
    .form-actions .btn { width: 100%; text-align: center; }
}

/* Footer Responsive Fix */
@media (max-width: 992px) {
    .hero-split-layout { flex-direction: column; }
    .quality-columns { grid-template-columns: 1fr; }
    .environment-grid { grid-template-columns: repeat(2, 1fr); }
    .engineering-card-grid { grid-template-columns: repeat(3, 1fr); }
    .logistics-panels { grid-template-columns: 1fr; }
    .process-steps-row { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .step-arrow { display: none; }
}
@media (max-width: 768px) {
    .equipment-row-header { display: none; } /* Hide header on mobile */
    .equipment-row { grid-template-columns: 1fr; gap: 5px; padding: 15px; border: 1px solid #eee; margin-bottom: 10px; border-radius: 4px; }
    .environment-grid { grid-template-columns: 1fr; }
    .engineering-card-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Cert Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cert-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.cert-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 80px;
    height: 80px;
    line-height: 76px;
    border-radius: 50%;
    margin: 0 auto 20px;
}
.cert-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--text-dark);
}
.cert-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-gray);
}

/* Factory Gallery */
.factory-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
}
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
    color: #999;
}

/* Responsive Factory */
@media (max-width: 992px) {
    .cert-grid, .factory-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .cert-grid, .factory-gallery {
        grid-template-columns: 1fr;
    }
    .equipment-table {
        font-size: 12px;
    }
    .equipment-table th, .equipment-table td {
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .main-navigation { display: none; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    
    .hero-container, .engineering-grid { flex-direction: column; text-align: center; }
    .hero-content, .engineering-text { padding-right: 0; margin-bottom: 40px; max-width: 100%; }
    .hero-stats, .hero-actions { justify-content: center; }
    
    .section-grid-3, .section-grid-2 { grid-template-columns: 1fr; }

    .service-detail-card, 
    .service-detail-card.reverse-layout {
        flex-direction: column;
        gap: 30px;
    }
    .service-image {
        width: 100%;
        height: 300px;
    }
    .qa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .qa-grid {
        grid-template-columns: 1fr;
    }
}

.factory-hero .hero-split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.factory-hero .hero-text-content {
    flex: 0 0 44%;
    max-width: 520px;
}

.factory-hero .hero-intro-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
}

.factory-hero-highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.factory-hero .hero-image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.factory-hero-img {
    width: 100%;
    max-width: 760px;
    height: auto;
    display: block;
    border-radius: 2px;
}

.environment-section .factory-quote {
    margin: 10px 0 44px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
}

.factory-env-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.factory-env-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #111;
    height: clamp(260px, 26vw, 380px);
}

.factory-env-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.factory-env-placeholder {
    width: 100%;
    height: 100%;
    background: #e6e8eb;
}

.factory-env-overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 14px 16px;
    border-radius: 2px;
    max-width: calc(100% - 36px);
}

.factory-env-overlay-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.factory-env-overlay-subtitle {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.92;
}

.factory-env-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.factory-env-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}

.factory-env-dot.is-active {
    background: var(--primary-blue);
}

@media (max-width: 992px) {
    .factory-hero .hero-split-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    .factory-hero .hero-text-content {
        flex: 1;
        max-width: none;
    }
    .factory-env-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .factory-env-grid {
        grid-template-columns: 1fr;
    }
    .factory-env-card {
        height: clamp(240px, 62vw, 320px);
    }
}

.engineering-cap-section {
    background: #fff;
}

.factory-core-cap-title {
    margin: 30px 0 0;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.engineering-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1120px;
    margin: 26px auto 0;
}

.eng-card {
    background: var(--dark-blue);
    border-radius: 2px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eng-card h4 {
    margin: 0;
    padding: 20px 16px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.eng-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 16px;
    box-sizing: border-box;
}

.page-template-page-factory-php .engineering-cap-section .section-title,
.page-factory .engineering-cap-section .section-title {
    color: #111;
    font-size: 28px;
    margin-bottom: 6px;
}

.page-template-page-factory-php .engineering-cap-section .section-subtitle,
.page-factory .engineering-cap-section .section-subtitle {
    color: #111;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.page-template-page-factory-php .engineering-cap-section .factory-desc-sm,
.page-factory .engineering-cap-section .factory-desc-sm {
    color: #111;
    opacity: 0.75;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.page-template-page-factory-php .engineering-cap-section .factory-core-cap-title,
.page-factory .engineering-cap-section .factory-core-cap-title {
    margin: 22px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.page-template-page-factory-php .engineering-cap-section .engineering-card-grid,
.page-factory .engineering-cap-section .engineering-card-grid {
    gap: 22px;
    margin-top: 32px;
}

.page-template-page-factory-php .engineering-cap-section .eng-card,
.page-factory .engineering-cap-section .eng-card {
    background: var(--dark-blue);
    height: 180px;
    border: 1px solid rgba(15, 40, 86, 0.18);
    overflow: hidden;
    position: relative;
    padding: 0;
    border-radius: 2px;
    display: block;
}

.page-template-page-factory-php .engineering-cap-section .eng-card-img,
.page-factory .engineering-cap-section .eng-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    max-width: none;
    max-height: none;
}

.page-template-page-factory-php .engineering-cap-section .eng-card-overlay,
.page-factory .engineering-cap-section .eng-card-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 16px;
    pointer-events: none;
}

.page-template-page-factory-php .engineering-cap-section .eng-card-overlay h4,
.page-factory .engineering-cap-section .eng-card-overlay h4 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
    .page-template-page-factory-php .engineering-cap-section .eng-card,
    .page-factory .engineering-cap-section .eng-card {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .page-template-page-factory-php .engineering-cap-section .eng-card,
    .page-factory .engineering-cap-section .eng-card {
        height: 160px;
    }
}

.page-template-page-factory-php .footer-qa .qa-footer-grid,
.page-factory .footer-qa .qa-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(26px, 4vw, 80px);
    align-items: stretch;
    font-size: 14px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.page-template-page-factory-php .footer-qa .qa-left,
.page-template-page-factory-php .footer-qa .qa-right,
.page-factory .footer-qa .qa-left,
.page-factory .footer-qa .qa-right {
    background: #fff;
    border: 1px solid #e7ecf3;
    border-radius: 2px;
    padding: 22px 22px;
    box-shadow: 0 18px 40px rgba(15, 40, 86, 0.08);
}

.page-template-page-factory-php .footer-qa .qa-left h4,
.page-factory .footer-qa .qa-left h4 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.page-template-page-factory-php .footer-qa .qa-left .blue-text,
.page-template-page-factory-php .footer-qa .qa-left h4,
.page-factory .footer-qa .qa-left .blue-text,
.page-factory .footer-qa .qa-left h4 {
    color: var(--primary-blue);
}

.page-template-page-factory-php .footer-qa .qa-left h4 + p,
.page-factory .footer-qa .qa-left h4 + p {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    opacity: 1;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.page-template-page-factory-php .footer-qa .qa-left p,
.page-template-page-factory-php .footer-qa .qa-right p,
.page-factory .footer-qa .qa-left p,
.page-factory .footer-qa .qa-right p {
    margin: 0 0 14px;
    color: #111;
    opacity: 0.82;
    line-height: 1.9;
}

.page-template-page-factory-php .footer-qa .qa-right,
.page-factory .footer-qa .qa-right {
    background: #fff;
}

.page-template-page-factory-php .footer-qa.section-padding,
.page-factory .footer-qa.section-padding {
    padding-top: 54px;
    padding-bottom: 64px;
}

.page-template-page-factory-php .footer-qa .qa-left p:last-child,
.page-template-page-factory-php .footer-qa .qa-right p:last-child,
.page-factory .footer-qa .qa-left p:last-child,
.page-factory .footer-qa .qa-right p:last-child {
    margin-bottom: 0;
}

.page-template-page-factory-php .footer-qa .qa-right p,
.page-factory .footer-qa .qa-right p {
    padding-left: 16px;
    position: relative;
}

.page-template-page-factory-php .footer-qa .qa-right p::before,
.page-factory .footer-qa .qa-right p::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-blue);
    opacity: 0.95;
}

.page-template-page-factory-php .footer-qa .qa-right,
.page-factory .footer-qa .qa-right {
    text-align: left;
}

@media (max-width: 768px) {
    .page-template-page-factory-php .footer-qa .qa-footer-grid,
    .page-factory .footer-qa .qa-footer-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .page-template-page-factory-php .footer-qa .qa-left,
    .page-template-page-factory-php .footer-qa .qa-right,
    .page-factory .footer-qa .qa-left,
    .page-factory .footer-qa .qa-right {
        padding: 22px 20px;
    }
}

@media (max-width: 992px) {
    .engineering-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .engineering-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .engineering-card-grid {
        grid-template-columns: 1fr;
    }
}





/* Highlight Text (Hero) */
.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

/* 5-Column Grid */
.section-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Industry Tiles (Homepage) */
.industry-tile {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.industry-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}
.industry-icon {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}
.industry-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive Grid 5 */
@media (max-width: 992px) {
    .section-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .section-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Industry Capabilities (New Design) */
.capability-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cap-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.cap-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.cap-card h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.cap-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.industry-strips {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.strip-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.strip-item:first-child {
    border-left: none;
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(10%);
}

.strip-item:hover {
    flex: 2; /* Expand width */
}

.strip-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsive Industry */
@media (max-width: 992px) {
    .capability-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .industry-strips {
        flex-wrap: wrap;
        height: auto;
    }
    .strip-item {
        flex: 0 0 50%;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .strip-item {
        flex: 0 0 100%;
        height: 200px;
    }
}


/* Industry Capabilities (New Design) - 3 Cards + 6 Strips */
.capability-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}
.cap-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
}
.cap-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}
.cap-card h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}
.cap-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.industry-strips {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.strip-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border-left: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}
.strip-item:first-child {
    border-left: none;
}
.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}
.strip-item:hover {
    flex: 2.5;
}
.strip-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}
/* Responsive Industry New */
@media (max-width: 992px) {
    .capability-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    .industry-strips {
        flex-wrap: wrap;
        height: auto;
    }
    .strip-item {
        flex: 0 0 50%;
        height: 200px;
        border-bottom: 1px solid #fff;
    }
    .strip-item:hover {
        flex: 0 0 50%;
    }
    .strip-item img {
        filter: grayscale(0%);
    }
}
