@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
    --color-menu: #111827;
    --color-blue: #0148b9;
    --color-main: #002981;
    --color-body: #343a40;
    --color-text: #111827;
    --color-border: #dee2e6;
    --bg-body: #f8f9fa;
    --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
        "Ubuntu", "Helvetica Neue", Arial, sans-serif;
    --font-roboto: "Roboto", sans-serif;
    --font-anton: "Anton", sans-serif;
    --font-mono: "Space Mono", sans-serif;
    --container-max-width: 1200px;
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --animate-spin: spin 1s linear infinite;
    --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Montserrat" !important;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Montserrat";
    background-color: var(--bg-body);
    color: var(--color-text);
    font-size: 1rem;
    top: 0 !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.main {
    min-height: 100vh;
    margin-top: 48px;
    background-color: var(--bg-body);
}

.z-3 {
    z-index: 3;
}

.svg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.svg-bg {
    width: 100%;
    height: 10040px;
}

.grecaptcha-badge {
    display: none !important;
}

a {
    text-decoration: none;
    color: var(--color-body);
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.title-section {
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
}

.desc-section {
    color: rgba(0, 0, 0);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

.py-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

@media (min-width: 376px) {
    .title-section {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .py-content {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .desc-section {
        font-size: 1rem;
    }

    .py-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Customer Dots */
.owl-theme .owl-dots .owl-dot span {
    width: 32px;
    height: 3px;
    border-radius: 3px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--color-main);
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Pagination **/
.pagination-home {
    margin-top: 30px;
}

.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

.pagination {
    display: flex;
    text-align: center;
    margin-top: 15px;
    list-style: none;
    justify-content: center;
}

.pagination a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
    text-decoration: none;
}

.pagination a:hover {
    background: #ccc;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

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

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    overflow: hidden;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: auto;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%)
        hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    /* margin-right: 10px; */
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-search button i {
    font-size: 20px;
    color: white;
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: transparent;
    color: white;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
} */

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: -webkit-fill-available;
    padding: 15px;
    background: linear-gradient(to bottom, #292929, transparent);
    /* background-color: #fff; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
    display: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.mobile-header.scrolled {
    background-color: rgba(17, 24, 39, 0.9);
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 78px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle i {
    font-size: 20px;
    color: white;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px;
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    z-index: 20;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 16px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.25rem;
    padding: 0.5rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(56, 32, 41);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: rgb(0, 41, 129);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(22, 24, 146, 0.7);
        box-shadow: 0 0 0 0 rgba(22, 41, 146, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(30, 22, 146, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(47, 22, 146, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: var(--color-main);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

.phone-sub-item:last-child {
    border-bottom: 0px;
}

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-01);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-sub-item .icon svg {
    fill: var(--color-01);
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}

/* TOOL TIP PROFILE */
.profile-tooltip {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    background-color: var(--color-main, #0d56a0);
    color: #fff;
    font-size: 0.875rem;
    white-space: nowrap;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.profile-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none;
}

.nav-pc {
    width: 100%;
    display: none;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    background-image: linear-gradient(
        to bottom,
        color-mix(in oklab, #040509 100%, transparent) 0%,
        color-mix(in oklab, #020204 90%, transparent) 40%,
        color-mix(in oklab, #04090d 60%, transparent) 100%
    );
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    gap: 2rem;
}

/* Logo */
.logo-link {
    display: block;
    position: relative;
}

.logo-default {
    max-width: 190px;
    height: 46px;
    display: block;
}

.logo-hover {
    max-width: 190px;
    display: none;
}

/* Header */

.header {
    position: relative;
}

.header-video {
    position: relative;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    min-height: 100vh;
}

.header-video video {
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    position: relative;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.4;
    z-index: 5;
}

.overlay_7 {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.7;
    z-index: 5;
}

.overlay_blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgb(116 119 237 / 18%),
        rgba(30, 58, 138, 0.7)
    );
    z-index: 0;
}

.overlay_blue_2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        rgba(30, 58, 138, 0.7)
    );
    z-index: 0;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Content wrapper */
.header-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.box_container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 100%;
}

/* Textbox */
.header-textbox {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Title */
.header-title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}

/* Description */
.header-desc {
    font-size: 0.9375rem;
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 4px;
    font-weight: 400;
}

/* Form + Button */
.header-form {
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 240px;
}

.header-btn {
    width: 100%;
    max-width: 230px;
    height: 56px;
    padding: 0 1.75rem;
    border-radius: 30px;
    background: var(--color-blue);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1.5;
    font-family: "Montserrat";
}

.header-btn:hover {
    opacity: 0.8;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.company-stat {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 0.5rem;
}

.company-stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 2px #fff;
}

.company-stat-text {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
}

/*--------------------------------- Menu ---------------------------------*/
.nav-links {
    flex: 1;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.menu-item {
    position: relative;
    list-style: none;
}

.menu-item > a {
    font-weight: 500;
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.menu-item > a:hover {
    opacity: 0.6;
}

/* Dropdown */
.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    margin-top: 0;
    background: rgba(17, 24, 39, 0.9);
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 50;
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 15px;
    color: white;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hiện dropdown khi hover */
.menu-item.has-sub:hover > .submenu {
    display: block;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-item {
    display: flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lang-item img {
    border-radius: 50%;
}

/* Nút signup */
.btn-signup {
    font-family: "Montserrat";
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    height: 40px;
    padding: 0 0.35rem 0 1rem;
    border-radius: 999px;
    background: linear-gradient(to bottom, #0148b9, #002981);
    color: white;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    opacity: 0.9;
}

/* Menu toggle (mobile) */
.menu-toggle {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(to bottom, #0148b9, #002981);
    cursor: pointer;
    position: relative;
}

.bar {
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.bar:nth-child(1) {
    top: 12px;
}

.bar:nth-child(2) {
    top: 18px;
}

.bar:nth-child(3) {
    top: 24px;
}

/* Khi toggle mở */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
}

/*--------------------------------- FOOTER ---------------------------------*/

.footer {
    background: var(--color-menu);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 40px;
    font-family: var(--font-sans);
    font-weight: 500;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
}

.btn-advise {
    font-family: "Montserrat";
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #0148b9, #002981);
    color: #fff;
    padding: 10px 20px;
    border-radius: 9999px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: opacity 0.3s;
    font-weight: bold;
    font-size: 1rem;
}

.button_footer {
    padding: 8px 16px !important;
}

.btn-advise:hover {
    opacity: 0.8;
}

.btn-icon {
    background: #fff;
    color: var(--color-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-col {
    min-width: 250px;
    padding-top: 1.5rem;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 0.7;
}

.footer-logo img {
    max-width: 100%;
    margin-bottom: 2rem;
}

.footer-text {
    font-size: 14px;
    line-height: 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
}

.footer-content p span a {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    text-align: center;
}

.list_link {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials img {
    width: 28px;
    height: 28px;
}

/* TAB CONTENT */
.tab_content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.tab_content.active {
    display: block;
}

.tab_content.fade-in {
    opacity: 1;
}

.tabs-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    align-items: stretch;
}

.tab-item {
    width: 100%;
}

.tab_button {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: inherit;
    height: 100%;
}

.grid_2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid_3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.grid_4 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.grid_5 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.flex {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.line_height_4 {
    line-height: 1.4;
}

.z-10 {
    position: relative;
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.mt-12 {
    margin-top: 3rem;
}

.banner {
    width: 100%;
    border-radius: 1rem;
}

.banner img {
    width: 100%;
    border-radius: 1rem;
}

/* FORM */
.form {
    width: 100%;
    flex: 3 3 0%;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.8)
    );
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-width: 555px;
}

.form_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1.25rem;
}

.form_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form_group input {
    width: 100%;
    height: 2.5rem;
    outline: none;
    border: 1px solid #9999997b;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
    color: #9999997b;
}

.form_group textarea,
.form_group select {
    outline: none;
    border: 1px solid #9999997b;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
}

.btn-submit {
    width: 100%;
    margin: 1rem 0;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #014999, #002980);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

.select_inner {
    position: relative;
    width: 100%;
}

/* Select custom */
.custom_select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    width: 100%;
    padding-left: 0.5rem;
    padding-right: 2.5rem;
    border: 1px solid #bdbdbd;
    border-radius: 1rem;
    background-color: #fff;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.4;

    outline: none;
    box-sizing: border-box;
}

.custom_select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Icon */
.select_icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    color: #1f2937;
}

.select_icon .icon {
    width: 16px;
    height: 16px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.line_height_5 {
    line-height: 1.5;
}

.mt-75 {
    margin-top: 0.75rem;
}

.btn-text-submit {
    border-radius: 50%;
    background-color: white;
    color: #000;
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    justify-content: center;
}

/* ====================== MEDIA QUERIES ====================== */

@media (min-width: 991px) {
    .nav-pc {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .header-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .company-stats {
        margin-top: 3.5rem;
    }

    .company-stat-number {
        font-size: 48px;
    }

    .title-section {
        font-size: 1.875rem;
    }

    .footer-intro {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .footer-main {
        display: flex;
        width: 100%;
        align-items: start;
        justify-content: space-between;
    }

    .logo-col {
        width: 100%;
        max-width: 390px;
    }

    .footer_link {
        width: 100%;
        max-width: 70%;
        display: flex;
        justify-content: start;
        align-items: start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer {
        padding: 4rem 0;
        padding-bottom: 4rem 0 2.5rem 0;
    }

    .main {
        margin-top: 6rem;
    }

    .box_container {
        padding: 0 1rem;
    }

    .header-desc {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .company-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .company-stat-number {
        font-size: 64px;
    }
}

/*========================
= Border Chase Animation =
========================*/
.border-chase {
    position: relative;
    overflow: hidden;
}

.border-chase::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #c0c0c0,
        #002980,
        #c0c0c0,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 41, 128, 0.7);
    z-index: 10;
}

.border-chase::after {
    content: "";
    position: absolute;
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent,
        #c0c0c0,
        #002980,
        #c0c0c0,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 41, 128, 0.7);
    z-index: 10;
}

.border-chase .bottom-border {
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        270deg,
        transparent,
        #c0c0c0,
        #002980,
        #c0c0c0,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 41, 128, 0.7);
    z-index: 10;
}

.border-chase .left-border {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        0deg,
        transparent,
        #c0c0c0,
        #002980,
        #c0c0c0,
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 41, 128, 0.7);
    z-index: 10;
}

.border-chase:hover::before {
    opacity: 1;
    animation: chase-top 1.5s ease-in-out infinite;
}

.border-chase:hover::after {
    opacity: 1;
    animation: chase-right 1.5s ease-in-out infinite 0.375s;
}

.border-chase:hover .bottom-border {
    opacity: 1;
    animation: chase-bottom 1.5s ease-in-out infinite 0.75s;
}

.border-chase:hover .left-border {
    opacity: 1;
    animation: chase-left 1.5s ease-in-out infinite 1.125s;
}

@keyframes chase-top {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes chase-right {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@keyframes chase-bottom {
    0% {
        right: -100%;
    }

    100% {
        right: 100%;
    }
}

@keyframes chase-left {
    0% {
        bottom: -100%;
    }

    100% {
        bottom: 100%;
    }
}

/*==========================
= Owl Carousel Dots Custom =
===========================*/
.owl-nav-custom {
    position: absolute;
    top: 42%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-nav-custom button.owl-prev,
.owl-nav-custom button.owl-next {
    pointer-events: auto;
    /* background: #2563eb !important;
    color: #fff !important; */
    border: none;
    border-radius: 50%;
    border-color: #2563eb !important;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    outline: none;
    opacity: 0.9;
}

.owl-nav-custom button.owl-prev:hover,
.owl-nav-custom button.owl-next:hover {
    background: #1d4ed8;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.22);
    opacity: 1;
}

.owl-nav-custom button.owl-prev {
    margin-left: 8px;
}

.owl-nav-custom button.owl-next {
    margin-right: 8px;
}

.owl-nav-custom button[disabled] {
    background: #e5e7eb;
    color: #a5b4fc;
    pointer-events: none;
    opacity: 0.5;
    box-shadow: none;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.owl-container-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Style cho dots */
.owl-container-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.owl-container-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.owl-container-dots .dot.active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.owl-container-dots.bar-style .dot {
    width: 25px;
    height: 3px;
    border-radius: 2px;
}

.owl-container-dots.bar-style .dot.active {
    width: 40px;
    background-color: #333;
}

.owl-container-dots .dot.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* Override default Owl Carousel navigation nếu cần */
/* .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        pointer-events: none;
    }

    .owl-nav button {
        pointer-events: all;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5) !important;
        color: #fff !important;
        border-radius: 50%;
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .owl-nav button:hover {
        background: rgba(0, 0, 0, 0.8) !important;
    }

    /* Responsive */
@media (max-width: 768px) {
    .owl-container-dots {
        bottom: 10px;
        padding: 8px 15px;
    }

    .owl-container-dots .dot {
        width: 10px;
        height: 10px;
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader image */
.render-placeholder {
    background-color: #f6f6f6;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.render-placeholder img {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 1s linear;
}

.render-placeholder img.loaded {
    opacity: 1;
}

.img-small {
    filter: blur(50px);
    /* this is needed so Safari keeps sharp edges */
    transform: scale(1);
    opacity: 0;
    transition: opacity 0.1s ease;
}
