@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
.slick-has-nav {
    position: relative;
}
.ks-right .slick-prev {
    left: auto;
    right: 58px;
    top: auto;
    bottom: 14px;
    transform: none;
}

.ks-right .slick-next {
    right: 14px;
    top: auto;
    bottom: 14px;
    transform: none;
}

.slider-section {
    /* margin-bottom: 40px; */
    position: relative;
    width: 100%;
    /* height: 50vh; */
    /* min-height: 500px; */
    /* overflow: hidden; */
    /* background: #000; */
}

@media (max-width: 992px) {
    .slider-section {
        /* height: 70vh; */
        /* min-height: 400px; */
    }
}

@media (max-width: 768px) {
    .slider-section {
        /* height: 40vh; */
        /* min-height: auto; */
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper .slick-list,
.slider-wrapper .slick-track {
    /* height: 100%; */
}

.slide-item {
    position: relative;
    width: 100%;
    /* height: 100%; */
    /* outline: none; */
}

.slide-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-item img,
.slide-item video {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    /* transition: transform 6s ease; */
    /* For zoom effect */
}

.slider-wrapper .slick-active img,
.slider-wrapper.slick-active video {
    /* transform: scale(1.1); */
    /* Subtle zoom in when active */
}

/* Overlay text */
.slide-item .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: var(--color-3);
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.slide-content h2 {
    font-size: clamp(24px, 4vw, 45px);
    font-weight: 600;
    margin-bottom: 15px;
    /* text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 20px;
    line-height: 1.2;
    opacity: 0;
    filter: blur(10px);
    font-family: "Noto Serif", serif;
}

.slide-content span {
    text-transform: uppercase;
}

.slide-content p {
    font-size: clamp(14px, 3vw, 20px);
    /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); */
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-3);
    max-width: 850px;
    line-height: 1.6;
    opacity: 0;
    filter: blur(10px);
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.slide-btn svg {
    width: 20px;
}

.slide-btn-primary {
    background-color: #1d1d1d;
    color: #fff;
    border: 1px solid #1d1d1d;
}

.slide-btn-primary svg {
    /* fill: #fff; */
}

.slide-btn-primary:hover {
    background-color: transparent;
    border-color: #1d1d1d;
    transform: translateY(-3px);
    color: #1d1d1d;
}

.slide-btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #1d1d1d;
    border: 1px solid #1d1d1d;
}

.slide-btn-outline:hover {
    background-color: #1d1d1d;
    border-color: #1d1d1d;
    transform: translateY(-3px);
    color: #fff;
}

.slide_content_in {
    max-width: 500px;
}


/* Enhanced Button Style */
.btn-view-all {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    filter: blur(10px);
}

/* Animation triggers */
.slick-active .slide-content h2 {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.slick-active .slide-content p {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.slick-active .btn-view-all {
    animation: softEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

@keyframes softEntrance {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Dark overlay */
.slide-item1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    z-index: 1;
}

/* Navigation buttons (now using slick default unified styling instead of manual) */
.slider-section .slick-prev,
.slider-section .slick-next {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    opacity: 0;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
}

.slider-section:hover .slick-prev,
.slider-section:hover .slick-next {
    opacity: 1;
}

.slider-section .slick-prev:hover,
.slider-section .slick-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-section .slick-prev {
    left: 40px;
}

.slider-section .slick-next {
    right: 40px;
}

@media (max-width: 768px) {

    .slider-section .slick-prev,
    .slider-section .slick-next {
        width: 44px;
        height: 44px;
    }

    .slider-section .slick-prev {
        left: 15px;
    }

    .slider-section .slick-next {
        right: 15px;
    }
}

.slider-section .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 8px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
}

.slider-section .slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 0;
    border: 0;
}

.slider-section .slick-dots li button {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3) !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 0;
    box-shadow: none;
    line-height: 0;
    display: block;
}

.slider-section .slick-dots li button::before {
    display: none !important;
}

.slider-section .slick-dots li.slick-active button {
    background: #FFF !important;
    width: 80px;
}

@media (max-width: 575px) {
    .slider-section .slick-dots li button {
        width: 10px;
    }

    .slider-section .slick-dots li.slick-active button {
        width: 50px;
    }

    .slider-section .slick-dots {
        bottom: 20px;
    }

    .slide-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.ks-section {
    padding: 0px 0 20px 0;
    position: relative;
}

.ks-section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(37 42 87 / 50%);
}

.ks-heading {
    text-align: center;
    margin-bottom: 52px;
}

.ks-eyebrow {
    font-size: 20px;
    color: #b89b6a;
    display: block;
    margin-bottom: 6px;
}

.ks-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.15;
    color: #1c1a16;
    display: inline-block;
    position: relative;
    padding-bottom: 24px;
}

/* wavy ribbon under title */
.ks-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 16'%3E%3Cpath d='M0 8 C15 2,30 14,45 8 S75 2,90 8 S120 14,135 8 S165 2,180 8' fill='none' stroke='%23b89b6a' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M10 12 C25 6,40 18,55 12 S85 6,100 12 S130 18,145 12 S170 6,180 12' fill='none' stroke='%23b89b6a' stroke-width='1' stroke-linecap='round' opacity='.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.zoom-slider-section .slick-has-nav .slick-prev {
    left: 10px;
}

.zoom-slider-section .slick-has-nav .slick-next {
    right: 10px;

}

.ks-desc {
    max-width: 540px;
    margin: 20px auto 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #7a7668;
    letter-spacing: .02em;
}

.ks-grid {
    display: grid;
    grid-template-columns: 30% auto;
    gap: 24px;
}

.ks-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.ks-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    display: block;
    transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.ks-card:hover img {
    transform: scale(1.06);
}

.ks-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 18, 12, .72) 0%, rgba(0, 0, 0, .08) 60%);
    transition: background .4s;
}

.ks-card:hover .overlay {
    background: linear-gradient(to top, rgba(20, 18, 12, .82) 0%, rgba(0, 0, 0, .16) 65%);
}

.card-body {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 30px 24px;
}

.brand-label {
    font-size: 18px;
    color: var(--color-3);
    display: block;
    margin-bottom: 2px;
}

.card-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-3);
    line-height: 1.15;
    margin-bottom: 10px;
}

.card-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--color-3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .25s;
}

.card-link::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--color-3);
    transition: width .3s;
}

.ks-card:hover .card-link {
    /* color: #fff; */
    text-decoration: underline;
}

.ks-card:hover .card-link::after {
    width: 32px;
}


.ks-parent::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 44px;
    height: 44px;
    border-top: 1.5px solid #FFF;
    border-left: 1.5px solid #FFF;
    z-index: 2;
    opacity: .7;
    pointer-events: none;
}

.ks-parent .card-body {
    padding: 36px 36px 32px;
}

.ks-parent .brand-label {
    font-size: 22px;
}

.ks-parent .card-title {
    font-size: 40px;
}

.ks-right {
    position: relative;
    overflow: hidden;
}


.sub-grid {
    display: grid;
}

/* Sub cards */
/* .sub-card {
  min-height: 222px;
} */

.sub-card .card-body {
    padding: 16px 18px 14px;
    position: absolute;
}

.sub-card .brand-label {
    font-size: 14px;
}

.sub-card .card-title {
    font-size: 19px;
    margin-bottom: 7px;
}

.sub-card .card-link {
    font-size: 12px;
}

/* Dots */
.ks-right .slick-dots {
    bottom: 20px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 6px;
}

.sub-grid .wrap-img {
    padding-bottom: 59%;
}

.ks-right .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.ks-right .slick-dots li button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    padding: 0;
    transition: background .25s, transform .25s;
}

.ks-right .slick-dots li button::before {
    display: none;
}

.ks-right .slick-dots li.slick-active button {
    background: #fff;
    transform: scale(1.35);
}
section.camnhan-slider {
    position: relative;
    padding: 50px 0;
    background: #F3F6FB;
}
section.camnhan-slider .title-hedding-top-pages {
    padding-top: 0;
    text-align: center;
    margin-top: 0;
}
.title-hedding-top-pages h2 {
    letter-spacing: 0;
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: var(--color-1);
    font-size: 32px;
    padding-bottom: 10px;
    font-family: "Playfair Display", serif;
}
.title-hedding-top-pages h2:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    background: var(--color-1);
    bottom: -5px;
}
.customer_review {
    margin-top: 2rem;
}

.customer_review .slick-arrow {
    display: none !important;
}

.customer_review .slick-track {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.customer_review .customer_item {
    flex: 1;
    background-color: #fff;
    min-height: 235px;
    height: 100%;
    margin: 15px 10px;
    text-align: center;
    background: #fff;
    box-shadow: 5px 6px 10px 0px rgb(0 0 0 / 10%);
    transition: 0.4s;
    padding: 20px;
    border-radius: 5px;
}

.customer_review {
    margin-left: -7px;
    margin-right: -7px;
}

.customer_review .slick-dots {
    bottom: -35px;
}

.rate .star {
    color: #FCC153;
    font-size: 17px;
    line-height: 26px;
}

.custormer_cmt {
    font-size: 15px;
    line-height: 24px;
    color: #333;
    /* margin-top: 1rem; */
    min-height: 120px;
}

.customer_info {
    margin-top: 1rem;
    text-align: center;
    margin: auto;
}

.customer_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.customer_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.customer_name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
    text-transform: uppercase;
    color: var(--color-1);
}

.customer_work {
    display: block;
    font-size: 14px;
    color: #848484;
}



@media (max-width: 1024px) {
    .ks-parent .card-title {
        font-size: 32px;
    }

    .sub-grid {
        gap: 12px;
    }

    .ks-grid {
        gap: 20px;
    }

    .sub-card {
        min-height: 184px;
    }
}

@media (max-width: 768px) {
    .ks-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 16px;
    }

    .ks-parent .card-title {
        font-size: 26px;
    }

    .sub-grid {
        gap: 10px;
    }

    .ks-right {
        min-height: 340px;
    }

    .sub-card {
        min-height: 165px;
    }

    .ks-section {
        padding: 0 0 30px;
    }
}

@media (max-width: 480px) {
    .ks-title {
        padding-bottom: 20px;
    }

    .ks-title::after,
    .about-title::after,
    .features-title::after,
    .collection-title::after,
    .news-title::after {
        width: 130px;
    }

    .ks-parent .card-body {
        padding: 20px;
    }

    .ks-parent .card-title {
        font-size: 22px;
    }

    .ks-parent .brand-label {
        font-size: 17px;
    }

    .ks-parent::before {
        width: 28px;
        height: 28px;
        top: 10px;
        left: 10px;
    }

    .sub-grid {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .ks-right {
        min-height: 280px;
    }

    .sub-card {
        min-height: 136px;
    }

    .sub-card .card-title {
        font-size: 14px;
    }

    .sub-card .card-body {
        padding: 10px 12px;
    }

    .ks-divider {
        display: none;
    }

    .ks-stat-num {
        font-size: 26px;
    }
}

/* load animation */
.ks-heading {
    animation: fadeUp .7s ease both;
}

.ks-grid {
    animation: fadeUp .7s .18s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    inset: 0;
    background-color: #0000004f;
}

.hero-section-wrap {
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.hero-left {
    flex: 1 1 550px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    margin-top: 0;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-right {
    flex: 1 1 50%;
    width: 50%;
    min-width: 0;
}

.hero-product-slider .product-card {
    margin: 10px;
}

.hero-product-slider .slick-slide {
    margin: 0 6px;
}

.hero-product-slider .slick-list {
    margin: 0 -6px;
}

.product-card {
    background: #ffffff;
    padding: 15px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #48aacc;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-image {
    width: 100%;
    height: 180px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #48aacc;
}

.price-old {
    color: #ccc;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* Slick arrows for hero slider moved to global */

/* Responsiveness */
@media (max-width: 1199px) {
    .hero-container {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 0px;
    }

    .hero-left {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }

    .hero-right {
        width: 100%;
        flex: 1 1 100%;
    }

    .hero-title {
        font-size: 40px;
    }
}

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

    .hero-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-product-slider .slick-prev {
        left: 0;
    }

    .hero-product-slider .slick-next {
        right: 0;
    }

    .hero-product-slider .slick-dots {
        margin-top: 12px;
    }
}

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

    .product-image {
        height: 150px;
    }
}

/* Zoom Slider Section */
.zoom-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* margin-top: 80px; */
}

.zoom-slide {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    outline: none;
}

.zoom-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zoom-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
    /* Long transition for smooth zoom */
}

/* Zoom effect when slide is active (Slick's class) */
.slick-current .zoom-slide-img img {
    transform: scale(1.15);
}

.zoom-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Light overlay */
    z-index: 2;
}

.zoom-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.zoom-slider-section .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.zoom-content-wrap {
    max-width: 600px;
    color: #fff;
    padding: 0 30px;
}

.zoom-sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.zoom-sub::before,
.zoom-sub::after {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}



.zoom-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: translateY(50px);
    opacity: 0;
}

.zoom-desc {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(50px);
    opacity: 0;
}

.zoom-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #FFFFFF;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
}

/* Animations for active slide content */
.slick-current .zoom-title {
    animation: fadeInUpZoom 0.8s ease forwards 0.3s;
}

.slick-current .zoom-desc {
    animation: fadeInUpZoom 1s ease forwards 0.5s;
}

.slick-current .zoom-btn {
    animation: fadeInUpZoom 1.2s ease forwards 0.7s;
}

@keyframes fadeInUpZoom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .zoom-slide {
        height: 60vh;
    }

    .zoom-content-wrap {
        text-align: center;
        margin: 0 auto;
        padding: 0 15px;
    }

    .zoom-sub {
        justify-content: center;
    }
}

/* ========== About Section =========== */
.home-about-section {
    padding: 15px 0 30px 0;
    /* background: #fdfaf5; */
    /* Light creamy background */
    position: relative;
    text-align: left;
    color: var(--color-3);
}

.home-about-section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(37 42 87 / 50%);
}

.home-about-wrapper {
    /* max-width: 900px; */
    /* margin: 0 auto; */
}

.about-eyebrow {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(23px, 4vw, 23px);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding-bottom: 0;
    font-family: "Noto Serif", serif;
}


.title-page {
    position: relative;
}

.title-page2::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.title-page2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #333;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.about-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px 0px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-link-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 169, 110, 0.2);
}

.about-link-btn svg {
    transition: transform 0.3s ease;
}

.about-link-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 0 0px 30px;
    }

    .about-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
}



.home-news-section {
    padding: 50px 0;
    position: relative;
}

.home-news-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(37 42 87 / 50%);
}

.news-header {
    text-align: center;
    margin-bottom: 25px;
    color: #FFF;
}

.news-title {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}

.news-divider {
    display: none;
}

.news-desc {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

.news-slider .slick-slide {
    margin: 10px;
}

.news-slider .slick-list {
    margin: 0 -10px;
}

@media (max-width: 575px) {
    .news-header {
        margin-bottom: 20px;
    }

    .home-news-section {
        padding: 30px 0;
    }
}

/* ============================================================
   Section factory
============================================================ */

.section-factory {
    background-color: #00010B;
    color: var(--color-3);
    padding: 0;
}

.section-factory .section-title {
    padding: 30px 5% 20px;
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 600;
    text-align: center;
}

.section-screen {
    overflow: hidden;
    padding: 50px 0px 0 0;
    background-color: white;
    border-top: 0;
    position: relative;
}

.section-screen .box-wrapper {
    width: 100%;
    /* height: 100%; */
}

.section-screen .media {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-screen .media:before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 4;
}

.section-factory .media video {
    transition: all 1.5s;
    z-index: 3;
    object-fit: cover;
    transform: scale(1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.section-factory .content {
}

.section-factory .content .tbox .title {
    font-size: 22px;
    font-weight: 500;
    color: #fafafa;
    margin-bottom: 16px;
    text-align: center;
}

.section-factory .content .tbox .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    margin: auto;
}

/* Slick Slider Override for Section Factory */
.section-factory .content .tbox .list.factory-slider {
    display: block !important;
    position: relative;
}

.section-factory .content .tbox .list.factory-slider .slick-slide {
    padding: 0 10px;
    outline: none;
}

.section-factory .content .tbox .list.factory-slider .slick-dots {
    margin-top: 24px;

}

@media (max-width: 1200px) {
    .section-factory .content .tbox .list.factory-slider {
        padding: 0 40px;
    }

    .section-factory .content .tbox .list.factory-slider .slick-prev {
        left: 5px;
    }

    .section-factory .content .tbox .list.factory-slider .slick-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .section-factory .content .tbox .list.factory-slider {
        padding: 0;
    }
}
.section_title {
    font-weight: 600;
    text-align: center;
    padding-bottom: 90px;
}
.section_title h2 {
    text-transform: none;
    font-weight: 600;
    line-height: 1;
    margin: 10px 0 15px 0;
    color: var(--color-1);
    font-size: 35px;
    font-family: "Playfair Display", serif;
}
.section-screen .card {
    box-shadow: 0px 0px 40px rgb(9 9 9 / 8%);
    padding: 69px 20px 35px 20px;
    margin-bottom: 85px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    min-height: 200px;
}
.section-screen .card .icon {
    text-align: center;
    width: 95px;
    height: 95px;
    line-height: 50px;
    border-radius: 50%;
    position: absolute;
    background: #fff;
    left: 0;
    right: 0;
    padding: 20px;
    margin: auto;
    top: -55px;
    box-shadow: 0 0px 15px 0 var(--color-1);
    transition: 500ms all;
}
.section-screen .card .text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
    margin-top: 0px;
    color: var(--color-1);
}
.section-screen .card .text p {
    font-size: 15px;
    font-weight: 300;
    color: #404040;
    line-height: 1.3;
    padding: 0 10px;
}

.section-factory .content .tbox .list .card .icon {
    width: 45px;
}

.section-factory .content .tbox .list .card .text {
    padding-left: 10px;
    margin-top: 0;
    line-height: 1.3;
    font-size: 13px;
}

.section-factory .content .tbox .list .card .text h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.section-factory .content .tbox .action {
    margin-top: 20px;
    text-align: center;
}

.section-factory .content .tbox {
    margin: 0 auto;
}

.cs-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cs-bg-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 3s ease-in-out;
    transform: scale(1.05);
}

.cs-bg-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.cs-bg-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.cs-content-wrapper {
    position: relative;
    z-index: 3;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.cs-info {
    position: relative;
    width: 100%;
    max-width: 650px;
    padding-top: 50px;
}

.cs-info-item {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transition-delay: 0s;
}

.cs-info-item.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
}

.cs-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.6s ease;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cs-info-item.active .cs-title {
    transform: translateY(0);
}

.cs-sub {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    margin-bottom: 35px;
    transform: translateY(20px);
    transition: transform 0.6s ease 0.1s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cs-info-item.active .cs-sub {
    transform: translateY(0);
}

.cs-btn {
    transform: translateY(20px);
}

.cs-info-item.active .cs-btn {
    transform: translateY(0);
}

.cs-nav {
    position: relative;
    z-index: 3;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    /* backdrop-filter: blur(5px); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-nav-list {
    display: flex;
    /* justify-content: space-between; */
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.cs-nav-item {
    flex: 1;
    text-align: center;
    padding: 24px 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
}

.cs-nav-item:last-child {
    border-right: none;
}

.cs-nav-item:hover,
.cs-nav-item.active {
    background: rgba(0, 0, 0, 0.3);
}

.cs-nav-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.cs-nav-item.active::before {
    transform: scaleX(1);
}

.cs-nav-icon {
    margin-bottom: 15px;
    opacity: 0.6;
    transition: opacity 0.3s;
    color: #fff;
}


.cs-nav-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cs-nav-item.active .cs-nav-icon,
.cs-nav-item:hover .cs-nav-icon {
    opacity: 1;
}

.cs-nav-text {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s;
    color: #fff;
}

.cs-nav-item.active .cs-nav-text,
.cs-nav-item:hover .cs-nav-text {
    opacity: 1;
}

.section_factory {
    padding: 40px 0;
}

.section_factory .card {
    color: var(--color-3);
    border-radius: 2px;
    /* display: flex; */
    /* align-items: center; */
    /* flex-direction: row; */
    /* position: relative; */
    text-align: center;
    margin: auto;
}

.section_factory .card .icon {
    width: 70px;
    text-align: center;
    margin: 20px auto;
}

.section_factory .card .text {
    padding-left: 10px;
    margin-top: 0;
    line-height: 1.3;
    font-size: 13px;
}

.section_factory .card .text h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.section_factory .card .text p {
    font-size: 17px;
    border: solid 1px var(--color-3);
    border-radius: 30px;
    color: #fe0000;
    padding: 7px;
    font-weight: 600;
    text-transform: uppercase;
    width: 60%;
    margin: 15px auto;
}
.section_factory .card .text p a {
    color: #fe0000;
}

.section_factory .card .text span {
    font-weight: 600;
    font-size: 22px;
    color: var(--color-3);
    line-height: 1.0;
}

.section_factory .item_sub {
    border: solid 1px #b6aa9f;
    border-radius: 10px;
    padding: 15px 15px;
}

.section_factory .item_sub .card span {
    text-transform: uppercase;
    font-size: 16px;
}
.Welcome_Education {
    padding-top: 50px;
    background-color: #F3F6FB;
    background-image: url(../images/bg_about.jpg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    padding-bottom: 60px;
    position: relative;
}
.Welcome_Education:before {
    background: url(../images/line-in.png) 50% 100% repeat-x;
    content: "";
    position: absolute;
    height: 16px;
    left: 0;
    right: 0;
    top: -15px;
    z-index: 3;
}

.Welcome_Education .item:nth-child(1) {
    padding-right: 30px;
}
.item_img {
    position: relative;
}

.item_img .img_p {
    position: absolute;
    bottom: 15px;
    right: -95px;
    -webkit-transform: translateX(-70%);
    transform: translateX(-70%);
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    color: #432f92;
}

.item_img .img_p span {
    font-size: 36px;
    color: #fe0000;
    line-height: 1.278;
    margin: 0;
    font-weight: 700;
}

.item_img .img_p p {
    font-size: 14px;
    color: var(--color-1);
    font-weight: 600;
    text-transform: uppercase;
}

.item_text .item_1 span {
    font-size: 16px;
    font-weight: 400;
    color: #21b6ff;
}

.item_text .item_1 h2 {
    text-transform: none;
    font-weight: 600;
    line-height: 1;
    margin: 10px 0 10px 0;
    color: var(--color-1);
    font-size: 38px;
    font-family: "Playfair Display", serif;
}
.item_text .item_1 {
    padding-top: 0;
    padding-bottom: 5px;
}
.item_text .item_1 .desc {
    margin: 0;
    color: var(--color-tetx);
    line-height: 1.6;
    text-align: justify;
    padding-top: 5px;
    padding-bottom: 0;
    font-size: 15px;
}
.item .text_one{
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    padding-bottom: 0px;
    padding-top: 5px;
}
.item .text_one img {
	height: auto;
	padding-bottom: 10px;
	width: 50px;
	padding-top: 10px;
	margin-right: 21px;
	float: left;
}
.product-outstanding {
    padding-top: 12em !important;
    padding-bottom: 2.7em !important;
    background-image: url(../images/bg-nocopyright.png) !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.product-outstanding .section_title {
    padding-bottom: 10px;
}
.product-outstanding span {
    margin: 0 auto;
    padding-bottom: 30px;
    font-size: 15px;
    color: #393939;
}
.listProduct.row .clm {
    width: 25%;
}
.list-category-box {
    /* background: var(--color-1); */
    padding: 0;
    margin-bottom: 25px;
    border-radius: 20px;
    display: flex;
}
.list-category-box a {
    text-align: center;
    display: grid;
}
.listProduct.row .clm .list-category-box a img {
    padding: 0px;
    border-radius: 18px 18px 0 0;
    min-height: 315px;
}
.list-category-box a img {
    width: 100%;
    /* width: auto; */
    /* object-fit: contain; */
    height: auto;
}
.list-category-box a h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 30px;
    padding-bottom: 10px;
    background: linear-gradient(0deg, rgba(0, 44, 143, 1) 0%, rgba(33, 182, 255, 1) 100%);
    padding-top: 5px;
    border-radius: 0 0 20px 20px;
}
.btn_w {
    display: flex;
    align-items: center;
}
.btn_w a {
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    background-color:#fe0000;
    color: #fff;
    border-radius: 5px;
    line-height: 1.5;
    display: flex;
}
.btn_w a svg {
    width: 34px;
    height: 23px;
    position: relative;
    top: 0;
    padding-left: 5px;
}
.item_con .text_one_text span {
    color: var(--color-1);
    font-size: 22px;
    font-family: var(--font-body-family);
    font-weight: 600;
}
.news-list {
    padding-top: 40px;
    position: relative;
    background: #fff;
    padding-bottom: 0;
}
.news-list:before {
    background: url(../images/line-in-in.png) 50% 100% repeat-x;
    content: "";
    position: absolute;
    height: 16px;
    left: 0;
    right: 0;
    top: -15px;
    z-index: 3;
}
.section_title_in {
    font-weight: 600;
    text-align: left;
    padding-bottom: 0px;
}
.section_title_in h2 {
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1;
    margin: 10px 0 15px 0;
    color: var(--color-1);
    font-size: 32px;
}
.news-list-body {
    padding: 0px 0px 20px 0px;
    margin: 0px -10px;
}
.news-box {
    background-color: #fff;
    margin-bottom: 25px;
    padding: 10px;
    box-shadow: 0px 0px 13px 2px rgba(149, 149, 149, 0.31);
    border-radius: 5px;
    margin: 10px;
    min-height: 405px;
}
.news-img img {
    aspect-ratio: 1 / .6;
}
.news-content {
    padding: 10px 0px;
    margin-top: 0;
}
.news__title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0px;
    height: auto;
    font-family: var(--font-heading-family);
}
.news__title a {
    color: var(--color-1);
    font-family: var(--font-heading-family);
}
.news-content .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    font-size: 15px;
    color: rgb(49, 49, 49);
    line-height: 1.5;
}
.new-right {
	margin-top: 57px;
}
.listNew-box{
    margin-bottom: 10px;
}
.listNew-box a {
    display: block;
}
.listNew-box a img {
    width: 135px;
    height: 96px;
    margin-right: 10px;
}
.flex-1 {
    flex: 1;
}
.listNew-content h3 {
    font-size: 16px;
    line-height: 1.5;
    height: auto;
    max-height: 47px;
    overflow: hidden;
    display: inline-block;
    margin: 0px;
    transition: .4s;
    text-transform: none;
    color: #333;
    font-weight: 600;
}

.listNew-content h3 a {
    font-family: var(--font-body-family);
    color: #333;
}
.listNew-content .date {
    font-size: 13px;
}
.listNew-box a {
    display: block;
}
.img_r img {
    border-radius: 10px;
    width: 100%;
}
.pc_home {
    display: block;
}
.pc_mb {
    display: none;
}

@media (min-width: 992px) {
    .section-factory .content {
        /* padding: 2% 5% 60px; */
    }

    .section-factory .content .tbox {
        /* max-width: 798px; */
    }

    .section-factory .content .tbox .title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    /* .section-factory .content .tbox .list {
    width: 80%;
  } */

    .section-factory .content .tbox .action {
        margin-top: 48px;
    }
     .listProduct.row .clm {
        width: 33%;
    }
}

@media (max-width: 768px) {
    .section-factory .content .tbox .list {
        grid-template-columns: repeat(2, 1fr);
    }
    .pc_home {
        display: none;
    }
    .pc_mb {
        display: block;
    }
    .Welcome_Education {
        padding-top: 20px;
    }
    .slide-item::after {
        display: none;
    }
    .listProduct.row .clm {
        width: 50%;
    }
    .listProduct.row .clm .list-category-box a img {
        min-height: 196px;
        object-fit: cover;
    }
    .list-category-box a h3 {
        font-size: 15px;
        padding: 8px 10px 10px;
        line-height: 1.3;
        min-height: 60px;
    }
    .product-outstanding {
        padding-top: 80px !important;
    }
    .title-hedding-top-pages h2 {
        font-size: 28px;
    }
    .section_title h2 {
        font-size: 30px;
    }
    .news-box {
        min-height: auto;
    }
    .new-right {
        margin: 0;
    }
    .Welcome_Education .item:nth-child(1) {
        padding-right:10px;
        padding-bottom: 10px;
    }
    .item_text .item_1 h2 {
        font-size: 30px;
    }
    .slideshow-banner .slideshow__img img, .slideshow-list .slideshow__img img {
        width: 100%;
        height: 450px;
    }
}

@media (max-width: 575px) {
    .section-factory .content .tbox .list {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-factory .content .tbox .list .card {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .section-factory .content .tbox .list .card .text {
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .section-factory .content .tbox .title {
        font-size: 17px;
    }
}

/* ============================================================
   CATEGORY SHOWCASE (NEW SECTION)
   ============================================================ */
.category-showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .category-showcase {
        height: 80vh;
    }
}

@media screen and (min-width: 1500px) {
    .slide-item .slide-content {
        max-width: 1500px;
        padding: 0 10px;
    }
}

@media(max-width: 991px) {
    .cs-nav-list {
        flex-wrap: wrap;
    }

    .cs-nav-item {
        flex: 0 0 33.33%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media(max-width: 767px) {
    .cs-nav-item {
        flex: 0 0 50%;
        padding: 15px;
    }

    .cs-nav-icon {
        margin-bottom: 10px;
    }
}

.video-2 video {
    width: 100%;
}

.video-2 {
    display: flex;
}

/* Mobile & Tablet Spacing for Home Sections */
@media (max-width: 991px) {

    .ks-section .clm,
    .home-about-section .clm,
    .section_factory .clm {
        margin-bottom: 20px;
    }
}

