/* banner */
.banner-section {
    height: 100vh;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.banner-section .banner-container {
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner-section .banner-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000;
    pointer-events: none;
}



/* about-section */
.about-section {
    padding: 80px 0;
    /* background-image: url('/assets/images/about-bg.webp'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

.about-wrapper {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    width: 100%;
}

.about-left {
    width: 40%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-left:hover img {
    transform: scale(1.05);
}

.about-content {
    width: 60%;
}

.about-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about-title {
    font-size: 60px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-btn span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn span svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: all 0.3s ease;
}


.primary-btn:hover span svg {
    transform: translateX(5px);
}

.about-text {
    position: relative;
    padding-left: 30px;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
    opacity: 0.5;
}

.about-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--family-font-secondary);
    margin-bottom: 30px;
}



/* values-section */
.values-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.values-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
}

.values-left {
    width: 100%;
}

.values-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.values-title {
    font-size: 60px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
}

.values-text {
    display: flex;
    align-items: stretch;
    gap: 20px;
    justify-content: space-between;
    position: relative;
}

.values-item {
    width: 30%;
    flex: 1 auto;
    padding: 30px 25px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.values-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.5s ease;
    transform: translateY(-50%) scaleY(0);
}

.values-item h3 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-style: italic;
}

.values-item h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.values-item p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--family-font-secondary);
    text-align: center;
    flex: 1;
}

.values-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.values-right .icon {
    width: 78%;
    height: 78%;
    object-fit: cover;
}

.values-item:hover {
    transform: translateY(-10px);
}

.values-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}



/* bussiness-section */
.bussiness-section {
    padding: 80px 0;
}

.bussiness-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bussiness-title {
    font-size: 60px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
    width: 100%;
}

.bussiness-wrapper p {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--family-font-secondary);
    position: relative;
    padding-left: 30px;
}

.bussiness-wrapper p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.bussiness-item {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(28, 44, 60, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    border-radius: 10px;
    height: 100%;
    min-height: 300px;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.bussiness-item svg {
    color: #fff;
    width: 38px;
    height: 38px;
}

.bussiness-item .image-box {
    color: var(--secondary-color);
    background-color: rgba(28, 44, 60, 0.3);
    width: 100%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.bussiness-item .image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bussiness-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    position: relative;
    padding: 0 15px;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--family-font-secondary);
}


.bussiness-item:hover h3 {
    color: var(--secondary-color);
}

.bussiness-item:hover svg {
    color: var(--secondary-color);
}

/* bussiness-swiper 樣式 */
.bussiness-swiper {
    position: relative;
    padding: 40px 0px;
}

.bussiness-swiper .swiper-slide {
    height: auto;
}

/* 左右箭頭樣式 */
.bussiness-swiper-button-prev,
.bussiness-swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.bussiness-swiper-button-prev::after,
.bussiness-swiper-button-next::after {
    font-size: 13px;
    font-weight: 600;
}

.bussiness-swiper-button-prev {
    left: 10px;
    transform: translateX(-100%) translateY(-50%);
}

.bussiness-swiper-button-next {
    right: 10px;
    transform: translateX(100%) translateY(-50%);
}

.bussiness-swiper:hover .bussiness-swiper-button-prev {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.bussiness-swiper:hover .bussiness-swiper-button-next {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.bussiness-swiper-button-prev:hover,
.bussiness-swiper-button-next:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.01);
}

.bussiness-swiper-button-prev.swiper-button-disabled,
.bussiness-swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* 分頁點樣式 */
.bussiness-swiper-pagination {
    /* position: relative; */
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.bussiness-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(28, 44, 60, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.bussiness-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    width: 18px;
    height: 8px;
    border-radius: 6px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .bussiness-swiper {
        padding: 40px 0px;
    }

    .bussiness-swiper-button-prev,
    .bussiness-swiper-button-next {
        width: 35px;
        height: 35px;
    }

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

.bussiness-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.bussiness-btn .primary-btn {
    padding: 12px 40px;
    font-size: 17px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.bussiness-btn .primary-btn:hover {
    background-color: var(--secondary-color);
}







/* clients-section */
.clients-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.clients-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧内容区域 */
.clients-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.clients-content {
    padding-right: 20px;
}

.clients-title {
    font-size: 56px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
    margin-bottom: 25px;
    font-family: var(--family-font);
    position: relative;
    padding-bottom: 20px;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.clients-content p {
    font-size: 16px;
    color: rgba(28, 44, 60, 0.7);
    font-weight: 400;
    line-height: 1.7;
    font-family: var(--family-font-secondary);
    margin-bottom: 25px;
}

.clients-link {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--family-font-secondary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.clients-link span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-link span svg {
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.clients-link span svg path {
    fill: var(--secondary-color);
}


.clients-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.clients-link:hover {
    color: var(--secondary-color);
}

.clients-link:hover span svg {
    transform: translateX(5px);
}

.clients-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.clients-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clients-image:hover img {
    transform: scale(1.08);
}

/* 右侧行业展示区域 */
.clients-right {
    flex: 1;
    min-width: 0;
}

.industry-container {
    position: relative;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.industry-item {
    background-color: #f8f8f8;
    color: var(--primary-color);
    padding: 20px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    font-family: var(--family-font-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    line-height: 1.5;
}

.industry-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--secondary-color);
    transition: height 0.3s ease;
}

.industry-item:hover {
    background-color: #ffffff;
    border-color: rgba(28, 44, 60, 0.1);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(28, 44, 60, 0.08);
}

.industry-item:hover::before {
    height: 60%;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .clients-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .clients-left {
        width: 100%;
    }

    .clients-content {
        padding-right: 0;
    }

    .clients-image {
        height: 400px;
    }

    .clients-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-title {
        font-size: 30px;
    }

    .clients-content p {
        font-size: 15px;
    }

    .clients-image {
        height: 320px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-item {
        padding: 18px 16px;
        font-size: 14px;
    }
}

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

    .clients-content p {
        font-size: 15px;
    }

    .clients-link {
        font-size: 14px;
    }

    .clients-image {
        height: 250px;
    }

}



/* company-section */
.company-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.company-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.company-left {
    width: 55%;
}

.company-left .title-wrapper h2 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
    width: 100%;
    margin-bottom: 20px;
}

.company-left .title-wrapper h3 {
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
    font-style: italic;
    width: 100%;
}

.message-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding-left: 30px;
}

.message-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
}

.mes-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mes-item span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mes-item span svg {
    width: 22px;
    height: 22px;
}

.mes-item span svg path {
    fill: var(--secondary-color);
}

.mes-item a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-family: var(--family-font-secondary);
}

.mes-item a:hover {
    color: var(--secondary-color);
}

.company-right {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.company-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.company-right:hover img {
    transform: scale(1.05);
}



@media screen and (max-width: 992px) {
    .banner-section {
        height: 100vh;
        max-height: 100vh;
        position: relative;
        z-index: 1;
    }

    .banner-section .banner-container {
        position: relative;
        z-index: 1;
    }

    .banner-section .banner-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        background-color: #000;
        pointer-events: none;
    }

    .banner-swiper .swiper-slide .overlay-content h1 {
        font-size: 22px;
        padding-top: 20px;
    }

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

    .about-wrapper {
        flex-direction: column;
        padding: 0px;
        background-color: transparent;
    }

    .about-left {
        width: 100%;
    }

    .about-content {
        width: 100%;
    }

    .about-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 30px;
        color: #fff;
    }

    .about-text {
        padding-left: 20px;
    }

    .about-text p {
        font-size: 15px;
    }

    .primary-btn {
        font-size: 15px;
    }

    .primary-btn span {
        font-size: 15px;
    }

    .primary-btn span svg {
        width: 12px;
        height: 12px;
    }

    .values-section {
        padding: 40px 0;
    }

    .values-title {
        font-size: 30px;
    }

    .values-wrapper {
        flex-direction: column;
        position: relative;
    }

    .values-left {
        width: 100%;
    }

    .values-text {
        flex-direction: column;
    }

    .values-item {
        width: 100%;
        padding: 20px;
    }

    .values-title-wrapper {
        margin-bottom: 20px;
    }

    .values-text::before {
        left: 0;
        right: auto;
    }

    .values-right {
        width: 50px;
        height: 50px;
        position: absolute;
        top: -5px;
        left: 0;
        display: inline-block;
    }


    .bussiness-section {
        padding: 40px 0;
    }

    .bussiness-wrapper {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .bussiness-title {
        font-size: 30px;
    }

    .bussiness-wrapper p {
        padding-left: 20px;
        font-size: 16px;
    }

    .bussiness-item {
        padding: 0;
    }

    .bussiness-btn .primary-btn {
        font-size: 15px;
        padding: 10px 30px;
    }

    .bussiness-btn {
        margin-top: 20px;
    }

    .clients-section {
        padding: 40px 0;
    }

    .clients-link span {
        padding-bottom: 3px;
    }

    .clients-title {
        margin-bottom: 20px;
    }

    .clients-wrapper {
        gap: 20px;
    }

    .clients-left {
        gap: 20px;
    }


    .company-section {
        padding: 40px 0;
    }

    .company-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .company-left .title-wrapper h3 {
        font-size: 30px;
    }

    .company-left {
        width: 100%;
    }

    .company-left .title-wrapper h2 {
        font-size: 26px;
    }

    .message-wrapper {
        margin-top: 20px;
        padding-left: 15px;
    }

    .mes-item a {
        font-size: 15px;
    }

    .company-right {
        width: 100%;
    }

    .mes-item span svg {
        width: 20px;
        height: 20px;
    }

    .mes-item {
        gap: 10px;
    }
}