/* ===== SECTION HOME NEWS ===== */
.section-home-news .section-heading {
    margin-bottom: 20px;
}

.section-home-news .home-news-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 35px;
}

.section-home-news .home-news-feature {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.section-home-news .home-news-feature__thumb {
    display: block;
}

.section-home-news .home-news-feature__thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: var(--transition-default);
}

.section-home-news .home-news-feature__content {
    padding: 14px;
}

.section-home-news .home-news-feature__meta {
    margin-bottom: 6px;
    font-size: 12px;
    color: #64748b;
}

.section-home-news .home-news-feature__title {
    margin: 0;
}

.section-home-news .home-news-feature__title a {
    display: -webkit-box;
    overflow: hidden;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section-home-news .home-news-feature__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}

.section-home-news .home-news-feature:hover .home-news-feature__thumb img {
    transform: scale(1.03);
}

.section-home-news .home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.section-home-news .home-news-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.section-home-news .home-news-item__thumb {
    display: block;
}

.section-home-news .home-news-item__thumb img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.section-home-news .home-news-item__title {
    margin: 0;
    padding: 9px 10px 10px;
}

.section-home-news .home-news-item__title a {
    display: -webkit-box;
    overflow: hidden;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section-home-news .home-news-more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 20px;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.section-home-news .home-news-more__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.section-home-news .home-news-more__link i {
    color: var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .section-home-news .home-news-layout {
        grid-template-columns: 1fr;
    }

    .section-home-news .home-news-more {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-home-news .home-news-feature__title a {
        font-size: 17px;
    }
}

/* ===== BOX WHY ===== */
#box-why {
    position: relative;
    padding: 20px 0 30px;
}

#box-why,
#box-news {
    margin: 30px auto;
}

.box-why {
    position: relative;
    display: block;
    text-align: center;
    margin: 20px 0;
    line-height: 150%;
    overflow: hidden;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.2);
}

.box-why-wrap {
    position: relative;
    z-index: 1;
    padding: 15px;
    margin-bottom: 4px;
    width: calc(100% - 4px);
    inset: 2px;
    background-color: #fff;
    border-radius: 10px;
}

.box-why::before,
.box-why::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform-origin: bottom right;
    background: linear-gradient(0deg, transparent, var(--primary-color), var(--primary-color));
    animation: animate 6s linear infinite;
}

.box-why::after {
    animation-delay: -3s;
}

@keyframes animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.box-why img {
    height: 120px;
    margin-top: 5px;
}

.box-why:not(.box-staff) img {
    transition: transform .5s ease-in-out;
}

.box-why .title {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #056bbf;
    min-height: 43px;
}

.box-why .summary {
    display: block;
    text-align: center;
}

/* ===== CUSTOMER SLIDE ===== */
@keyframes moveSlideshow1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1386px); }
}

.customer-slide {
    display: flex;
    width: 2772px;
    animation: moveSlideshow1 10s linear infinite;
}

.customer-item {
    position: relative;
    width: 120px;
    height: 80px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    background-color: #fff;
}

.owl-item .customer-item {
    width: 100%;
    margin: 0;
}

.customer-item img {
    position: absolute;
    margin: auto;
    inset: 0;
    max-width: 100%;
    max-height: 100%;
    border: 8px solid #fff;
    transition: all 0.5s ease-in-out;
}

.customer-item img:hover {
    transform: rotateY(360deg);
    transition: all 1s ease-in-out;
}
    .hero-vtn {
        position: relative;
        margin: 0 0 26px;
        overflow: hidden;
        background:
            radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 36%),
            radial-gradient(circle at top right, rgba(16, 185, 129, 0.10), transparent 32%),
            linear-gradient(90deg, #f5f7ff 0%, #f7fbff 42%, #f9fcff 100%);
    }

    .hero-vtn::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 45%),
            radial-gradient(circle at 15% 25%, rgba(255, 184, 34, 0.12), transparent 18%);
        pointer-events: none;
    }

    .hero-vtn .container {
        position: relative;
        z-index: 1;
    }

    .hero-vtn .hero-slider-v2 {
        padding: 58px 0 54px;
        overflow: hidden;
    }

    .hero-vtn #slideBanner {
        overflow: hidden;
    }

    .hero-vtn .swiper-wrapper {
        align-items: stretch;
    }

    .hero-vtn .swiper-slide {
        height: auto;
        width: 100% !important;
    }

    .hero-vtn .hero-slide-item {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
        gap: 48px;
        align-items: center;
    }

    .hero-vtn .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 650px;
    }

    .hero-vtn .hero-badge-v2 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border-radius: 999px;
        background: #fdf1ce;
        color: #b45309;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 26px;
        font-family: var(--hero-font);
    }

    .hero-vtn .hero-badge-v2 i {
        color: #f59e0b;
    }

    .hero-vtn .hero-heading-v2 {
        margin: 0 0 22px;
        color: #0f172a;
        font-size: clamp(2.6rem, 4vw, 4.1rem);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -.03em;
        font-family: var(--hero-font);
    }

    .hero-vtn .hero-desc-v2,
    .hero-vtn .hero-desc-v2 p {
        margin: 0;
        color: #475569;
        font-size: 1.125rem;
        line-height: 1.72;
        max-width: 590px;
        font-family: var(--hero-font);
    }

    .hero-vtn .hero-desc-v2 {
        margin-bottom: 30px;
    }

    .hero-vtn .hero-btns-v2 {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-vtn .hero-btns-v2 .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 24px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 15px;
        box-shadow: none !important;
        font-family: var(--hero-font);
    }

    .hero-vtn .btn-yellow {
        background: #ffb221;
        border: 1px solid #ffb221;
        color: #111827;
    }

    .hero-vtn .btn-yellow:hover {
        background: #f59e0b;
        border-color: #f59e0b;
        color: #111827;
    }

    .hero-vtn .btn-outline-v2 {
        background: #fff;
        border: 1px solid #d7dfeb;
        color: #475569;
    }

    .hero-vtn .btn-outline-v2:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: #0f172a;
    }

    .hero-vtn .hero-visual-v2 {
        position: relative;
    }

    .hero-vtn .hero-main-banner-v2 {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(239, 246, 255, .92)),
            linear-gradient(135deg, rgba(59, 130, 246, .15), rgba(16, 185, 129, .08));
        border: 1px solid rgba(203, 213, 225, .9);
        padding: 12px;
    }

    .hero-vtn .hero-main-banner-v2::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 28%),
            radial-gradient(circle at bottom left, rgba(255, 178, 33, 0.14), transparent 24%);
        pointer-events: none;
    }

    .hero-vtn .hero-main-banner-v2__link {
        display: block;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-radius: 22px;
    }

    .hero-vtn .hero-main-banner-v2 img {
        display: block;
        width: 100%;
        min-height: 320px;
        object-fit: cover;
    }

    .hero-vtn .hero-visual-caption {
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 26px;
        z-index: 2;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.66);
        backdrop-filter: blur(10px);
        color: #fff;
    }

    .hero-vtn .hero-visual-caption h5 {
        margin: 0 0 6px;
        font-size: 16px;
        font-weight: 700;
    }

    .hero-vtn .hero-visual-caption p {
        margin: 0;
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-vtn #slideBanner .slide-button-prev,
    .hero-vtn #slideBanner .slide-button-next {
        position: absolute;
        top: 50%;
        z-index: 5;
        width: 48px;
        height: 48px;
        margin-top: -24px;
        border-radius: 50%;
        border: 1px solid rgba(226, 232, 240, .95);
        background: rgba(255, 255, 255, .95);
        color: #0f172a;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: none;
        transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    }

    .hero-vtn #slideBanner .slide-button-prev {
        left: 10px;
    }

    .hero-vtn #slideBanner .slide-button-next {
        right: 10px;
    }

    .hero-vtn #slideBanner .slide-button-prev,
    .hero-vtn #slideBanner .slide-button-next {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .hero-vtn #slideBanner:hover .slide-button-prev,
    .hero-vtn #slideBanner:hover .slide-button-next,
    .hero-vtn #slideBanner:focus-within .slide-button-prev,
    .hero-vtn #slideBanner:focus-within .slide-button-next {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-vtn #slideBanner .slide-button-prev:hover,
    .hero-vtn #slideBanner .slide-button-next:hover {
        background: #fff7e6;
        border-color: #ffd37a;
        color: #b45309;
    }

    .hero-vtn #slideBanner .swiper-pagination {
        position: static;
        margin-top: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hero-vtn #slideBanner .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 0 !important;
        border-radius: 999px;
        background: #cbd5e1;
        opacity: 1;
        transition: width .2s ease, background-color .2s ease;
    }

    .hero-vtn #slideBanner .swiper-pagination-bullet-active {
        width: 24px;
        background: #ffb221;
    }

    @media (max-width: 1199px) {
        .hero-vtn .hero-slide-item {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .hero-vtn .hero-content {
            max-width: 100%;
        }
    }

    @media (max-width: 991px) {
        .hero-vtn .hero-slider-v2 {
            padding: 38px 0 34px;
        }

        .hero-vtn #slideBanner .slide-button-prev,
        .hero-vtn #slideBanner .slide-button-next {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .hero-vtn .hero-heading-v2 {
            font-size: 2.15rem;
        }

        .hero-vtn .hero-desc-v2,
        .hero-vtn .hero-desc-v2 p {
            font-size: 1rem;
        }

        .hero-vtn .hero-main-banner-v2 {
            border-radius: 22px;
            padding: 10px;
        }

        .hero-vtn .hero-main-banner-v2__link {
            border-radius: 16px;
        }

        .hero-vtn .hero-main-banner-v2 img {
            min-height: 220px;
        }

        .hero-vtn .hero-visual-caption {
            left: 16px;
            right: 16px;
            bottom: 16px;
            padding: 13px 14px;
        }
    }