.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: 18px;
}

.discover-more-btn {
    display: flex;
    background-color: #565656;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 54px;
}

.discover-more-btn:hover {
    color: #fff;
}

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

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

.discover-more-btn:hover .button-text-hover {
    transform: translateY(0);
}

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

.breadcrumb-container {
    max-width: 1400px;
    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: 16px;
}

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

/* Mobile Styles */
@media (max-width: 767px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 8px;
    }

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

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* About Section Styles */
.about-section,
.factory-section {
    padding: 80px 20px;
    background: #fff;
    overflow: hidden;
}

.factory-section h2 {
    font-size: 32px;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto 45px;
}

@media(min-width:768px) and (max-width:1365px) {
    .factory-section h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .factory-section h2 {
        font-size: 24px;
    }
}

.about-container,
.factory-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.about-row,
.factory-row {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
}

.about-text-column,
.factory-text-column {
    width: 50%;
}

.about-image-column,
.factory-image-column {
    width: 50%;
    position: relative;
}

.about-image-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    border-radius: 0px;
}

.about-image-column:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {

    .about-text-column,
    .factory-text-column {
        width: 100%;
    }

    .about-image-column,
    .factory-image-column {
        width: 100%;
        position: relative;
    }
}

.about-title,
.factory-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
}

.about-description,
.factory-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-image,
.factory-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
}

.discover-more-btn {
    display: flex;
    background-color: #565656;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.discover-more-btn:hover {
    color: #fff;
}

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

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

.discover-more-btn:hover .button-text-hover {
    transform: translateY(0);
}

/* Tablet Styles */
@media (max-width: 991px) {

    .about-section,
    .factory-section {
        padding: 30px 15px;
    }

    .about-row,
    .factory-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-text-column,
    .factory-text-column {
        order: 1;
        text-align: left;
    }

    .about-image-column,
    .factory-image-column {
        order: 2;
    }

    .about-title,
    .factory-title {
        font-size: 30px;
    }

    .about-description,
    .factory-description {
        font-size: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {

    .about-section,
    .factory-section {
        padding: 40px 0;
    }

    .about-container,
    .factory-container {
        padding: 0 15px;
    }

    .about-title,
    .factory-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-description,
    .factory-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .discover-more-btn {
        padding: 10px 25px;
        font-size: 14px;
        margin: auto;
    }
}

.play-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.play-button svg {
    fill: #ffffff;
    width: 30px;
    height: 30px;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover svg {
    fill: #000;
}

.video-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box {
    width: 960px;
    height: 540px;
    position: relative;
    background: #ffffff;
}

@media (max-width: 767px) {
    .video-box {
        width: 90%;
        height: 300px;
    }
}

.dialog-close {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    width: 27px;
}



.tir-swiper {
    padding-bottom: 10px;
    /* Adjusted padding as pagination is removed */
}

.tir-slide {
    text-align: left;
}

.tir-slide-image-wrapper {
    width: 100%;
    /* aspect-ratio: 3 / 4; /* Or your desired aspect ratio */
    /* height: 350px; /* Or a fixed height if you prefer */
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #e9e9e9;
    /* Placeholder if image is missing */
}

.tir-slide-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media(min-width:768px) and (max-width:1365px) {
    .tir-slide-image-wrapper img {
        height: 300px;
    }
}

.tir-slide-title {
    font-size: 18px;
    color: #000;
    margin: 0;
    padding: 0 5px;
    /* Some padding if text is close to edges */
    line-height: 2;
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .tir-slide-title {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .tir-slide-title {
        font-size: 14px;
    }
}

/* Swiper Navigation Buttons - COMMENTED OUT */

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .tir-container {
        padding: 0 20px;
        /* Reverted padding as nav buttons are removed */
    }

    /* Navigation button positioning adjustments removed as buttons are removed */
}

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

    .tir-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tir-header-content {
        max-width: 100%;
    }

    .tir-main-title {
        font-size: 26px;
    }

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

    .tir-view-more-btn {
        align-self: flex-start;
    }

    /* Navigation buttons hide rule removed as buttons are removed */
    .tir-swiper {
        padding-bottom: 10px;
        /* Adjusted padding as pagination is removed */
    }
}


.work-box-section {
    padding: 20px 15px;
}

.work-item {
    border-radius: 12px;
}

.work-list-box-nav-item-content {
    width: 100%;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 10px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-content {
        min-height: 0;
    }
}

@media(max-width:767px) {
    .work-list-box-nav-item-content {
        min-height: 0;
    }
}

.work-list-box-nav-item-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding-top 0.3s ease-in-out;
}

.work-list-box-nav-item-active p {
    max-height: 200px;
    opacity: 1;
    padding-top: 8px;
    font-size: 18px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-nav-item-active p{
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .work-list-box-nav-item-active p {
        font-size: 14px;
    }
}

.work-list-box-nav-item::before {
    content: '';
    margin-left: auto;
    /* font-size: 20px; */
    font-weight: bold;
    width: 2px;
    height: 14px;
    background-color: #000;
    color: #000;
    line-height: 1;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

.work-list-box-nav-item-active::before {
    content: '';
    transform: rotate(90deg);
}

.work-box-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.work-box-container h2 {
    font-size: 32px;
    font-family: InterBold;
    color: #4b5956;
    margin-bottom: 10px;
    padding-bottom: 20px;
}

@media(max-width:767px) {
    .work-box-container h2 {
        font-size: 28px;
    }
}

.work-box-container p {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.work-list-box-nav-number {
    font-size: 22px;
    font-family: InterBold;
    color: #4e5956;
    width: 30px;
    display: flex;
    align-items: start;
}

.work-box {
    width: 100%;
    max-width: 1360px;
    margin: 50px auto 0px;
}

.work-title {
    font-size: 32px;
    width: 100%;
    max-width: 1360px;
    margin: auto;
    text-align: center;
}

.work-title h2 {
    padding-bottom: 50px;
}

.work-subtitle {
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.work-list-box {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

.work-list-box-left {
    width: 100%;
    min-width: 50%;
}

.work-list-box-left>p {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-left>p {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .work-list-box-left>p {
        font-size: 14px;
    }
}

.work-list-box-left h2 {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 20px;
}

@media(min-width:768px) and (max-width:1365px) {
    .work-list-box-left h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .work-list-box-left h2 {
        text-align: center;
        font-size: 24px;
    }
}

.work-list-box-nav {
    width: 100%;
    min-width: 50%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.work-list-box-nav-item {
    color: #8A8A8A;
    padding: 5px 0 0 0px;
    display: flex;
    justify-content: left;
    align-items: baseline;
    cursor: pointer;
    position: relative;
}

.work-list-box-nav-item h4 {
    color: #4e5956;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.work-list-box-nav-item-active h4 {
    color: #000;
}

.work-list-box-nav-item-line {
    width: 2px;
    height: 100%;
    background: #e9e9e9;
    position: absolute;
    left: 0;
    top: 0;
}

.work-list-box-nav-item-line-active {
    background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
    background-size: 100% 200%;
    animation: changeColor 5s forwards;
}


.work-list {
    overflow: hidden;
}

.work-item-title {
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: #FFFFFF;
    /*//添加一个渐变背景色，从透明到黑色*/
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    width: 100%;
}

.work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1365px) {
    .work-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto 50px;
        padding: 0;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        text-align: center;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .work-list-box-nav {
        width: 100%;
        min-width: 290px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .work-list-box-nav-item {
        /*border-left: 2px #e9e9e9 solid;*/
        color: #848484;
        padding: 5px 0 0 10px;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        cursor: pointer;
        position: relative;
    }

    .work-list-box-nav-item h4 {
        color: #848484;
        font-size: 16px;
        margin: 0;
    }

    .work-list-box-nav-item-active h4 {
        font-family: InterBold;
        color: #000000;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 10px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .work-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto 0px;
    }

    .work-title {
        font-size: 24px;
        font-family: InterBold;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        text-align: center;
        padding: 0 10px;
    }

    .work-subtitle {
        font-size: 18px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 0 10px;
    }

    .work-list-box {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column !important;
        padding: 0;
    }

    .work-list-box-nav {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-direction: column;
        padding: 0;
    }

    .work-list-box-nav-item {
        /*border-left: 2px #e9e9e9 solid;*/
        color: #848484;
        padding: 0;
        display: flex;
        justify-content: left;
        align-items: flex-start;
        cursor: pointer;
        position: relative;
    }

    .work-list-box-nav-item h4 {
        color: #848484;
        font-size: 16px;
        margin: 0;
    }

    .work-list-box-nav-item-active h4 {
        font-family: InterBold;
        color: #000000;
    }

    .work-list-box-nav-item-line {
        width: 2px;
        height: 100%;
        background: #e9e9e9;
        position: absolute;
        left: 0;
        top: 0;
    }

    .work-list-box-nav-item-line-active {
        background: linear-gradient(to bottom, #0033A1 50%, #e9e9e9 50%);
        background-size: 100% 200%;
        animation: changeColor 5s forwards;
    }


    .work-list {
        overflow: hidden;
        width: 100%;
        margin-top: 20px;
    }

    .work-item-title {
        position: absolute;
        bottom: 0px;
        padding: 20px;
        color: #FFFFFF;
        /*//添加一个渐变背景色，从透明到黑色*/
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
        width: 100%;
    }

    .work-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


/* Sustainability Section */
.sustainability-section {
    background-size: cover;
    background-position: center center;
    position: relative;
    color: #fff;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    height: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-attachment: fixed; */
}

.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: 1360px;
    margin: 0 auto;
}

.sustainability-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media(min-width:768px) and (max-width:1365px) {
    .sustainability-title {
        font-size: 30px;
    }

    .sustainability-text {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .sustainability-title {
        font-size: 24px;
    }
}

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

@media(max-width:767px) {
    .sustainability-text {
        font-size: 14px;
    }
}

.sustainability-button {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    /* 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;
}

@media(max-width:767px) {
    .sustainability-button {
        font-size: 14px;
    }
}

.button-text-wrapper {
    display: inline-block;
    height: 1.2em;
    line-height: 1.2;
    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 {
    border: 1px solid #FF99D3;
    background-color: #FF99D3;
    transform: translateY(-2px);
    color: #fff;
    font-weight: 700;
}


.factory-form {
    width: 100%;
    padding: 45px 0;
    background-color: #EFEFEF;
}

.factory-form-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
}

@media(min-width:768px) and (max-width:1365px) {
    .factory-form-container {
        flex-direction: column;
    }
}

@media(max-width:767px) {
    .factory-form-container {
        flex-direction: column !important;
        padding: 0 15px;
    }
}

.factory-form-title {
    width: 200px;
}

@media(min-width:768px) and (max-width:1365px) {

    .factory-form-title h2{
        font-size: 24px;
    }
}

@media(max-width:767px) {
    .factory-form-title h2 {
        font-size: 24px;
    }
}

#app {
    flex: 1;
}

.btn-about-us {
    background: #FF99D3;
    color: #fff;
    padding: 12px 0px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    width: 180px;
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .btn-about-us {
        font-size: 14px;
    }
}

.btn-about-us:hover {
    background: #FF99D3;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 700;
}