.banner-desc-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    max-width: 1680px;
    width: 100%;
    padding: 0 20px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    /*gap: 10px;*/
    text-align: left;
    color: #fff;
}
.banner-desc-box a {
    padding-top: 20px;
}
/* popular */
.popular-section {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.popular-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.popular-title-left {
    width: 50%;
}
.popular-swiper {
    width: 100%;
    margin: 0 auto;
}

.popular-swiper-item {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.popular-swiper-item img {
    /*width: 100%;*/
    /*height: 240px;*/
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.popular-swiper-item p {
    font-weight: bold;
}
.popular-swiper-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #0d0d0d;
}
.popular-swiper-item:hover h3 {
    color: #FFBB0E;
}

.popular-swiper-button-prev, .popular-swiper-button-next {
    top: calc(50% - 22px);
    border: 1px solid #f1f1f1;
    border-radius: 50%;
    width: 44px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #f1f1f1;
}
.popular-swiper-button-prev::after, .popular-swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
@media (max-width: 767px) {
    .popular-title {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .popular-title-left {
        width: auto;
    }
}

/* standard */
.solution-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.solution-top {
    display: flex;
    gap: 30px;
    align-items: center;
}
.solution-left {
    width: 50%;
    aspect-ratio: 3/2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.solution-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.solution-content {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    gap: 30px;
}
.solution-content-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    /*gap: 10px;*/
    /*width: 40%;*/
}
.solution-content-item img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 3/2;
    /*height: 50px;*/
}
.solution-bottom {
    display: flex;
}

@media (max-width: 767px) {
    .solution-right {
        gap: 40px;
    }
}
.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;
}

.dialog-close {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    width: 27px;
}

.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;
}
.play-button:focus-visible {
    outline: none;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    /* Initially transparent */
    transition: background-color 0.3s ease;
    pointer-events: none;
    /* Allows clicks to go through to the button */
}
.solution-left:hover .hero-image-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    /* Darker overlay on hover */
}
.solution-left:hover .play-button {
    background-color: #fff;
    /* White background on hover */
}
.solution-left:hover .play-button .play-icon {
    fill: #000;
    /* Black play icon on hover */
}

@media (max-width: 767px) {
    .solution-section {
        flex-direction: column;
    }
    .solution-left, .solution-right{
        width: auto;
    }
}

/* why section */
.why-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.why-top {
    display: flex;
    gap: 30px;
    align-items: center;
}
.why-left {
    width: 50%;
    aspect-ratio: 3/2;
    position: relative;
}
.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.why-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-title h2 {
    color: #FFBB0E;
}
.why-content {
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    gap: 30px;
}
.why-content-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    /*width: 40%;*/
}
.why-content-item h3 {
    color: #FFBB0E;
}
.why-content-item img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

/* Blog Section */
.bg-F8F8F8 {
    background-color: #F8F8F8;
}
.service-section {
    padding: 50px 0;
    /*padding: 90px 20px;*/
}

.service-section .container {
    max-width: 1300px;
    margin: 0 auto;
    /*padding: 0 15px;*/
}

.service-section .section-title {
    text-align: center;
}

.service-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.service-list {
    display: flex;
    gap: 1px;
    margin-bottom: 40px;
}

.service-item {
    width: 100%;
    height: 500px;
    background-color: #fff;
    /*border-radius: 12px;*/
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    transition: width 0.3s ease, background-color 0.3s ease;
    /*margin-bottom: 50px;*/
    gap: 30px;
    display: flex;
}
.service-item.active {
    width: 300%;
}
.service-item img {
    width: 150px;
    height: 150px;
}
.service-mask {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3) !important;
}
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.service-item.active .service-mask{
    background-color: rgba(0, 0, 0, 0) !important;
}
.service-item h3 {
    display: none;
    font-size: 30px;
}
.service-item p {
    display: none;
}
.service-item.active h3,.service-item.active p{
    display: block;
}

/*.service-item:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

.blog-view-more-container {
    display: flex;
    text-align: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
}

/* how to get luxury */
.how-to-get-section {
    display: flex;
    background-color: #F8F8F8;
    flex-direction: column;
}
.how-to-get-title {
    text-align: center;
    margin-bottom: 20px;
}
.how-to-get-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.how-to-get-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 240px;
    margin: 0 10px 20px;
    gap: 20px;
    width: calc(25% - 20px);
    position: relative;
    &.hidden{
        transform: translateY(1000%);
    }
    &.animated{
        animation: fly-up 0.5s linear 0s;
    }
}
.how-to-get-item>img {
    width: 110px;
    /* height: 150px; */
    object-fit: cover;
}
.how-to-get-item:nth-child(even) {
    margin-top: 65px;
}
.how-to-get-bottom {
    display: flex;
    justify-content: center;
    &.hidden{
        transform: translateY(1000%);
    }
    &.animated{
        animation: fly-up 0.5s linear 0s;
    }
}
.line {
     position: absolute;
     right: 0;
     width: 55%;
 }
.line.up {
    top: 85px;
    -webkit-transform: translateX(80%);
    -ms-transform: translateX(80%);
    /* transform: translateX(80%); */
}
@media (max-width: 767px) {
    .how-to-get-item {
        width: calc(50% - 20px);
        max-width: 100%;
    }
    .how-to-get-item:nth-child(even) {
        margin-top: 0;
    }
    .line {
        display: none;
    }
    .how-to-get-section .banner-desc-box-button {
        width: 230px;
    }
}
.line.down {
    top: -35px;
    -webkit-transform: translateX(80%);
    -ms-transform: translateX(80%);
}
@keyframes fly-up{
    0%{
        transform: translateY(1000%);
    }
    100%{
        transform: translateY(0);

    }
}

@media(min-width:768px) and (max-width:1365px) {
    .main {
        overflow: hidden;
    }
}

@media(max-width: 767px) {
    .banner-desc-box {
        width: 100%;
        padding: 20px;
        transform: translate(0, 0);
        position: static;
        color: #000;
    }
}
.banner-desc-box-title h1 {
    font-size: 54px;
    line-height: 1.6;
}
@media(max-width: 767px) {
    .banner-desc-box-title {
        font-size: 1em;
    }

    .banner-desc-box-title h1 {
        font-size: 20px;
    }
}

.banner-desc-box-content {
    font-size: 24px;
    line-height: 2;
    color: #FFFFFF;
}

@media(max-width: 767px) {
    .banner-desc-box-content {
        font-size: 14px;
    }
}

.button-text-wrapper {
    display: inline-block;
    height: 24px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.luxury-packaging-section {
    padding-top: 100px;
    background: #fff;
}

@media(min-width:768px) and (max-width:1365px) {
    .luxury-packaging-section {
        padding: 80px 0 0;
    }
}

/* form */

.factory-form {
    width: 100%;
    max-width: 1300px;
    padding: 45px 0;
    display: flex;
}

.factory-form-title {
    /*width: 230px;*/
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.factory-form-container {
    width: 70%;
    margin: auto;
}

@media(max-width:767px) {
    .factory-form-container {
        width: auto;
    }
}


.main-title {
    font-size: 50px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

@media(min-width:768px) and (max-width:1365px) {
    .main-title {
        font-size: 32px;
    }
}

.sub-title {
    font-size: 20px;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
}

@media(min-width:768px) and (max-width:1365px) {
    .sub-title {
        font-size: 16px;
    }
}

.btn-row-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media(max-width:767px){
    .btn{
        font-size: 14px;
    }
}

.btn-custom-primary {
    background: #FF99D3;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: #FF99D3;
    color: #fff;
    border: none;
}

.btn-custom-primary:focus-visible {
    outline: none;
}

.btn-custom-outline-dark {
    background: transparent;
    color: #000;
    border: 1px solid #18191B;
}

.btn-custom-outline-dark:hover {
    background: #fff;
    color: #000;
}

.btn-custom-outline-dark:focus-visible {
    outline: none;
}

.btn:hover {
    transform: translateY(-2px);
    font-weight: 700;
}

.btn:focus-visible {
    outline: none;
}

.btn:active {
    outline: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .luxury-packaging-section {
        padding: 40px 0;
    }

    .main-title {
        font-size: 24px;
    }

    .sub-title {
        font-size: 14px;
    }

    .btn-row-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/**
 * 等宽按钮样式
 * @author XuZhenxing
 */
.btn-equal-width {
    width: 200px;
    text-align: center;
    display: inline-block;
}

/* 响应式设计 - 手机样式 */
@media (max-width: 767px) {
    .btn-equal-width {
        width: 100%;
    }
}

/* 响应式设计 - 平板样式 */
@media (min-width: 768px) and (max-width: 1366px) {
    .btn-equal-width {
        width: 230px;
        font-size: 14px;
    }
}

/* 响应式设计 - PC样式 */
@media (min-width: 1366px) {
    .btn-equal-width {
        width: 240px;
    }
}

/* 无限滚动start */
/* Partners Section */
.partners-section {
    padding-top: 100px;
    text-align: center;
}

@media(max-width:767px){
    .partners-section{
        padding: 40px 0;
    }
}

.partners-section .container {
    max-width: 1360px;
    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;
}

.brand-box {
    width: 100%;
    /*max-width: 1360px;*/
    max-width: 1680px;
    margin: auto;
    padding: 40px 20px;
    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;
}

@media(max-width:767px) {
    .brand-box-row{
        height: 30px;
    }
}

.brand-box-row-img {
    position: absolute;
    right: -130px;
    width: 130px;
    height: 50px;
    object-fit: contain;
}

.brand-box-row-2 {
    white-space: nowrap;
    /* 防止换行 */
    position: relative;
    height: 430px;
}

.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: 100px;
    min-width: 400px;
    /*height: 100px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -600px;
    /*margin-right: 10px;*/
    /*-webkit-animation: 130s scroll linear infinite normal;*/
    /*animation: 30s scroll-right linear infinite normal;*/
}

.brand-box-row-item img {
    width: 80%;
    height: 400px;
}
.brand-box-row-item p {
    color: #000;
    font-size: 16px;
}


.brand-list-1 {
    width: 100%;
    max-width: 1360px;
    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: 1360px;
    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: 1360px;
    margin: 40px auto;
}

.brand-list {
    overflow: hidden;
    width: 100%;
    max-width: 1360px;
    margin: 40px auto;
    position: relative;
    padding: 0 40px;
}

/* 无限滚动end */

/* Brothersbox Overview Section */
/**
 * Brothersbox Overview 区域样式
 * @author XuZhenxing
 */
.brothersbox-overview-section {
    padding-top: 100px;
    background: #fff;
}

.overview-content {
    padding-right: 40px;
}



.overview-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    line-height: 2;
}

.tab-navigation {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

.tab-item {
    position: relative;
    padding-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

@media(min-width:768px) and (max-width:1365px) {
    .tab-label {
        font-size: 16px;
    }
}

.tab-item.active .tab-label {
    color: #000;
    font-weight: bold;
}

.tab-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-item.active .tab-underline {
    opacity: 1;
}

.tab-content {
    margin-bottom: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-description {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 30px;
}

@media(min-width:768px) and (max-width:1365px) {
    .tab-description {
        font-size: 16px;
    }
}

@media(max-width:767px){
    .tab-description{
        font-size: 14px;
    }
}

.scale-subitems {
    margin-top: 20px;
}

.scale-subitem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.scale-subitem:hover {
    text-decoration: none;
    color: #FF99D3;
    transform: translateX(5px);
}

.subitem-label {
    color: #333;
    font-weight: 500;
    margin-right: 10px;
}

.subitem-arrow {
    color: #666;
    margin: 0 10px;
}

.subitem-value {
    color: #666;
}

.btn-about-us {
    background: #FFBB0E;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}
@media(min-width:768px) and (max-width:1365px) {
    .btn-about-us {
        font-size: 14px;
    }
}

@media(max-width:767px){
    .btn-about-us{
        font-size: 14px;
    }
}

.btn-about-us:hover {
    background: #FFBB0E;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.overview-image-container {
    position: relative;
    padding-left: 40px;
}

.product-showcase {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.5s ease;
    opacity: 0;
    position: absolute;
    transform: scale(0.9);
}

@media(min-width:768px) and (max-width:1365px) {
    .tab-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}

.tab-image.active {
    opacity: 1;
    transform: scale(1);
}



/* 响应式设计 - 手机样式 */
@media (max-width: 767px) {
    .brothersbox-overview-section {
        padding: 40px 0;
    }

    .overview-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .overview-title {
        font-size: 24px;
    }

    .tab-navigation {
        gap: 20px;
        flex-wrap: wrap;
    }

    .tab-label {
        font-size: 14px;
    }

    .overview-image-container {
        padding-left: 0;
    }

    .product-showcase {
        height: 270px;
    }
}

/* 响应式设计 - 平板样式 */
@media (min-width: 767px) and (max-width: 1366px) {
    .brothersbox-overview-section {
        padding: 0px 0 60px;
    }

    .overview-content {
        padding-right: 20px;
    }

    .overview-title {
        font-size: 30px;
    }

    .tab-navigation {
        gap: 30px;
    }

    .overview-image-container {
        padding-left: 0px;
    }

    .product-showcase {
        height: 500px;
    }
}

/* 响应式设计 - PC样式 */
@media (min-width: 1366px) {
    /*.brothersbox-overview-section {*/
    /*    padding: 100px 0;*/
    /*}*/

    .overview-title {
        font-size: 32px;
    }

    .product-showcase {
        height: 450px;
    }
}

/* Turn Ideas Into Reality Section Styles */
.turn-ideas-reality-section {
    padding-top: 100px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .turn-ideas-reality-section {
        padding: 40px 15px;
    }
}

.tir-container {
    max-width: 1300px;
    /* Max width for the container */
    margin: 0 auto;
    padding: 0;
    position: relative;
    /* For swiper navigation positioning */
}

.tir-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
}

@media(max-width:767px){
    .tir-header{
        margin-bottom: 40px;
    }
}

.tir-header-content {
    width: 100%;
    text-align: center;
    /* Limit width of text content */
}

.tir-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

@media(min-width:768px) and (max-width:1365px) {
    .tir-main-title {
        font-size: 30px;
    }
}

.tir-subtitle {
    font-size: 18px;
    color: #000;
    line-height: 2;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .tir-subtitle {
        font-size: 16px;
    }
}

.tir-view-more-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.tir-view-more-btn:hover {
    background-color: #d9d9d9;
    border-color: #d9d9d9;
    color: #333;
}

.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 */
/*
.tir-button-prev,
.tir-button-next {
    color: #000;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.tir-button-prev::after,
.tir-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.tir-button-prev {
    left: -15px;
}

.tir-button-next {
    right: -15px;
}
*/

/* Swiper Pagination - COMMENTED OUT */
/*
.tir-pagination .swiper-pagination-bullet {
    background-color: #aaa;
    opacity: 0.7;
}

.tir-pagination .swiper-pagination-bullet-active {
    background-color: #000;
    opacity: 1;
}
*/

/* 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 */
    /*
    .tir-button-prev {
        left: 5px;
    }
    .tir-button-next {
        right: 5px;
    }
    */
}

@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: 24px;
    }

    .tir-subtitle {
        font-size: 14px;
    }

    .tir-view-more-btn {
        align-self: flex-start;
    }

    /* Navigation buttons hide rule removed as buttons are removed */
    /*
    .tir-button-prev,
    .tir-button-next {
        display: none;
    }
    */
    .tir-swiper {
        padding-bottom: 10px;
        /* Adjusted padding as pagination is removed */
    }
}

/* Sustainability Section */
.sustainability-section {
    /*margin: 0 20px;*/
    width: calc(100% - 40px);
    /* background-attachment: fixed; */
}
.sustainability-background {
    padding: 16px;
    border-radius: 12px;
    background-color: #b5e7a3;
}
.sustainability-contain {
    background-size: cover;
    background-color: #b5e7a3;
    background-position: center center;
}
.sustainability-contain {
    width: 100%;
    position: relative;
    color: #fff;
    height: 650px;
    display: flex;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    /*clip-path: inset(0px round 12px);*/
}
.sustainability-contain img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0px 0% 0px 0px round 12px);
    animation: clipOut 400ms linear forwards;
}
.sustainability-background:hover .sustainability-contain img {
    clip-path: inset(0px 41% 0px 0px round 12px);
    animation: springClip 800ms linear forwards;
}
.sustainability-right {
    width: 100%;
    height: 100%;
    /*transition: translateX 0.3s ease;*/
    /*animation: epic-out 400ms linear forwards;*/
}
.sustainability-right-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b5e7a3;
    text-align: left;
    padding: 50px;
    display: flex;
    transform: translateX(0%);
    flex-direction: column;
    justify-content: end;
    animation: translateOut 400ms linear forwards;
}
.sustainability-background:hover .sustainability-right-content {
    animation: springTranslate 800ms linear forwards;
}
.sustainability-background:hover .sustainability-right {
    /*transform: translateX(100%);*/
    /*animation: springTranslate 800ms linear forwards;*/
    /*clip-path: inset(0px 40% 0px 0px round 12px);*/
}

.sustainability-title {
    width: 30%;
}
.sustainability-right-content h2 {
    font-size: 42px;
}
.sustainability-right-content p {
    font-size: 22px;
}
.sustainability-more {
    width: 30%;
    margin-top: 30px;
}
@keyframes clipOut {
    from {clip-path: inset(0px 41% 0px 0px round 12px);}
    to {clip-path: inset(0px 0% 0px 0px round 12px);}
}
@keyframes translateOut {
    from {transform: translateX(-41%);}
    to {transform: translateX(0%);}
}
@keyframes springClip {
    0% { clip-path: inset(0px 0% 0px 0px round 12px); }
    1% { clip-path: inset(0px 0.302% 0px 0px round 12px); }
    2% { clip-path: inset(0px 1.154% 0px 0px round 12px); }
    3% { clip-path: inset(0px 2.492% 0px 0px round 12px); }
    4% { clip-path: inset(0px 4.251% 0px 0px round 12px); }
    5% { clip-path: inset(0px 6.366% 0px 0px round 12px); }
    6% { clip-path: inset(0px 8.772% 0px 0px round 12px); }
    7% { clip-path: inset(0px 11.408% 0px 0px round 12px); }
    8% { clip-path: inset(0px 14.213% 0px 0px round 12px); }
    9% { clip-path: inset(0px 17.133% 0px 0px round 12px); }
    10% { clip-path: inset(0px 20.114% 0px 0px round 12px); }
    11% { clip-path: inset(0px 23.108% 0px 0px round 12px); }
    12% { clip-path: inset(0px 26.071% 0px 0px round 12px); }
    13% { clip-path: inset(0px 28.964% 0px 0px round 12px); }
    14% { clip-path: inset(0px 31.752% 0px 0px round 12px); }
    15% { clip-path: inset(0px 34.406% 0px 0px round 12px); }
    16% { clip-path: inset(0px 36.900% 0px 0px round 12px); }
    17% { clip-path: inset(0px 39.215% 0px 0px round 12px); }
    18% { clip-path: inset(0px 41.333% 0px 0px round 12px); }
    19% { clip-path: inset(0px 43.244% 0px 0px round 12px); }
    20% { clip-path: inset(0px 44.941% 0px 0px round 12px); }
    21% { clip-path: inset(0px 46.418% 0px 0px round 12px); }
    22% { clip-path: inset(0px 47.677% 0px 0px round 12px); }
    23% { clip-path: inset(0px 48.720 0px 0px round 12px); }
    24% { clip-path: inset(0px 49.552% 0px 0px round 12px); }
    25% { clip-path: inset(0px 50.183% 0px 0px round 12px); }
    26% { clip-path: inset(0px 50.621% 0px 0px round 12px); }
    27% { clip-path: inset(0px 50.880% 0px 0px round 12px); }
    28% { clip-path: inset(0px 50.972% 0px 0px round 12px); }
    29% { clip-path: inset(0px 50.912 0px 0px round 12px); }
    30% { clip-path: inset(0px 50.716 0px 0px round 12px); }
    31% { clip-path: inset(0px 50.398% 0px 0px round 12px); }
    32% { clip-path: inset(0px 49.976% 0px 0px round 12px); }
    33% { clip-path: inset(0px 49.465 0px 0px round 12px); }
    34% { clip-path: inset(0px 48.881% 0px 0px round 12px); }
    35% { clip-path: inset(0px 48.239% 0px 0px round 12px); }
    36% { clip-path: inset(0px 47.555% 0px 0px round 12px); }
    37% { clip-path: inset(0px 46.840% 0px 0px round 12px); }
    38% { clip-path: inset(0px 46.110% 0px 0px round 12px); }
    39% { clip-path: inset(0px 45.375% 0px 0px round 12px); }
    40% { clip-path: inset(0px 44.647% 0px 0px round 12px); }
    41% { clip-path: inset(0px 43.935% 0px 0px round 12px); }
    42% { clip-path: inset(0px 43.248% 0px 0px round 12px); }
    43% { clip-path: inset(0px 42.593% 0px 0px round 12px); }
    44% { clip-path: inset(0px 41.977% 0px 0px round 12px); }
    45% { clip-path: inset(0px 41.404% 0px 0px round 12px); }
    46% { clip-path: inset(0px 40.880% 0px 0px round 12px); }
    47% { clip-path: inset(0px 40.405% 0px 0px round 12px); }
    48% { clip-path: inset(0px 39.984% 0px 0px round 12px); }
    49% { clip-path: inset(0px 39.616% 0px 0px round 12px); }
    50% { clip-path: inset(0px 39.302% 0px 0px round 12px); }
    51% { clip-path: inset(0px 39.041% 0px 0px round 12px); }
    52% { clip-path: inset(0px 38.831% 0px 0px round 12px); }
    53% { clip-path: inset(0px 38.672% 0px 0px round 12px); }
    54% { clip-path: inset(0px 38.560% 0px 0px round 12px); }
    55% { clip-path: inset(0px 38.492% 0px 0px round 12px); }
    56% { clip-path: inset(0px 38.466% 0px 0px round 12px); }
    57% { clip-path: inset(0px 38.477 0px 0px round 12px); }
    58% { clip-path: inset(0px 38.522% 0px 0px round 12px); }
    59% { clip-path: inset(0px 38.597% 0px 0px round 12px); }
    60% { clip-path: inset(0px 38.698% 0px 0px round 12px); }
    61% { clip-path: inset(0px 38.821% 0px 0px round 12px); }
    62% { clip-path: inset(0px 38.963% 0px 0px round 12px); }
    63% { clip-path: inset(0px 39.119% 0px 0px round 12px); }
    64% { clip-path: inset(0px 39.287% 0px 0px round 12px); }
    65% { clip-path: inset(0px 39.461% 0px 0px round 12px); }
    66% { clip-path: inset(0px 39.640% 0px 0px round 12px); }
    67% { clip-path: inset(0px 39.821% 0px 0px round 12px); }
    68% { clip-path: inset(0px 39.999% 0px 0px round 12px); }
    69% { clip-path: inset(0px 40.175% 0px 0px round 12px); }
    70% { clip-path: inset(0px 40.3440px 0px round 12px); }
    71% { clip-path: inset(0px 40.506% 0px 0px round 12px); }
    72% { clip-path: inset(0px 40.658% 0px 0px round 12px); }
    73% { clip-path: inset(0px 40.799% 0px 0px round 12px); }
    74% { clip-path: inset(0px 40.929 0px 0px round 12px); }
    75% { clip-path: inset(0px 41.047% 0px 0px round 12px); }
    76% { clip-path: inset(0px 41.152 0px 0px round 12px); }
    77% { clip-path: inset(0px 41.243% 0px 0px round 12px); }
    78% { clip-path: inset(0px 41.322% 0px 0px round 12px); }
    79% { clip-path: inset(0px 41.387% 0px 0px round 12px); }
    80% { clip-path: inset(0px 41.439% 0px 0px round 12px); }
    81% { clip-path: inset(0px 41.480 0px 0px round 12px); }
    82% { clip-path: inset(0px 41.508% 0px 0px round 12px); }
    83% { clip-path: inset(0px 41.526% 0px 0px round 12px); }
    84% { clip-path: inset(0px 41.534% 0px 0px round 12px); }
    85% { clip-path: inset(0px 41.532% 0px 0px round 12px); }
    86% { clip-path: inset(0px 41.521% 0px 0px round 12px); }
    87% { clip-path: inset(0px 41.504% 0px 0px round 12px); }
    88% { clip-path: inset(0px 41.479% 0px 0px round 12px); }
    89% { clip-path: inset(0px 41.450 0px 0px round 12px); }
    90% { clip-path: inset(0px 41.415% 0px 0px round 12px); }
    91% { clip-path: inset(0px 41.377% 0px 0px round 12px); }
    92% { clip-path: inset(0px 41.337% 0px 0px round 12px); }
    93% { clip-path: inset(0px 41.294% 0px 0px round 12px); }
    94% { clip-path: inset(0px 41.250% 0px 0px round 12px); }
    95% { clip-path: inset(0px 41.206% 0px 0px round 12px); }
    96% { clip-path: inset(0px 41.162 0px 0px round 12px); }
    97% { clip-path: inset(0px 41.119% 0px 0px round 12px); }
    98% { clip-path: inset(0px 41.077% 0px 0px round 12px); }
    99% { clip-path: inset(0px 41.037% 0px 0px round 12px); }
    100% { clip-path: inset(0px 41% 0px 0px round 12px); }
}
@keyframes springTranslate {
    0% { transform: translateX(0%); }
    1% { transform: translateX(-0.302%); }
    2% { transform: translateX(-1.154%); }
    3% { transform: translateX(-2.492%); }
    4% { transform: translateX(-4.251%); }
    5% { transform: translateX(-6.366%); }
    6% { transform: translateX(-8.772%); }
    7% { transform: translateX(-11.408%); }
    8% { transform: translateX(-14.213%); }
    9% { transform: translateX(-17.133%); }
    10% { transform: translateX(-20.114%); }
    11% { transform: translateX(-23.108%); }
    12% { transform: translateX(-26.071%); }
    13% { transform: translateX(-28.964%); }
    14% { transform: translateX(-31.752%); }
    15% { transform: translateX(-34.406%); }
    16% { transform: translateX(-36.900%); }
    17% { transform: translateX(-39.215%); }
    18% { transform: translateX(-41.333%); }
    19% { transform: translateX(-43.244%); }
    20% { transform: translateX(-44.941%); }
    21% { transform: translateX(-46.418%); }
    22% { transform: translateX(-47.677%); }
    23% { transform: translateX(-48.720%); }
    24% { transform: translateX(-49.552%); }
    25% { transform: translateX(-50.183%); }
    26% { transform: translateX(-50.621%); }
    27% { transform: translateX(-50.880%); }
    28% { transform: translateX(-50.972%); }
    29% { transform: translateX(-50.912%); }
    30% { transform: translateX(-50.716%); }
    31% { transform: translateX(-50.398%); }
    32% { transform: translateX(-49.976%); }
    33% { transform: translateX(-49.465%); }
    34% { transform: translateX(-48.881%); }
    35% { transform: translateX(-48.239%); }
    36% { transform: translateX(-47.555%); }
    37% { transform: translateX(-46.840%); }
    38% { transform: translateX(-46.110%); }
    39% { transform: translateX(-45.375%); }
    40% { transform: translateX(-44.647%); }
    41% { transform: translateX(-43.935%); }
    42% { transform: translateX(-43.248%); }
    43% { transform: translateX(-42.593%); }
    44% { transform: translateX(-41.977%); }
    45% { transform: translateX(-41.404%); }
    46% { transform: translateX(-40.880%); }
    47% { transform: translateX(-40.405%); }
    48% { transform: translateX(-39.984%); }
    49% { transform: translateX(-39.616%); }
    50% { transform: translateX(-39.302%); }
    51% { transform: translateX(-39.041%); }
    52% { transform: translateX(-38.831%); }
    53% { transform: translateX(-38.672%); }
    54% { transform: translateX(-38.560%); }
    55% { transform: translateX(-38.492%); }
    56% { transform: translateX(-38.466%); }
    57% { transform: translateX(-38.477%); }
    58% { transform: translateX(-38.522%); }
    59% { transform: translateX(-38.597%); }
    60% { transform: translateX(-38.698%); }
    61% { transform: translateX(-38.821%); }
    62% { transform: translateX(-38.963%); }
    63% { transform: translateX(-39.119%); }
    64% { transform: translateX(-39.287%); }
    65% { transform: translateX(-39.461%); }
    66% { transform: translateX(-39.640%); }
    67% { transform: translateX(-39.821%); }
    68% { transform: translateX(-39.999%); }
    69% { transform: translateX(-40.175%); }
    70% { transform: translateX(-40.344%); }
    71% { transform: translateX(-40.506%); }
    72% { transform: translateX(-40.658%); }
    73% { transform: translateX(-40.799%); }
    74% { transform: translateX(-40.929%); }
    75% { transform: translateX(-41.047%); }
    76% { transform: translateX(-41.152%); }
    77% { transform: translateX(-41.243%); }
    78% { transform: translateX(-41.322%); }
    79% { transform: translateX(-41.387%); }
    80% { transform: translateX(-41.439%); }
    81% { transform: translateX(-41.480%); }
    82% { transform: translateX(-41.508%); }
    83% { transform: translateX(-41.526%); }
    84% { transform: translateX(-41.534%); }
    85% { transform: translateX(-41.532%); }
    86% { transform: translateX(-41.521%); }
    87% { transform: translateX(-41.504%); }
    88% { transform: translateX(-41.479%); }
    89% { transform: translateX(-41.450%); }
    90% { transform: translateX(-41.415%); }
    91% { transform: translateX(-41.377%); }
    92% { transform: translateX(-41.337%); }
    93% { transform: translateX(-41.294%); }
    94% { transform: translateX(-41.250%); }
    95% { transform: translateX(-41.206%); }
    96% { transform: translateX(-41.162%); }
    97% { transform: translateX(-41.119%); }
    98% { transform: translateX(-41.077%); }
    99% { transform: translateX(-41.037%); }
    100% { transform: translateX(-41%); }
}
.sustainability-content {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
}


@media(min-width:768px) and (max-width:1365px) {
    .sustainability-title {
        font-size: 30px;
    }
}

@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;
    background-color: #fff;
    color: #222;
    /* padding: 12px 40px; */
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    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 {
    background-color: #FF99D3;
    transform: translateY(-2px);
    color: #fff;
}

/* Quote Section */
.quote-section {
    padding-top: 100px;
    /*background: #EFEFEF;*/
    /*gap: 50px;*/
    padding-left: 20px;
    padding-right: 20px;
}
.quote-box2 {
    display: flex;
    max-width: 1680px;
    margin: 0 auto;
}
.quote-pic {
    position: relative;
    margin: 80px;
    /*width: 50%;*/
}
.quote-pic img {
    position: relative;
    width: 100%;
}
.quote-background {
    background-color: #FFF8ED;
    position: absolute;
    height: 100%;
    width: 100%;
    top: -80px;
    left: -80px;
}

.quote-container {
    /*width: 50%;*/
    max-width: 1300px;
    margin: auto;
    text-align: left;
    padding-bottom: 20px;
}

.quote-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    padding-bottom: 30px;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .quote-main-title {
        font-size: 30px;
    }
}

@media(max-width:767px){
    .quote-main-title{
        font-size: 24px;
    }
}

.quote-container p {
    font-size: 18px;
    color: #000;
}

@media(min-width:768px) and (max-width:1365px) {
    .quote-container p {
        font-size: 16px;
    }
}

@media(max-width:767px){
    .quote-container p{
        font-size: 14px;
    }
    .quote-box2 {
        flex-direction: column;
        gap: 30px;
    }
}

/* Certification Section */
.certification-section {
    padding-top: 100px;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

.certification-header {
    display: flex;
}

.certification-header-content{
    width:100%;
    margin:auto;
    text-align: center;
}

@media(max-width:767px){
    .certification-header-content{
        width: 100%;
    }
}

.certification-main-title{
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .certification-main-title{
        font-size: 30px;
    }
}

@media(max-width:767px){
    .certification-main-title{
        font-size: 24px;
    }
}

.certification-subtitle{
    font-size: 18px;
    color: #000;
    text-align: center;
}

.how-it-work-section {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 100px;
}
.how-it-work-box {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.how-it-work-title {
    margin-bottom: 60px;
}
.how-it-work-title h2 {
    font-size: 32px;
    font-weight: bold;
}
.how-it-work-container {
    display: flex;
    width: 100%;
    /*gap: 50px;*/
    justify-content: space-between;
    margin-bottom: 60px;
}
.how-it-work-item {
    display: flex;
    flex-direction: column;
    flex: 1 0 20%;
    align-items: center;
}
.how-it-work-item img {
    max-height: 200px;
    object-fit: contain;
}
.how-it-work-border {
    display: block;
    width: 34px;
    height: 4px;
    margin-top: 20px;
    background-color: #FF99D3;
}
.how-it-work-item h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}


@media (max-width: 767px) {
    .how-it-work-section {
        width: 100%;
        margin: 0 auto;
    }
    .how-it-work-title h2 {
        font-size: 24px;
        font-weight: bold;
    }
    .how-it-work-title {
        margin-bottom: 30px;
    }
    .how-it-work-container {
        flex-direction: column;
    }
    .how-it-work-item h3 {
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .how-it-work-item img {
        max-height: none;
        width: 100%;
    }
    .brand-box-row-item {
        min-width: 400px;
    }
    .quote-section {
        flex-direction: column;
    }
    .quote-pic {
        margin: 30px;
    }
    .quote-background {
        top: 30px;
        left: 30px;
    }
}
