.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 16px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
}

.breadcrumb-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

/* Industry Solutions Section Styles */
.industry-solutions-section {
    padding: 60px 20px;
    background: #f7f7f7;
}

.is-container {
    max-width: 1680px;
    /* Adjust as needed */
    margin: 0 auto;
    padding: 0;
    text-align: center;
    /* Center align header and view more link */
}

.is-header {
    margin-bottom: 40px;
}

.is-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.is-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.is-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns by default */
    gap: 20px;
    margin-bottom: 40px;
}

.is-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    /* Rounded corners for cards */
    display: block;
    /* Make the anchor a block for positioning */
    text-decoration: none;
}

.is-card-img {
    width: 100%;
    height: 100%;
    /* Ensure image covers the card area */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.is-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 20px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.is-card-title {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: normal;
    /* Normal weight initially */
    transition: transform 0.3s ease, font-weight 0.3s ease;
    /* Smooth transition for transform and font-weight */
}

.is-card:hover .is-card-img {
    transform: scale(1.05);
    /* Slight zoom on image hover */
}

.is-card:hover .is-card-title {
    transform: scale(1.1);
    /* Enlarge text */
    font-weight: bold;
    /* Make text bold */
}

.is-view-more {
    margin-top: 20px;
}

.is-view-more-link {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    background-color: #eee;
    padding: 10px 20px;
    border-radius: 12px;
}

.is-view-more-link:hover {
    color: #000;
    background-color: #ddd;
}

.is-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.is-view-more-link:hover .is-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .is-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }

    .is-title {
        font-size: 28px;
    }

    .is-description {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .industry-solutions-section {
        padding: 40px 15px;
    }

    .is-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 1 column on mobile */
        gap: 15px;
    }

    .is-title {
        font-size: 24px;
    }

    .is-card-title {
        font-size: 16px;
    }

    .is-description {
        font-size: 14px;
    }
}



/* Sustainability Section */
.sustainability-section {
    /* Placeholder */
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
    /* Parallax-like effect */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* Dark overlay for text readability */
    z-index: 1;
}

.sustainability-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.sustainability-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sustainability-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.sustainability-button {
    display: inline-block;
    background-color: #fff;
    color: #222;
    /* padding: 12px 40px; */
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin: auto;
    height: 40px;
}

.button-text-wrapper {
    display: inline-block;
    height: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    position: relative;
}

.button-text-original,
.button-text-hover {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.button-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.sustainability-button:hover .button-text-original {
    transform: translateY(-100%);
}

.sustainability-button:hover .button-text-hover {
    transform: translateY(0);
}

.sustainability-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    color: #222;
}

.brand-box {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 88%, rgba(0, 0, 0, 0) 100%);
}

.brand-box-row {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    /*overflow: hidden;*/
    /*white-space: nowrap; !* 防止换行 *!*/
    /*mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 88%, rgba(0, 0, 0, 0) 100%);*/
    position: relative;
    /*right: -130px;*/
    height: 50px;
}

.brand-box-row-img {
    position: absolute;
    right: -130px;
    width: 130px;
    height: 50px;
    object-fit: contain;
}

.brand-box-row-2 {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    margin-top: 40px;
    /*overflow: hidden;*/
    white-space: nowrap;
    /* 防止换行 */
    /*mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 88%, rgba(0, 0, 0, 0) 100%);*/
    position: relative;
    height: 80px;
}

.brand-box-row img {
    height: 30px;
    /*animation: 30s scroll-left linear infinite normal;*/
    /*margin-right: 15px;*/
}

.brand-box-row-item {
    border-radius: 12px;
    border: 0px solid #333;
    padding: 10px;
    width: 75px;
    min-width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -100px;
    /*margin-right: 10px;*/
    /*-webkit-animation: 130s scroll linear infinite normal;*/
    /*animation: 30s scroll-right linear infinite normal;*/
}

/* 定义滚动动画 */
@keyframes scroll-left {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-650px, 0, 0);
        transform: translate3d(-650px, 0, 0);
    }
}

@keyframes scroll-right {
    0% {
        -webkit-transform: translate3d(-650px, 0, 0);
        transform: translate3d(-650px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.brand-box-row-item img {
    width: 80%;
}


.brand-list-1 {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    grid-auto-rows: min-content;
}

.brand-list-2 {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
    grid-auto-rows: min-content;
}

.brand-list-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #e3e3d3;
    border-radius: 6px;
    overflow: hidden;
}

.brand-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-desc {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
}


.swiper-slide a {
    width: 100%;
    height: 100%;
}


@keyframes changeColor {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.brand-list {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    position: relative;
    padding: 0 40px;
}



/* Custom Box Section from image */
.custom-box-section {
    padding: 80px 20px;
}

.custom-box-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.custom-box-text {
    flex: 0 0 50%;
    padding: 40px 60px 40px 0;
}

.custom-box-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.custom-box-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

.custom-box-button {
    display: inline-block;
    background-color: #eee;
    color: #000;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.custom-box-button:hover {
    background-color: #ddd;
    color: #000;
}

.custom-box-image {
    flex: 0 0 50%;
}

.custom-box-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .custom-box-container {
        flex-direction: column;
        padding: 0;
    }

    .custom-box-text {
        flex-basis: auto;
        padding: 40px;
        text-align: center;
    }

    .custom-box-image {
        flex-basis: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .custom-box-section {
        padding: 40px 15px;
    }

    .custom-box-text {
        padding: 30px 0;
    }

    .custom-box-title {
        font-size: 32px;
    }
}

/* Featured Works Section Styles */
.featured-works-section {
    padding: 60px 20px;
    background-color: #fff;
    /* Or a very light grey background */
}

.fw-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    /* Add overflow hidden here */
}

.fw-header {
    text-align: center;
    margin-bottom: 40px;
}

.fw-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.fw-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.featured-works-swiper {
    padding: 0;
    /* Remove padding from swiper container */
    position: relative;
    /* overflow: hidden; Remove from here or ensure it doesn't conflict */
}

.fw-slide {
    text-align: center;
}

.fw-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.fw-image-wrapper {
    width: 100%;
    height: 240px;
    aspect-ratio: 1 / 1;
    /* overflow: hidden; This was removed by user, ensure child img has radius */
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    /* Placeholder background */
    transition: transform 0.3s ease;
}

.fw-slide-link:hover .fw-image-wrapper {
    transform: scale(1.03);
    /* Slight zoom on image wrapper hover */
}

.fw-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.fw-slide-caption {
    font-size: 16px;
    /* Increased font size for better visibility */
    color: #333;
    margin: 10px 0 0 0;
    /* Adjusted margin, particularly margin-top */
}

/* Swiper Navigation Buttons */
.fw-button-prev,
.fw-button-next {
    position: absolute;
    top: 50%;
    /* Calculations for positioning buttons outside the main slide area but within fw-container */
    /* Assumes slidesPerView=4 and spaceBetween=30 at 1400px container width */
    /* Slide area width approx (1400 - 2*20(padding) - 3*30(spaceBetween))/4 per slide */
    /* Buttons need to be outside this slide flow, but inside fw-container's padding */
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
    z-index: 10;
}

.fw-button-prev:hover,
.fw-button-next:hover {
    background-color: rgba(220, 220, 220, 0.9);
}

.fw-button-prev {
    left: 10px;
    /* Adjust to be within fw-container's padding but outside slides */
}

.fw-button-next {
    right: 10px;
    /* Adjust to be within fw-container's padding but outside slides */
}

.fw-button-prev::after,
.fw-button-next::after {
    font-size: 18px;
    /* Arrow size */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .fw-main-title {
        font-size: 28px;
    }

    .featured-works-swiper {
        padding: 0 30px;
        /* Adjust padding for nav buttons */
    }
}

@media (max-width: 767px) {
    .fw-main-title {
        font-size: 26px;
    }

    .fw-description {
        font-size: 15px;
    }

    .featured-works-swiper {
        padding: 0;
        /* Remove padding, nav buttons might need different styling or hide */
    }

    .fw-button-prev,
    .fw-button-next {
        /* Example: hide buttons on very small screens or make them smaller */
        width: 30px;
        height: 30px;
        /* Or display: none; */
    }

    .fw-button-prev::after,
    .fw-button-next::after {
        font-size: 14px;
    }

    .fw-button-prev {
        left: 5px;
    }

    .fw-button-next {
        right: 5px;
    }
}

.site-footer {
    background: #fff !important;
}

/* Full Customization Solution Section Styles */
.full-customization-solution-section {
    padding: 60px 0;
    background-color: #f7f7f7;
    /* White background, adjust if needed */
}

@media (max-width: 767px) {
    .full-customization-solution-section {
        padding: 40px 15px;
    }
}

.fcs-container {
    max-width: 100%;
    margin: 0 auto;
}

.fcs-header {
    text-align: center;
    margin-bottom: 40px;
}

.fcs-options-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.fcs-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.fcs-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
    /* Center the subtitle */
}

.fcs-tabs-nav {
    background-color: #ebebeb;
    padding: 10px;
    margin-bottom: 40px;
    display: flex;
    /* For centering the ul if it doesn't fill width */
    justify-content: center;
    /* Center tabs */
}

.fcs-tabs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allow tabs to wrap on smaller screens */
    justify-content: center;
    gap: 5px;
    /* Gap between tab items */
}

.fcs-tab-item {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.fcs-tab-item:hover {
    background-color: #e9e9e9;
    color: #222;
}

.fcs-tab-item.active {
    background-color: #fff;
    color: #222;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fcs-content-area {
    /* Styles for the content area if needed */
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .fcs-content-area {
        padding: 0;
    }
}

.fcs-tab-content {
    display: none;
    /* Hide all tab content by default */
}

.fcs-tab-content.active {
    display: block;
    /* Show only the active tab content */
}

.fcs-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fcs-item-card {
    background-color: #fff;
    /* Card background */
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    /* Optional: soft shadow for cards */
    text-align: left;
}

.fcs-item-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Maintain aspect ratio for images */
    background-color: #f0f0f0;
    /* Placeholder background for image */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.fcs-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fcs-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 15px 15px 8px 15px;
}

.fcs-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 15px 15px 15px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .fcs-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .fcs-tab-item {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .fcs-main-title {
        font-size: 28px;
    }

    .fcs-subtitle {
        font-size: 15px;
    }

    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcs-tabs-list {
        justify-content: flex-start;
        /* Align tabs to start on smaller screens */
        overflow-x: auto;
        /* Allow horizontal scrolling for tabs if they overflow */
        white-space: nowrap;
        /* Keep tabs in a single line for scrolling */
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
        /* Space for scrollbar if it appears */
    }

    .fcs-tabs-nav {
        padding-right: 0;
        padding-left: 0;
    }

    .fcs-tab-item {
        flex-shrink: 0;
        /* Prevent tabs from shrinking when scrolling */
    }
}

@media (max-width: 767px) {
    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Or 1fr for single column */
        gap: 15px;
    }

    .fcs-main-title {
        font-size: 24px;
    }

    .fcs-item-title {
        font-size: 16px;
    }

    .fcs-item-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fcs-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcs-tab-item {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Curious Designers Section Styles */
.curious-designers-section {
    background-color: #f8f9fa;
    /* Light grey background, matching image */
    padding: 60px 20px;
}

.cds-container {
    max-width: 1600px;
    /* Adjusted max-width for a more compact look */
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cds-avatar-column {
    flex-shrink: 0;
}

.cds-avatar-column img {
    width: 150px;
    /* Avatar size */
    height: 150px;
    border-radius: 50%;
    /* Circular avatar */
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cds-text-column {
    flex-grow: 1;
}

.cds-title {
    font-size: 24px;
    /* Slightly smaller title */
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cds-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cds-contact-link {
    display: inline-flex;
    /* To align text and arrow */
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cds-contact-link:hover {
    color: #007bff;
    /* Example hover color */
}

.cds-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cds-contact-link:hover .cds-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments for Curious Designers Section */
@media (max-width: 767px) {
    .cds-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cds-avatar-column img {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
        /* Add some space below avatar on mobile */
    }

    .cds-title {
        font-size: 22px;
    }

    .cds-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cds-contact-link {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .cds-title {
        font-size: 20px;
    }
}

/*Lean more link*/
.learn-more-link-mod {
    display: inline-flex;
    /* 改为 inline-flex 以更好地对齐文本和SVG */
    align-items: center;
    /* 垂直居中对齐内部元素 */
    font-size: 26px;
    font-weight: bold;
    color: #1d1d1f;
    text-decoration: none;
    margin-top: 10px;
    /* overflow: hidden; */
    /* 暂时移除或根据需要调整，确保文本滑动可见 */
}

.learn-more-link-mod:hover {
    color: #000;
    /* Darker blue on hover */
}

.learn-more-text-wrapper {
    position: relative;
    display: inline-block;
    height: 1.2em;
    /* 根据字体大小调整，例如 15px * 1.2 = 18px */
    line-height: 1.2em;
    /* 保持与高度一致 */
    overflow: hidden;
    vertical-align: middle;
    /* 尝试对齐 */
    margin-right: 5px;
    /* 在文本和箭头之间添加一些间距 */
}

.slide-text-original,
.slide-text-hover {
    display: block;
    /* 使 transform 生效 */
    transition: transform 0.3s ease-in-out;
}

.slide-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    /* 初始状态：在下方隐藏 */
}

.learn-more-link-mod:hover .slide-text-original {
    transform: translateY(-100%);
    /* 原始文本向上滑出 */
}

.learn-more-link-mod:hover .slide-text-hover {
    transform: translateY(0%);
    /* 悬停文本从下方滑入 */
}

.learn-more-link-mod svg {
    /* margin-left: 5px; */
    /* 间距已改到 .learn-more-text-wrapper 的 margin-right */
    transition: transform 0.3s ease-in-out;
    /* 控制恢复和滑动的动画时间 */
    transform: translateX(0);
    /* 明确初始位置 */
}

.learn-more-link-mod:hover svg {
    transform: translateX(8px);
    /* 鼠标悬停时向右滑动8px */
    /* 移除 animation 属性 */
}

/* How We Manage Your Project Section */
.project-management-section {
    padding: 80px 20px;
}

.pm-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.pm-header {
    text-align: center;
    margin-bottom: 50px;
}

.pm-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.pm-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.pm-process-wrapper {
    position: relative;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.pm-process-swiper {
    margin-bottom: 0;
    overflow: hidden;
}

.pm-process-step {
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    padding-bottom: 20px;
    top: 50%;
}

.pm-process-step .step-number {
    font-size: 24px;
    color: #333;
}

@media (max-width: 767px) {
    .pm-process-step .step-number {
        font-size: 18px;
    }
}

.pm-process-step .step-name {
    font-size: 16px;
    color: #333;
}

@media (max-width: 767px) {
    .pm-process-step .step-name {
        font-size: 14px;
        text-wrap: nowrap;
    }
}

.pm-process-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.pm-process-pagination {
    position: relative !important;
    max-width: 1680px;
    margin: 0 auto !important;
    height: 1px !important;
    background: #e0e0e0 !important;
    overflow: hidden;
}

.pm-process-progressbar-fill {
    width: 100%;
    height: 100%;
    background: #000;
    transform-origin: left;
}

.pm-process-prev,
.pm-process-next {
    color: #000;
    top: 35%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 767px) {
    .pm-process-prev,
    .pm-process-next {
        top: 25px;
    }
}

.arrow-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pm-process-prev {
    left: 0;
}

.pm-process-next {
    right: 0;
}

.pm-process-prev::after,
.pm-process-next::after {
    font-size: 20px;
    font-weight: bold;
}

.pm-content-swiper {
    margin-top: 50px;
}

.pm-content-slide {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pm-content-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.pm-content-image img {
    width: 100%;
    display: block;
}

.pm-content-text {
    flex: 1;
}

.pm-content-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.pm-content-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .pm-process-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .pm-content-slide {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .project-management-section {
        padding: 40px 15px;
    }

    .pm-title {
        font-size: 28px;
    }

    .pm-process-wrapper {
        padding: 0;
    }

    .pm-process-prev,
    .pm-process-next {
        display: block;
    }

    .pm-content-title {
        font-size: 20px;
    }
}

/* One Stop Solution Section Styles */
.one-stop-solution-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.oss-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.oss-header {
    margin-bottom: 60px;
}

.oss-sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.oss-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

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

.oss-card {
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .oss-card {
        padding: 0;
    }
}

.oss-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.oss-icon-wrapper {
    margin-bottom: 25px;
    color: #333;
}

.oss-icon-wrapper svg {
    width: 64px;
    height: 64px;
}

.oss-icon-wrapper img {
    width: 60px;
    height: 60px;
}

.oss-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.oss-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .oss-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .oss-main-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .one-stop-solution-section {
        padding: 60px 15px;
    }

    .oss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oss-main-title {
        font-size: 30px;
    }

    .oss-sub-title {
        font-size: 14px;
    }

    .oss-card-title {
        font-size: 20px;
    }
}

/* Packaging Showcase Section */
.packaging-showcase-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.pss-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .pss-container {
        padding: 0 15px;
    }
}

.pss-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.pss-row:last-child {
    margin-bottom: 0;
}

.pss-row-reverse {
    flex-direction: row-reverse;
}

.pss-text,
.pss-image {
    flex: 1;
}

.pss-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pss-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.pss-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.pss-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #eee;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pss-button:hover {
    background-color: #ddd;
    color: #000;
}


/* Responsive */
@media (max-width: 991px) {
    .pss-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .pss-row-reverse {
        flex-direction: column;
        /* Keep it column on mobile */
    }

    .pss-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .packaging-showcase-section {
        padding: 60px 0;
    }

    .pss-row {
        margin-bottom: 60px;
    }
}

/* Customer Case Section Styles */
.customer-case-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
    overflow: hidden;
}

.cc-container {
    max-width: 1680px;
    /* Full width for the carousel */
    margin: 0 auto;
    padding: 0;
    /* Adjust padding as needed */
}

.cc-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.customer-case-swiper {
    width: 100%;
    /* overflow: hidden; Swiper handles this */
}

.customer-case-swiper .swiper-wrapper {
    display: flex;
    /* Ensure it's a flex container, Swiper usually does this */
    align-items: stretch;
    /* This is key to make all slides in a row have the same height */
}

.cc-slide {
    background-color: #f8f9fa;
    /* Light background for each card */
    border-radius: 12px;
    overflow: hidden;
    /* Ensures content respects border-radius */
    display: flex;
    /* Make the slide itself a flex container */
    flex-direction: column;
    /* Stack its children vertically */
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.07); */
    background: #F7F7F7;
    height: auto;
    /* Important: Override Swiper's potential inline height */
    align-self: stretch;
    /* Ensure the slide stretches to the height of the wrapper's flex line */
}

.cc-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Or your desired aspect ratio */
    background-color: #e9e9e9;
    /* Placeholder */
    flex-shrink: 0;
    /* Prevent image wrapper from shrinking */
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-testimonial-content {
    padding: 25px;
    flex-grow: 1;
    /* Allows this part to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes customer info to bottom if content is short */
}

.cc-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows quote to take up available space within testimonial content */
}

.cc-customer-info {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: auto;
    /* Pushes to bottom if testimonial is short */
}

.cc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cc-customer-details {
    /* Styles for name and role container */
}

.cc-customer-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin: 0 0 2px 0;
}

.cc-customer-role {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Responsive Adjustments for Customer Case */
@media (max-width: 991px) {
    .cc-main-title {
        font-size: 28px;
    }

    /* Swiper slidesPerView will handle column changes in JS */
}

@media (max-width: 767px) {
    .cc-container {
        padding: 0 15px;
    }

    .cc-main-title {
        font-size: 24px;
    }

    .cc-testimonial-content {
        padding: 20px;
    }

    .cc-quote {
        font-size: 14px;
    }

    .cc-customer-name {
        font-size: 15px;
    }

    .cc-avatar {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens if Swiper doesn't handle it well enough */
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    background-color: #f7f7f7;
    /* White background */
}

.faq-container {
    max-width: 1680px;
    /* Adjusted max-width as per request */
    margin: 0 auto;
    padding: 0;
}

.faq-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    /* border-top: 1px solid #e0e0e0; */
}

.faq-item {
    /* border-bottom: 1px solid #e0e0e0; */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.faq-question:hover {
    color: #000;
    /* Example hover color */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.35s ease-in-out;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    /* Padding only when open */
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
}

/* Responsive Adjustments for FAQ */
@media (max-width: 767px) {
    .faq-main-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 17px;
        padding: 18px 0;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* Contact Form Section for Customization Page */
.contact-form-section-customization {
    padding: 60px 20px;
    background-color: #fff;
    /* Light background for the section */
}

@media (max-width: 767px) {
    .contact-form-section-customization {
        padding: 60px 15px;
    }
}

.cfsc-container {
    max-width: 1680px;
    /* Max width for the container */
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 40px;
    /* Gap between title area and form area */
}

.cfsc-title-area {
    flex-basis: 200px;
    /* Width of the "CONTACT US" title block */
    flex-shrink: 0;
}

.cfsc-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin: 0;
    padding-top: 10px;
    /* Align with the top of the first input fields */
}

.cfsc-form-area {
    flex-grow: 1;
    padding: 0;
    border-radius: 8px;
}

.cfsc-form-row {
    display: flex;
    gap: 25px;
    flex-direction: column;
    width: 30%;
}

.cfsc-form-group {
    flex: 1;
    /* Each group takes equal space in a row */
    display: flex;
    /* flex-direction: column; */
}

.cfsc-form-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.cfsc-form-group input[type="text"],
.cfsc-form-group input[type="email"],
.cfsc-form-group input[type="tel"],
.cfsc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    background-color: #fdfdfd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cfsc-form-group input[type="text"]:focus,
.cfsc-form-group input[type="email"]:focus,
.cfsc-form-group input[type="tel"]:focus,
.cfsc-form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: none;
}

.cfsc-message-group {
    position: relative;
    /* For positioning the upload trigger */
    /* margin-bottom: 20px; */
}

.cfsc-message-group textarea {
    min-height: 120px;
    /* Message box height */
    resize: vertical;
    /* Space for the icon */
}

.cfsc-file-upload-trigger {
    position: absolute;
    bottom: 10px;
    /* Position from bottom of textarea padding */
    left: 10px;
    /* Position from left of textarea padding */
    cursor: pointer;
    padding: 5px;
    /* Clickable area */
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cfsc-file-upload-trigger svg {
    width: 20px;
    /* Icon size */
    height: 20px;
}

.cfsc-file-upload-trigger:hover svg {
    color: #007bff;
}

.cfsc-file-input {
    display: none;
    /* Hidden file input */
}

.cfsc-submit-group {
    text-align: right;
    /* Aligns button to the right */
    margin-top: 10px;
}

.cfsc-submit-button {
    padding: 12px 15px;
    background-color: #555555;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-15%, -50%);
}

.cfsc-submit-button:hover {
    background-color: #444444;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cfsc-container {
        flex-direction: column;
        gap: 20px;
    }

    .cfsc-title-area {
        flex-basis: auto;
        text-align: center;
    }

    .cfsc-title {
        padding-top: 0;
        margin-bottom: 20px;
        /* Space below title on mobile */
    }

    .cfsc-form-area {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .cfsc-form-row {
        flex-direction: column;
        gap: 0;
        /* Remove gap as they stack */
        margin-bottom: 0;
        /* Individual groups will have margin */
    }

    .cfsc-form-group {
        margin-bottom: 20px;
        /* Add margin back for stacked groups */
    }

    .cfsc-message-group textarea {
        min-height: 100px;
    }

    .cfsc-submit-group {
        text-align: center;
    }

    .cfsc-submit-button {
        width: 100%;
    }

    .cfsc-form-area {
        padding: 0;
    }
}

.cfsc-form-area form {
    display: flex;
    gap: 10px;
}