.hero,
.video-section,
.product-collection,
.product-collection-swiper {
    max-width: 100%;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    margin-top: 100px;
    background-image: url('/static/img/index-img/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 104px;
    padding-bottom: 40px;
    color: white;
}

@media (max-width: 600px) {
    .hero {
        height: 60vh;
        padding-left: 40px;
    }
}

@media (max-width: 1024px) {
    .hero {
        height: 60vh;
        padding-left: 40px;
    }
}

.hero-info {
    padding-bottom: 4%;
}

.info-box {
    max-width: 80%;
    text-align: left;
}

.info-box h1 {
    margin-bottom: 20px;
    font-family: 'Fahkwang', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    color: #fff;
}

.info-box p {
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.btn1 {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;

    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.btn1:hover {
    background-color: #000;
    color: #fff;
}

.video-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-title {
    text-align: center;
    padding: 48px 5vw 24px;
}

.video-title h1 {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.video-background {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.hotspot {
    position: absolute;
    width: 48px;
    height: 48px;
    border: rgba(79, 177, 206, 0.7) 2px solid;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 206, 213, 0.7) 0%, rgba(79, 177, 206, 0.7) 100%);


    box-shadow: 0 0 12px rgba(165, 206, 213, 0.9);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%) scale(0.5);
    -webkit-tap-highlight-color: transparent;

}

.hotspot.visible {
    opacity: 1;
    pointer-events: auto;
    animation: bounceIn 0.6s ease-out forwards, bounceLoop 1.6s ease-in-out 0.6s infinite;
}


@keyframes bounceIn {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes bounceLoop {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    60% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

#click-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;

    transition: opacity 0.7s ease;
    display: none;
    z-index: 49999;
}

#floating-image {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50vw;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 50000;
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    box-sizing: border-box;
}

#floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

#floating-image .close-btn {
    cursor: pointer;
    padding: 6px 12px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background: #0077ED;
    color: white;
    transition: background 0.3s ease;
}

#floating-image .close-btn:hover {
    background: #005bb5;
}

.product-collection {
    margin: 0px 40px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.product-collection-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0px;
}

.product-collection-top h2 {
    font-size: clamp(12px, 2.5vw, 20px);
    font-weight: 400;
    font-family: 'Fahkwang', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.btn2 {
    display: inline-block;
    padding: 12px 24px;
    color: #000;
    text-decoration: none;
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: black 1px solid;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.btn2:hover {
    background-color: black;
    color: white;
}

.product-collection-swiper {
    padding: 0 40px 60px;
    position: relative;
    overflow: visible !important;
    box-sizing: border-box;
    user-select: none;
}

.product-collection-wrapper {
    overflow: visible !important;
    box-sizing: border-box;
}

.product-collection-slide {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    transition: width 0.4s ease !important;
    width: 320px !important;


    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.product-collection-slide.hovered {
    width: 540px !important;
    background-color: white;
    border-radius: 8px;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    z-index: 11;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    transition: none !important;
    transform: none !important;
}

.product-card-span {
    font-size: 18px;

    text-align: center;
    padding: 10px 0;
}

.product-card-description {
    width: 0;

    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
    transform: translateX(-200%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
    text-align: left
}

.product-collection-slide.hovered .product-card-description {
    width: 220px;
    padding: 24px 0 0 24px;
    overflow: visible;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.project-card-desc-item {

    list-style: none;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 12px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.project-card-desc-item:hover {
    color: var(--salmon-pink);
}

.project-card-desc-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--salmon-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.project-card-desc-item:hover::after {
    transform: scaleX(1);
}

.product-collection-slide-spacer {
    width: 50%;
    max-width: 200px;


    display: flex;
    justify-content: center;

    align-items: center;

    box-sizing: border-box;
    padding: 0 10px;

    line-height: 480px;
}

.product-collection-slide.hovered .product-collection-slide-spacer {
    background-color: var(--color5);
}

.product-collection-slide-spacer a {
    font-size: 20px;
    font-weight: 400;
    color: #0077ED;
    user-select: none;
    text-decoration: underline;
}

.product-collection-bottom-bar {
    width: 100%;
    display: flex;
    justify-content: center;

    align-items: center;
    margin-top: 40px;
    box-sizing: border-box;
    height: 48px;
    padding: 0 20px;

    gap: 20px;

}

.product-collection-swiper-pagination {
    flex: 0 0 150px;
    height: 6px;
    background-color: #ccc;
    border-radius: 3px;
    overflow: hidden;
    margin: 0;

    position: relative !important;
    display: block;
}

.product-collection-swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: black !important;
    height: 100%;
    transition: width 0.3s ease;
}

.custom-swiper-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid black;

    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;

}

.custom-swiper-button:hover {
    background-color: black;
    color: white;
}

.custom-swiper-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 48px 40px;
    width: 100%;
    box-sizing: border-box;
}

.about-us .company-introduction,
.about-us .video-wrapper {
    flex: 1 1 45%;
}

.about-us .info-box {
    width: 100%;
    max-width: 90%;
}

.experience-bar {
    width: 90%;
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    box-sizing: border-box;
}

.experience-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
}

.experience-number {
    color: #ff0000;
    margin-bottom: 16px;
}

.experience-bar-item span {
    color: var(--color3);
    font-size: clamp(12px, 2vw, 16px);
}

.video-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1500px) {

    .about-us .company-introduction,
    .about-us .video-wrapper {
        flex: 1 1 100%;
    }

    .experience-bar {
        width: 100%;
    }
}

.order-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 72px;
    padding: 48px 40px;
    background-image: url('/static/img/index-img/order-process/order-process-bg.jpg');

    background-size: cover;
    background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
}

.order-process .info-box {
    flex: 1 1 30%;
    padding-right: 24px;
    color: white;
}

.order-process .info-box h2 {
    color: #fff;
}

.order-process .info-box .btn2 {
    color: white;
    border: white 1px solid;
}

.order-process .info-box .btn2:hover {
    background-color: white;
    color: #000;
}

.order-process-item {
    flex: 1 1 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.order-process-step {
    display: flex;
    width: calc(40%);
    background-color: rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.order-process-step:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.order-process-step img {
    width: 168px;
    height: 224px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    display: block;
    user-select: none;
}

.info-box2 {

    height: 224px;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info-box2 h3 {
    font-size: clamp(14px, 2vw, 18px);
    display: flex;
    align-items: center;
}

.info-box2 h3 i {
    margin-right: 6px;
}

.info-box2 p {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 16px;
}

@media (max-width: 1500px) {
    .order-process {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-process .info-box {
        flex: 1 1 100%;
        padding-right: 0;
        margin-bottom: 48px;
    }

    .order-process-item {
        flex: 1 1 100%;
        justify-content: center;
    }

    .order-process-step {
        width: calc(50% - 16px);

    }


}

@media (max-width: 900px) {
    .order-process-step {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
    }

    .order-process-step img {
        width: 120px;
        height: 160px;
        border-radius: 8px 0 0 8px;
    }

    .info-box2 {
        flex: 1;
        height: 160px;
        padding: 16px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.project-cases {
    padding: 40px 5vw;
}

.project-cases-title {
    text-align: center;
    padding: 48px 5vw 24px;
}

.project-cases-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    user-select: none;
}

.project-cases-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    width: 100%;
}

.project-cases-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-cases-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.project-cases-item:hover .project-cases-item-overlay {
    opacity: 1;
}

.project-cases-item-overlay p {
    font-size: clamp(16px, 2vw, 24px);
    margin-bottom: 24px;
    color: white;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.4s ease;
}

.project-cases-item-overlay a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.project-cases-item:hover .project-cases-item-overlay p,
.project-cases-item:hover .project-cases-item-overlay a {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .project-cases-container {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (max-width: 600px) {
    .project-cases-container {
        grid-template-columns: 1fr;

    }
}

.discount {
    width: 100%;
    height: 480px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 72px;
    padding: 48px 40px;
    background-image: url('/static/img/index-img/discount-bg.jpg');

    background-size: cover;
    background-attachment: fixed;

    background-position: center;
    background-repeat: no-repeat;
}

.discount .info-box {
    text-align: center;
    color: white;
    max-width: 100%;
    padding: 0 5vw;
}

.discount .info-box-title {
    font-size: clamp(12px, 1.5vw, 14px);
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.discount .info-box-description {
    font-size: clamp(24px, 5vw, 56px);
    margin: 0 0 24px;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: #fff;
}

.discount .info-box .btn1:hover {
    background-color: black;
    color: white;
}

.marquee-section {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-slide {
    width: 400px;
    flex-shrink: 0;
    margin-right: 12px;
    overflow: hidden;
    position: relative;
}

.marquee-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.marquee-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.marquee-slide:hover .marquee-slide-overlay {
    opacity: 1;
    pointer-events: auto;
}

.overlay-btn {
    padding: 8px 16px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 32px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.blog-desc {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 12px 24px;
    z-index: 2;
}

.blog-title {
    font-size: 18px;
    font-weight: 400;
}

.blog-contry {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .marquee-slide {
        width: 300px;
    }
}