@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset cho layout đồng nhất */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
button,
input,
textarea,
select,
p,
span,
a,
li,
td,
th,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

/* Fix webkit rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* htm1  */
/* Khung số điện thoại */
.phone-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

/* Icon */
.phone-box i {
    color: #1d3f91;
    font-size: 18px;
}

/* Số điện thoại */
.phone-box strong {
    color: #1d3f91 !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Hover */
.phone-box:hover i,
.phone-box:hover strong {
    color: #16357d !important;
}

/* Responsive */
@media(max-width:768px) {
    .phone-box {
        gap: 8px;
    }

    .phone-box i {
        font-size: 16px;
    }

    .phone-box strong {
        font-size: 16px;
    }
}

/* Header Search Form */
.header-search-form {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.header-search-form .search-field {
    width: 100%;
    height: 46px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    padding: 0 55px 0 20px;
    box-sizing: border-box;
    font-size: 14px;
}

.header-search-form button,
.header-search-form .search-submit {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search-form button i,
.header-search-form .search-submit i,
.header-search-form button svg,
.header-search-form .search-submit svg {
    font-size: 18px;
    color: #2146a8;
}

/* Responsive */
@media(max-width:768px) {
    .header-search-form {
        max-width: 100%;
    }

    .header-search-form .search-field {
        height: 42px;
        font-size: 13px;
    }
}

/* =========================================
   MENU CHÍNH
========================================= */

#wide-nav {
    background: #fff;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

/* Căn giữa */
#wide-nav .nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

/* Không cho li có margin */
#wide-nav .nav-center>li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Link menu */
#wide-nav .nav-top-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #123c82;
    text-transform: uppercase;
    letter-spacing: .3px;
    text-decoration: none;
    transition: .3s ease;
}

/* Hover */
#wide-nav .nav-top-link:hover {
    color: #1b6de0;
}

/* Gạch chân */
#wide-nav .nav-top-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 0;
    height: 3px;
    background: #1b6de0;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: .35s ease;
}

/* Hover hiện gạch */
#wide-nav li:hover>.nav-top-link::after {
    width: 70%;
}

/* Trang đang active */
#wide-nav .current-menu-item>.nav-top-link,
#wide-nav .current_page_item>.nav-top-link,
#wide-nav .active>.nav-top-link {
    color: #1b6de0;
}

/* Gạch chân trang active */
#wide-nav .current-menu-item>.nav-top-link::after,
#wide-nav .current_page_item>.nav-top-link::after,
#wide-nav .active>.nav-top-link::after {
    width: 70%;
}

/* Hiệu ứng hover mượt */
#wide-nav li {
    position: relative;
}

#wide-nav li:hover {
    transform: translateY(-1px);
    transition: .3s;
}

/* Responsive */
@media(max-width:1024px) {
    #wide-nav .nav-center {
        gap: 15px;
    }

    #wide-nav .nav-top-link {
        font-size: 14px;
        padding: 0 8px;
    }
}

@media(max-width:768px) {
    #wide-nav .nav-center {
        flex-wrap: wrap;
        gap: 10px;
    }

    #wide-nav .nav-top-link {
        height: 50px;
        font-size: 13px;
    }
}

/*=========================================
    VISION COUNTER
=========================================*/

.vision-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    gap: 15px;
}

.counter-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 5px 15px;
    min-width: 0;
}

.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #e6e6e6;
}

/* Icon */
.counter-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1d46b9;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.counter-icon i {
    font-size: 30px;
}

/* Nội dung */
.counter-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.counter-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1d46b9;
    line-height: 1;
}

.counter-info span {
    margin-top: 5px;
    font-size: 14px;
    color: #444;
    line-height: 1.3;
    font-weight: 500;
}

/* Hover */
.counter-box:hover .counter-icon {
    transform: translateY(-2px);
    color: #0f359b;
}

.counter-box:hover h3 {
    color: #0f359b;
}

/* Tablet */
@media(max-width:1024px) {
    .counter-info h3 {
        font-size: 20px;
    }

    .counter-info span {
        font-size: 13px;
    }

    .counter-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .vision-counter {
        flex-wrap: wrap;
    }

    .counter-box {
        width: 100%;
        padding: 10px 0;
    }

    .counter-box::after {
        display: none;
    }

    .counter-info h3 {
        font-size: 22px;
    }
}

/* -----button----- */
.button.primary,
.button.is-primary {
    background: #0A2A7A !important;
    border-color: #0A2A7A !important;
}

.button.primary:hover,
.button.is-primary:hover {
    background: #071F5C !important;
    border-color: #071F5C !important;
}

/* =========================
   MODERN ABOUT ANIMATION
========================= */

.about-section .col {
    opacity: 0;
    transition:
        opacity 1.4s ease,
        transform 1.4s cubic-bezier(.19, 1, .22, 1),
        filter 1.4s ease;
    will-change: transform, opacity;
}

/* Ảnh */

.about-section .col:first-child {
    transform: translateX(-120px) scale(.90);
    filter: blur(18px);
}

/* Nội dung */

.about-section .col:last-child {
    transform: translateX(120px) scale(.96);
    filter: blur(18px);
}

/* Khi hiện */

.about-section.show .col {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* Ảnh */

.about-section .img {
    overflow: hidden;
    border-radius: 22px;
}

.about-section .img img {
    transform: scale(1.12);
    transition: transform 2s cubic-bezier(.19, 1, .22, 1);
}

.about-section.show .img img {
    transform: scale(1);
}

/* Không chạy animation trong UX Builder */
html.flatsome-editor .about-section .col,
html.ux-builder .about-section .col {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* =========================
   FLATSOME PRODUCT GRID FIX
========================= */

.row.row-small {
    align-items: stretch;
}

/* COL */
.row.row-small>.col {
    display: flex;
    margin-bottom: 30px;
}

.row.row-small>.col>.col-inner {
    display: flex;
    width: 100%;
}

/* PRODUCT WRAP */
.product-small {
    width: 100%;
    display: flex;
}

/* CARD */
.product-small .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;

    /* CHỈ BORDER + SHADOW (KHÔNG NHẢY) */
    transition: border-color .3s ease, box-shadow .3s ease;
}

.product-small .box:hover {
    border-color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transform: none !important;
}

/* =========================
   IMAGE AREA
========================= */

.product-small .box-image {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
    overflow: hidden;
}

/* FIX FLATSOME IMAGE STACK */
.image-fade_in_back {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 2 ảnh chồng nhau */
.image-fade_in_back>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: opacity .45s ease;
    transform: none !important;
}

/* ảnh chính */
.image-fade_in_back>img:first-child {
    opacity: 1;
    z-index: 2;
}

/* ảnh hover */
.image-fade_in_back .back-image {
    opacity: 0;
    z-index: 3;
}

/* hover mượt */
.product-small:hover .image-fade_in_back>img:first-child {
    opacity: 0;
}

.product-small:hover .image-fade_in_back .back-image {
    opacity: 1;
}

/* =========================
   CONTENT
========================= */

.product-small .box-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 18px;
}

/* Ẩn category */
.product-small .product-cat {
    display: none;
}

/* TITLE */
.product-small .title-wrapper {
    flex: 1;
}

.product-small .product-title {
    margin: 0;
    min-height: 90px;
}

.product-small .product-title a {
    color: #0a2d83;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    transition: color .2s ease;
}

.product-small .product-title a:hover {
    color: #1d4ed8;
}

/* PRICE */
.product-small .price-wrapper {
    margin-top: auto;
}

/* =========================
   REMOVE EFFECTS (FIX JUMP)
========================= */

.product-small .box:hover {
    transform: none !important;
}

.product-small:hover .box-image img {
    transform: none !important;
}

/* Ẩn tools gây lag */
.quick-view,
.grid-tools,
.image-tools {
    display: none !important;
}

/* =========================
   MOBILE
========================= */

@media(max-width:849px) {

    .product-small .box-image {
        height: 210px;
        padding: 15px;
    }

    .product-small .product-title {
        min-height: 75px;
    }

    .product-small .product-title a {
        font-size: 16px;
    }

}

@media(max-width:549px) {

    .product-small .box {
        border-radius: 14px;
    }

    .product-small .box-image {
        height: 180px;
    }

    .product-small .product-title {
        min-height: 70px;
    }

    .product-small .product-title a {
        font-size: 15px;
    }
}

/* =========================
   STYLE BUTTON XEM CHI TIẾT
========================= */

.custom-view-btn {
    display: inline-block;
    margin-top: 10px;

    font-size: 12px;
    font-weight: 600;

    color: #1d4ed8;
    border: 1px solid #1d4ed8;

    padding: 6px 14px;
    border-radius: 20px;

    background: #fff;
    text-decoration: none;

    transition: .2s ease;
}

.custom-view-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

/* ==========================================================
   BLOG CARD - FLATSOME
========================================================== */

.post-item .col-inner {
    height: 100%;
}

.post-item .box-blog-post {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .3s ease, border-color .3s ease;
}

/* ==========================
   IMAGE
========================== */

.post-item .box-image {
    overflow: hidden;
}

.post-item .image-cover {
    padding-top: 56.25% !important;
    /* 16:9 */
}

.post-item .box-image img {
    transition: transform .4s ease;
}

.post-item:hover .box-image img {
    transform: scale(1.04);
}

/* ==========================
   CONTENT
========================== */

.post-item .box-text {
    padding: 18px;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Date */

.post-item .post-meta {
    order: 1;
    font-size: 12px;
    color: #9b9b9b;
    margin-bottom: 10px;
}

/* Title */

.post-item .post-title {
    order: 2;
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 56px;
}

.post-item .post-title a {
    color: #163E8C;
    transition: .25s;
}

/* Divider */

.post-item .is-divider {
    display: none;
}

/* Excerpt */

.post-item .from_the_blog_excerpt {
    order: 3;
    font-size: 14px;
    color: #666;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 45px;
}

/* Làm card cao bằng nhau */

.post-item .blog-post-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}
}

/* button white lowercase */
.button.white.lowercase {
    background: #fff !important;
    border: 2px solid #244A99 !important;
    color: #244A99 !important;
    border-radius: 10px;
    box-shadow: none;
}

.button.white.lowercase span {
    color: #244A99 !important;
}

.button.white.lowercase:hover {
    background: #244A99 !important;
    color: #fff !important;
}

.button.white.lowercase:hover span {
    color: #fff !important;
}

/* ===== Shop Sidebar ===== */

#shop-sidebar .widget {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

#shop-sidebar .widget:last-child {
    border-bottom: none;
}

/* Tiêu đề widget */
#shop-sidebar .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #2D4F9F;
    margin-bottom: 8px;
    text-transform: none;
}

#shop-sidebar .is-divider {
    width: 36px;
    height: 2px;
    background: #2D4F9F;
    margin: 0 0 15px;
}

/* Nội dung */
.sidebar-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
}

/* Link */
.btn-sidebar {
    color: #2D4F9F;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.btn-sidebar:hover {
    color: #163b8c;
}

/* ===== Search Box ===== */

#shop-sidebar .searchform {
    margin: 0;
}

#shop-sidebar .search-field {
    height: 42px;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 14px;
    font-size: 14px;
    box-shadow: none;
    background: #fff;
}

#shop-sidebar .search-field:focus {
    border-color: #2D4F9F;
    outline: none;
}

#shop-sidebar .submit-button {
    width: 42px;
    height: 42px;
    background: #2D4F9F;
    border: 1px solid #2D4F9F;
    border-radius: 0 8px 8px 0;
    margin: 0;
    box-shadow: none;
}

#shop-sidebar .submit-button i {
    font-size: 15px;
}

#shop-sidebar .submit-button:hover {
    background: #1f3f86;
    border-color: #1f3f86;
}

/*==================================================
    VISION - BOX TƯ VẤN TRANG CHI TIẾT SẢN PHẨM
==================================================*/

.vision-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 18px;
    margin: 18px 0;
    background: #fff;
    border: 1px solid #e9edf5;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.vision-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* Icon điện thoại */
.phone-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #1848b8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Nội dung */
.phone-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tiêu đề */
.phone-content .label {
    display: block;
    margin: 0 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #1848b8;
}

/* Số điện thoại */
.phone-content .number {
    display: block;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: #1848b8;
    text-decoration: none;
    white-space: nowrap;
}

/* Thời gian làm việc */
.phone-content .time {
    display: block;
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
    color: #888;
}

/*==================================================
    CỘT PHẢI - NÚT HÀNH ĐỘNG
==================================================*/

.vision-buttons {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Hai nút */
.vision-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

/* Nút Liên hệ */
.btn-contact {
    background: #1848b8;
    color: #fff;
}

.btn-contact:hover {
    background: #123b98;
    color: #fff;
}

/* Nút Catalogue */
.btn-catalog {
    background: #fff;
    color: #1848b8;
    border: 2px solid #1848b8;
}

.btn-catalog i {
    margin-left: 6px;
}

.btn-catalog:hover {
    background: #1848b8;
    color: #fff;
}

/*==================================================
    RESPONSIVE
==================================================*/

/* Desktop */
@media (min-width:850px) {

    .vision-contact-box {
        flex-wrap: nowrap;
    }

    .vision-phone {
        width: calc(100% - 240px);
    }

}

/* Mobile */
@media (max-width:849px) {

    .vision-contact-box {
        flex-direction: column;
        text-align: center;
    }

    .vision-phone {
        justify-content: center;
    }

    .vision-buttons {
        width: 100%;
    }

}

/*==================================================
    PRODUCT SUMMARY
==================================================*/

.product-summary {
    max-width: 560px;
}

/* Breadcrumb */
.product-summary .breadcrumbs {
    font-size: 13px;
    color: #8d99a8;
    text-transform: none !important;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-summary .breadcrumbs a {
    color: #8d99a8;
}

/* Tiêu đề */
.product-summary .product-title {
    font-size: 30px;
    font-weight: 600;
    color: #123E96;
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
}

/* Divider */
.product-summary .is-divider {
    width: 55px;
    height: 4px;
    background: #E7ECF4;
    margin: 0 0 25px;
}

/* Mô tả */
.product-short-description {
    margin-bottom: 2px;
}

.product-short-description p {
    font-size: 15px;
    line-height: 1.9;
    color: #222;
    margin-bottom: 14px;
}

.product-short-description strong {
    color: #123E96;
    font-weight: 700;
}

/*=========================================
    PRODUCT META
=========================================*/

.product_meta {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.product_meta .posted_in {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 1px solid #f3f5f8;
}

.product_meta .posted_in:last-child {
    border-bottom: none;
}

.product_meta .posted_in::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1848b8;
    flex-shrink: 0;
}

.product_meta a {
    color: #123E96;
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
}

.product_meta a:hover {
    color: #0f327d;
}

/*=============================
CONTACT FORM
=============================*/

.vision-form {
    width: 100%;
}

.vision-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.vision-col {
    flex: 1;
}

.vision-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.vision-form input:not([type="submit"]),
.vision-form textarea {
    width: 100%;
    border: 1px solid #dfe5ef;
    border-radius: 4px;
    background: #fff;
    padding: 0 18px;
    font-size: 14px;
    color: #222;
    transition: .3s;
    box-sizing: border-box;
}

.vision-form input:not([type="submit"]) {
    height: 52px;
}

.vision-form textarea {
    height: 170px;
    padding: 16px 18px;
    resize: none;
}

.vision-form input::placeholder,
.vision-form textarea::placeholder {
    color: #7b8794;
}

.vision-form input:focus,
.vision-form textarea:focus {
    border-color: #0b4ea2;
    box-shadow: 0 0 0 3px rgba(11, 78, 162, .08);
    outline: none;
}

.vision-form input[type="submit"] {
    background: #0b4ea2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 28px;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.vision-form input[type="submit"]:hover {
    background: #083c83;
}

@media(max-width:768px) {

    .vision-row {
        flex-direction: column;
        gap: 15px;
    }
}

.vision-row.two-col {
    display: flex;
    gap: 18px;
}

.vision-full {
    width: 100%;
}

.vision-full .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.vision-full input,
.vision-full textarea {
    width: 100%;
}

/*==================================
RECRUITMENT FORM
==================================*/

.recruitment-form {
    width: 100%;
}

.recruitment-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.recruitment-row.two-col {
    display: flex;
}

.recruitment-col {
    flex: 1;
}

.recruitment-full {
    width: 100%;
}

.recruitment-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.recruitment-form input:not([type="submit"]):not([type="file"]),
.recruitment-form select,
.recruitment-form textarea {
    width: 100%;
    border: 2px solid rgb(17, 4, 122);
    border-radius: 8px;
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: #222;
    box-sizing: border-box;
    transition: .3s;
}

.recruitment-form input:not([type="submit"]):not([type="file"]),
.recruitment-form select {
    height: 52px;
}

.recruitment-form textarea {
    height: 150px;
    padding: 15px 18px;
    resize: vertical;
}

.recruitment-form input::placeholder,
.recruitment-form textarea::placeholder {
    color: #888;
}

.recruitment-form input:focus,
.recruitment-form select:focus,
.recruitment-form textarea:focus {
    outline: none;
    border-color: rgb(17, 4, 122);
    box-shadow: 0 0 0 3px rgba(17, 4, 122, .12);
}

/* Upload */

.upload-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.recruitment-form input[type="file"] {
    width: 100%;
    border: 2px dashed rgb(17, 4, 122);
    border-radius: 10px;
    padding: 18px;
    background: #fafafa;
    box-sizing: border-box;
    cursor: pointer;
}

/* Button */

.submit-center {
    justify-content: center;
}

.recruitment-form input[type="submit"] {
    background: rgb(17, 4, 122);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.recruitment-form input[type="submit"]:hover {
    background: rgb(32, 18, 170);
    transform: translateY(-2px);
}

/* Validation */

.recruitment-form .wpcf7-not-valid {
    border-color: #e53935 !important;
}

.recruitment-form .wpcf7-not-valid-tip {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
}

/* Responsive */

@media(max-width:768px) {

    .recruitment-row,
    .recruitment-row.two-col {
        flex-direction: column;
        gap: 15px;
    }

    .recruitment-form input[type="submit"] {
        width: 100%;
    }

}

/* ==========================
   SIDEBAR BLOG
========================== */

.post-sidebar .widget {
    margin-bottom: 28px;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}

/* ==========================
   Tiêu đề Widget
========================== */

.post-sidebar .widget-title span {
    font-size: 22px;
    font-weight: 600;
    color: #17479e;
}

.post-sidebar .is-divider {
    width: 35px;
    height: 2px;
    background: #2f6fe4;
    margin: 8px 0 16px;
}

/* ==========================
   Ô tìm kiếm
========================== */

.post-sidebar .search-field {
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    padding: 0 14px;
    box-shadow: none;
}

.post-sidebar .search-field:focus {
    border-color: #2f6fe4;
}

.post-sidebar .submit-button {
    width: 46px;
    height: 44px;
    border: none;
    background: #2f6fe4;
    border-radius: 0 10px 10px 0;
}

/* ==========================
   Bài viết mới
========================== */

.post-sidebar .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-sidebar .widget_recent_entries li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
}

.post-sidebar .widget_recent_entries li:last-child {
    border: none;
}

.post-sidebar .widget_recent_entries a {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    transition: .2s;
}

.post-sidebar .widget_recent_entries a:hover {
    color: #1d4ed8;
}

/* ==========================
   Card Vision
========================== */

.sidebar-card {
    padding: 0;
    background: none;
    border: none;
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 16px;
}

/* ==========================
   Nút
========================== */

.btn-sidebar {
    font-size: 14px;
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
    transition: .2s;
}

.btn-sidebar:hover {
    color: #0f3d91;
}

/*==============================
      VisionVN Preloader
==============================*/

#vision-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 999999999;
    transition: .6s ease;
}

#vision-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    filter: blur(6px);
}

/* Khung */

.vision-loader {

    width: 170px;
    height: 170px;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;
}

/* Vòng xoay */

.loader-ring {

    position: absolute;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    border: 2px solid rgba(46, 125, 50, .12);

    border-top: 2px solid #2E7D32;

    animation: ringRotate 1.5s linear infinite;
}

/* Logo */

.loader-logo {

    width: 95px;

    height: auto;

    animation: logoFloat 2s ease-in-out infinite;

    z-index: 2;
}

/* Animation */

@keyframes ringRotate {

    100% {
        transform: rotate(360deg);
    }

}

@keyframes logoFloat {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== trang liên hệ ===== */
.vision-contact {
    background: #fff;
    /* Nền trắng */
    border-radius: 20px;
    /* Bo góc */
    margin-top: -55px;
    /* Đẩy nổi lên banner */
    position: relative;
    z-index: 20;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    /* Đổ bóng */
    overflow: hidden;
}

/* ===== Mỗi cột ===== */
.vision-contact .col {
    padding: 20px 18px;
    /* Khoảng cách bên trong */
    border-right: 1px solid #f0f0f0;
    /* Đường ngăn */
}

/* Bỏ đường ngăn cột cuối */
.vision-contact .col:last-child {
    border-right: none;
}

/* ===== Icon + Nội dung ===== */
.vision-contact .icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Khoảng cách icon và chữ */
    text-align: left;
}

/* ===== Khung icon tròn ===== */
.vision-contact .icon-box-img {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kích thước icon */
.vision-contact .icon-box-img img,
.vision-contact .icon-box-img i {
    font-size: 22px;
}

/* ===== Tiêu đề (HOTLINE, EMAIL...) ===== */
.vision-contact h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #0f2b8f;
}

/* ===== Số điện thoại / Nội dung chính ===== */
.vision-contact .phone {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f2b8f;
}

/* ===== Nội dung mô tả ===== */
.vision-contact p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* =========================
   KHUNG CHỨA BIỂN TUYỂN DỤNG
========================= */
.vision-job-sign {
    text-align: center;
    /* Căn giữa trong cột */
    overflow: visible;
    /* Tránh bị cắt khi lắc */
}

/* =========================
   ẢNH BIỂN TUYỂN DỤNG
========================= */
.vision-job-sign img {
    width: 320px;
    /* Kích thước desktop */
    max-width: 100%;
    /* Responsive */
    display: inline-block;

    /* Điểm xoay nằm ở nút treo phía trên */
    transform-origin: 50% 8%;

    /* Hiệu ứng lắc */
    animation: visionSwing 3s ease-in-out infinite;

    /* Tăng hiệu năng animation */
    will-change: transform;

    /* Đổ bóng cho đẹp hơn */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .2));
}

/* =========================
   HIỆU ỨNG LẮC QUA LẠI
========================= */
@keyframes visionSwing {

    /* Nghiêng sang trái */
    0% {
        transform: rotate(-10deg);
    }

    /* Nghiêng sang phải */
    50% {
        transform: rotate(10deg);
    }

    /* Quay lại trái */
    100% {
        transform: rotate(-10deg);
    }
}

/* =========================
   Responsive Mobile
========================= */
@media (max-width: 768px) {

    .vision-job-sign img {
        width: 220px;
    }
}