.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;
    background-color: #f1e7e1;
}

.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: linear-gradient(to bottom, #f1e7e1, #eee9ec);
}

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

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

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

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

.is-description {
    font-size: 16px;
    color: #000;
    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;
}

.is-view-more-link:hover {
    color: #333;
}

.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 0;
    }

    .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;
    }
}

/* Sourcing Experts Section Styles */
.is-sourcing-experts-section {
    background: linear-gradient(to bottom, #eee9ec, #edeaef);
    /* Light grey background from image */
    padding: 25px 20px;
}

.is-se-container {
    max-width: 700px;
    /* Or adjust to match the visual weight in the image */
    padding: 15px 20px;
    background-color: #f2f0f4;
    /* White inner bubble */
    border-radius: 30px;
    /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content within the bubble */
    gap: 15px;
}

.is-se-avatar {
    width: 40px;
    /* Adjust size as needed */
    height: 40px;
    border-radius: 50%;
    /* Circular avatar */
    object-fit: cover;
}

.is-se-text {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.is-se-text p {
    margin: 0;
}

.is-se-link {
    color: #000;
    /* Black link color */
    font-weight: 500;
    text-decoration: underline;
}

.is-se-link:hover {
    color: #555;
    text-decoration: none;
}

/* Responsive Adjustments for Sourcing Experts Section */
@media (max-width: 767px) {
    .is-se-container {
        flex-direction: column;
        /* Stack avatar and text on mobile */
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .is-se-text {
        font-size: 14px;
    }
}

/* Turn Ideas Into Reality Section Styles */
.turn-ideas-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #edeaef, #eceaf0);
    /* Light greyish background */
}

.ti-container {
    max-width: 1680px;
    /* Adjust as needed */
    margin: 0 auto;
    padding: 0;
}

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

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

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

.ti-subtitle {
    font-size: 16px;
    color: #000;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.ti-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* Align left column and gallery to the top */
}

.ti-left-column {
    flex-basis: 35%;
    flex-shrink: 0;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ti-customer-inspiration {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.ti-brand-name {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.ti-brand-industry {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ti-brand-description {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ti-quote {
    border-left: 3px solid #eee;
    padding-left: 20px;
    margin-bottom: 30px;
}

.ti-quote-text {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.6;
}

.ti-quote-author {
    font-size: 14px;
    color: #666;
}

.ti-read-more-btn {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 20px;
    /* Pill shape */
    text-decoration: none;
    font-size: 24px;
    font-weight: 400 !important;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.ti-right-column-gallery {
    flex-grow: 1;
    display: flex;
    gap: 15px;
    /* Gap between columns */
}

.ti-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Gap between items in a column */
    flex: 1;
    /* Distribute space equally among columns initially */
    justify-content: space-between;
}

@media (max-width: 767px) {
    .ti-right-column-gallery {
        flex-direction: row;
    }
}

.ti-gallery-item {
    background-color: #e0e0e0;
    /* Placeholder background */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    /* Height will be determined by content or specific aspect ratio */
}

@media (max-width: 767px) {
    .ti-gallery-item {
        width: 50%;
    }
}

.ti-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the item, might crop */
}

/* Specific column item distribution for the 2-3-2 layout */
/* We can achieve this by making the middle column relatively taller */
/* This can be complex with pure CSS for a true masonry effect with specific counts.
   A simpler approach is to ensure images in each item are well-aligned and columns try to balance.
   For strict 2-3-2, image heights might need to be pre-calculated or JS used for perfect masonry.
   The current flex setup will align items in columns. We can hint at heights or use aspect ratios.
*/

/* Example of setting aspect ratio for items to help with alignment if images vary */
/* .ti-gallery-item {
    aspect-ratio: 3 / 4;
} */

/* Responsive adjustments for Turn Ideas section */
@media (max-width: 991px) {
    .ti-content-wrapper {
        flex-direction: column;
        align-items: stretch;
        /* Make columns full width */
    }

    .ti-left-column {
        flex-basis: auto;
        /* Reset basis */
        margin-bottom: 30px;
    }

    .ti-main-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .turn-ideas-section {
        padding: 40px 0;
    }

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

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

    .ti-left-column {
        padding: 20px;
    }

    .ti-brand-name {
        font-size: 24px;
    }

    .ti-right-column-gallery {
        flex-direction: column;
        /* Stack gallery columns on mobile */
    }

    .ti-gallery-col {
        /* On mobile, each original column becomes a row of items.
          To maintain some grid, you might want to switch to a 2-column grid for items within the stacked ti-gallery-col */
        flex-direction: row;
    }
}

/* Partners Section */
.partners-section {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #edeaef, #eee9eb);
}

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

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

.partners-section .section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    /* row-gap column-gap */
}

.partners-logo-grid img {
    max-height: 40px;
    /* Adjust based on average logo height */
    max-width: 130px;
    /* Adjust based on average logo width */
    object-fit: contain;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partners-logo-grid img:hover {
    opacity: 1;
}

/* 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: 1680px;
    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;
}


/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #eee9eb, #f0e7e2);
}

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

.blog-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.blog-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin-bottom: 50px;
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.blog-post-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-5px);
}

.blog-post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post-image {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-post-content {
    padding: 20px;
}

.blog-post-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    /* Approximate height for 2 lines */
}

.blog-post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    /* Clamp to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
    /* Approximate height for 3 lines */
}

.blog-view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-link.arrow-link {
    /* Reusing arrow-link style */
    font-size: 17px;
}

.learn-more-link-mod {
    display: inline-flex;
    /* 改为 inline-flex 以更好地对齐文本和SVG */
    align-items: center;
    /* 垂直居中对齐内部元素 */
    font-size: 15px;
    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 属性 */
}

.is-se-container-wrapper {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.industry-container {
    background: linear-gradient(to bottom, #f1e6e0, #f1e7e1);
    width: 100%;
}