﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

strong {
    font-weight: bolder !important;
}

em {
    font-style: italic !important;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

a:visited,
a:focus {
    outline: none;
}

p {
    margin: 0;
}

p+p {
    margin-top: 10px;
}

img {
    max-width: 100%;
    height: auto;
}

.clr {
    clear: both;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* ------------------------------------ROOT */
:root {
    --color-white: #fff;
    --color-black: #000;
    --color-gray: #333;
    --color-gray-2: #dfdfdf;
    --color-dim-gray: #686868;
    --color-dim-gray-2: #8b8b8b;
    --color-red: #df2232;
    --color-deep-blue: #29166f;
    --color-deep-blue-2: #19307c;
    --color-blue: #0056b3;
    --color-blue-2: #0492de;
    --color-blue-3: #e2f5ff;

    --bs-gutter-x: 1.5rem;
}

#wrapper {
    overflow: hidden;
    /*position: absolute;*/
    min-height: 100%;
    width: 100%;
    z-index: 1;
}

#wrapper-in {
    background: #fff;
    top: 0;
    left: 0;
    position: relative;
    width: 100%;
    z-index: 99;
    overflow: hidden;
}

.custom__width {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
}

.wrap-w {
    margin: 0 calc(var(--bs-gutter-x) * -.5);
}

.w-pad {
    padding: 0 calc(var(--bs-gutter-x) * .5);
}

.w-1110 {
    width: 1110px;
}

.w-992 {
    width: 992px;
}

.w-820 {
    width: 820px;
}

.w-3\/12 {
    width: 25%;
}

.w-4\/12 {
    width: 33.333333%;
}

.w-5\/12 {
    width: 41.666667%;
}

.w-6\/12 {
    width: 50%;
}

.w-7\/12 {
    width: 58.333333%;
}

.w-8\/12 {
    width: 66.666667%;
}

.w-9\/12 {
    width: 75%;
}

.wrap-content img {
    display: block;
    margin: 0 auto 10px;
    max-width: 100%;
}

.about-aside .sub-1-menu {
    border: none;
}

.about-aside .sub-1-menu li a {
    padding-left: 20px;
}

.about-aside .sub-1-menu li a::before {
    content: "";
    display: inline-block;
    background-image: url("/images/icon/arrow-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 10px;
    width: 10px;
    margin-right: 5px;
}

.wrap-content table tr:nth-of-type(2n) {
    background: rgba(0, 0, 0, .02);
}

.wrap-content ul,
.wrap-content ul {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.wrap-content ul li {
    list-style: initial;
}

.wrap-content li li {
    list-style: circle;
}
.wrap-content a {
    text-decoration: underline;
    color: #0056b3;
}
.owl-carousel .owl-stage-outer {
    width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(var(--bs-gutter-x) * .5);
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.align-content-start {
    align-content: start;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.img-max-full-w {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.mgb-30 {
    margin-bottom: 30px;
}

.pdl-15 {
    padding-left: 15px;
}

.pdr-15 {
    padding-right: 15px;
}

.reset-liststyle,
.reset-liststyle li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.font-w-bold {
    font-weight: bold;
}

.font-w-500 {
    font-weight: 500;
}

.font-condensed {
    font-family: 'RobotoCondensed';
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.section-margin {
    margin: 30px 0;
}

/* ------------------------------------MAIN CSS */
body {
    font-family: "Roboto";
    font-size: 16px;
    line-height: 1.25;
    background: #fff;
    margin: 0;
    padding: 0;
    color: var(--color-gray);
    background: var(--color-white);
    -webkit-text-size-adjust: 100%;
}

header#main-header .top-head {
    padding: 13px 0;
    background: url('../images/header-bg.png') no-repeat;
    background-size: cover;
}

header#main-header .top-head .top-head-right .info span {
    margin-right: 15px;
    padding-left: 22px;
    font-size: 14px;
}

header#main-header .top-head .top-head-right .info span.phone {
    background: url('../images/phone.png') no-repeat 0 50%;
}

header#main-header .top-head .top-head-right .info span.mail {
    background: url('../images/mail.png') no-repeat 0 50%;
}

header#main-header .top-head .top-head-right .search {
    position: relative;
}

header#main-header .top-head .top-head-right .search>img {
    cursor: pointer;
}

header#main-header .top-head .top-head-right .search form {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
}

header#main-header .top-head .top-head-right .search form.active {
    display: block;
}

header#main-header .top-head .top-head-right .search form input[type="text"] {
    width: 300px;
    height: 40px;
    border: 1px solid var(--color-gray-2);
    border-radius: 3px;
    padding: 5px 10px;
}

header#main-header .top-head .top-head-right .search form input[type="text"]:focus {
    outline-style: none;
    box-shadow: none;
}

nav#main-menu {
    padding: 10px 0;
    background: url('../images/menu-bg.png') no-repeat;
    background-size: cover;
    border-bottom: 2px solid var(--color-blue-2);
}

nav#main-menu a {
    color: var(--color-white);
}

nav#main-menu .main-nav {
    color: var(--color-white);
}

nav#main-menu .main-nav ul>li:not(:first-child) {
    padding: 0 15px;
}

nav#main-menu .main-nav ul>li:first-child {
    padding-right: 15px;
}

nav#main-menu .main-nav ul>li>a {
    padding: 5px 25px;
    display: block;
    border-radius: 25px;
}

nav#main-menu .main-nav ul>li>a:hover {
    background-color: var(--color-deep-blue);
}

nav#main-menu .dropdown-nav>ul>li {
    position: relative;
}

nav#main-menu .dropdown-nav>ul>li:hover>ul {
    display: block;
}

nav#main-menu .dropdown-nav>ul ul {
    display: none;
    position: absolute;
    top: 100%;
    right: -15px;
    width: 205px;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, .1);
    z-index: 99;
}

nav#main-menu .dropdown-nav>ul ul li {
    padding: 7px 0 7px 25px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"></path></svg>');
    background-repeat: no-repeat;
    background-position: 7px 50%;
}

nav#main-menu .dropdown-nav>ul ul li:hover {
    background-color: var(--color-blue-3);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23df2232" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"></path></svg>');
}

nav#main-menu .dropdown-nav>ul ul a {
    color: var(--color-gray);
    display: block;
}

.main-category {
    margin: 0 -15px;
    position: absolute;
    bottom: -300px;
    width: 100%;
}

.main-category .item {
    padding: 0 calc(var(--bs-gutter-x) * .5);
    width: 25%;
}

.main-category .item .wrap-item {
    background: url('../images/cate-bg.png') no-repeat;
    background-size: cover;
    color: var(--color-white);
    padding: 35px 20px;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.main-category .item .wrap-item h2 {
    font-size: 20px;
    font-weight: bold;
    /*text-transform: uppercase;*/
    padding: 15px 0;
}

.main-category .item .wrap-item p {
    font-size: 16px;
    line-height: 1.5;
}

.main-category .item .wrap-item .read-more {
    color: var(--color-gray);
    background-color: var(--color-blue-3);
    padding: 7px 15px;
    border-radius: 20px;
    margin-top: 15px;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.main-category .item .wrap-item:hover {
    border-color: var(--color-blue-2);
    transform: translateY(-15px);
}

.main-category .item .wrap-item:hover .read-more {
    opacity: 1;
    visibility: visible;
}

.main-category .item .wrap-item .read-more svg {
    position: relative;
    top: 2px;
}

.module-header {
    margin-bottom: 15px;
}

.module-header h2 {
    color: var(--color-deep-blue);
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-left: 60px;
    font-size: 26px;
}

.module-header h2::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--color-red);
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.news-wrap .main-item a {
    max-height: 230px;
    width: 100%;
    overflow: hidden;
    display: inline-block;
}
.news-wrap .main-item img {
    height:auto;
}

.news-wrap .content .font-condensed a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-wrap .item {
    margin-top: 10px;
}

.news-wrap .item .img {
    width: 71px;
}

.news-wrap .item .content {
    padding-left: 10px;
    width: calc(100% - 71px);
}

.wrap-tt {
    font-weight: bold;
}

/* Executive Committee Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

table thead {
    background-color: #e0f2f7;
}

table th {
    padding: 12px;
    text-align: center;
    color: #1e3a5f;
    font-weight: bold;
    border: 1px solid #d0d0d0;
}

table td {
    padding: 12px;
    border: 1px solid #d0d0d0;
    color: #333;
}

table tbody tr {
    background-color: white;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table .stt {
    text-align: left;
}

table .name {
    text-align: left;
}

table .position {
    text-align: left;
}

.document-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.document-list .document-wrap {
    width: calc(100%/3);
    display: flex;
    flex-direction: column;
}

.document-list .document-wrap .main-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
}

.document-list .document-wrap .main-item:hover {
    box-shadow: 0px 0px 4px 0px rgb(207 207 207);
}

.document-list .document-wrap .main-item .content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.document-list .document-wrap .main-item .content .desc {
    flex: 1;
}

.document-list .document-wrap .main-item .img {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.document-list .document-wrap .main-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.document-wrap .main-item h3,
.news-wrap .main-item h3 {
    font-size: 22px;
    color: var(--color-deep-blue);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-wrap .main-item .content,
.news-wrap>.content,
.document-wrap .main-item .content {
    padding: 5px 10px 20px;
}

ul.footer-contacts__contacts {
    font-size: 15px;
    line-height: 20px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

ul.footer-contacts__contacts,
ul.footer-contacts__contacts li {
    list-style: none !important;
}

.footer-contacts__contacts li {
    padding: 8px 0;
    position: relative;
}

.footer-contacts__contacts li i {
    color: #0094dd;
    font-size: 20px;
}

.footer-contacts__contacts li i {
    float: left;
}

.footer-contacts__contacts li span,
.footer-contacts__contacts li a {
    width: calc(100% - 22px);
    margin-left: 35px;
    display: block;
}

.form-group {
    display: block;
    margin-bottom: 25px;
}

.footer-contacts__icon {
    display: inline-block;
    text-align: center;
    width: 22px;
}

.ico-address {
    background: url('/images/icon/ico-address.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.ico-phone {
    background: url('/images/icon/ico-phone.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.ico-mail {
    background: url('/images/icon/ico-mail.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.ico-website {
    background: url('/images/icon/ico-website.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.ico-sent {
    background: url('/images/icon/ico-sent.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;

}

.ico-download {
    background: url('/images/icon/ico-download.png') no-repeat center center;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.form-contact {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #efefef;
    padding-top: 30px;
    padding-bottom: 30px;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-contact .form-group {
    width: 70%;
    margin: 0 auto;
    padding: 8px;
}

.default-button {
    background-color: #0094dd;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 110px;
}

.footer-group {
    text-align: right;
}

.faq-list {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius);
    padding: 12px;
    /*box-shadow: 0 8px 30px rgba(2,6,23,0.6);*/
    overflow: hidden;
    /*border: 1px solid rgba(255,255,255,0.03);*/
}

.faq-item {
    margin: 8px;
    overflow: hidden;
    border: 1px solid;
    border-color: #f2f2f2;
}

.faq-trigger {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    background: transparent;
    border: 1px solid #f2f2f2;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
    text-align: left;
    color: inherit;
    font-size: 15px;
    transition: background .18s ease;
}

.faq-trigger:hover {
    background: var(--glass)
}

.module-footer .view-more-btn {
    border-radius: 20px;
    /* width: 100px; */
    float: right;
    text-align: center;
    background-color: #e2f4fe;
    /* line-height: 24px; */
    padding: 4px;
    font-size: 12px;
    padding-left: 10px;
}

.right-arrow {
    width: 25px;
    height: 7px;
    display: inline-block;
    background: url('/images/icon/right-arrow.png') no-repeat center center;
    background-size: contain;
}

.news-wrap .main-item:hover {
    box-shadow: 0px 0px 17px 0px rgb(207 207 207);
    /*padding: 5px;*/
}

.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
    background-color: #db241c !important;
}
.owl-carousel .owl-item .main-item img {
    height: 150px;
}
.team-section {
    background: #fff;
    padding: 40px 20px;
    /* QUAN TRỌNG: Xóa căn giữa toàn bộ */
    text-align: left;
}

/* Header sát trái */
.team-header {
    /*display: flex;
    align-items: center;
    gap: 12px;*/
    margin-bottom: 30px;
    /* QUAN TRỌNG: Cho nó full width và sát trái */
    width: 100%;
    height: 72px;
}

.team-header h2 {
    margin-left: 10px;
    font-size: 22px;
    color: #0b2d57;
    font-weight: 600;
    line-height: 72px;
    float: left;
}

.team-header .team-icon {
    width: 72px;
    height: 72px;
    float: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0px;
    max-width: 1000px;
    margin: 0 auto;
}

.member {
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.member:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.member img {
    width: 202px;
    height: 255px;
    object-fit: cover;
    margin-bottom: 15px;
}

.member h3 {
    font-size: 16px;
    color: #002b5b;
    margin: 5px 0 2px;
}

.member .position {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.member .email i {
    color: #0078d7;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.member .email {
    color: #a1a1a1;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.quality-section {
    max-width: 960px;
    /* chiều rộng khối nội dung */
    margin: 0 auto;
    color: #333;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #0b2d57;
    margin: 0 0 25px;
}

/* Mỗi người là một hàng: ảnh trái – nội dung phải */
.staff-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 25px 0;
}

.staff-photo img {
    width: 190px;
    height: auto;
    object-fit: cover;
}

/* Nội dung bên phải */
.staff-info h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
}

.staff-role {
    margin: 0 0 10px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Email với icon */
.staff-email {
    margin: 0 0 12px;
    font-size: 14px;
    color: #a1a1a1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.staff-email::before {
    width: 16px;
    height: 12px;
    display: block;
    background-image: url('/images/icon/ico-mail.png');
}

.icon-mail {
    width: 16px;
    height: 12px;
    background-image: url('/images/icon/ico-mail.png');
}

.staff-info {
    margin-top: 10px;
    width: 100%;
}

/* Bullet trách nhiệm */
.staff-duties {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.staff-duties li::marker {
    color: #0078d7
}

/* Responsive: màn nhỏ thì ảnh nằm trên, text dưới */
@media (max-width: 768px) {
    .staff-item {
        flex-direction: column;
    }

    .staff-photo img {
        width: 160px;
    }
    .news-wrap .main-item a{
        height:auto;
    }
}

.q {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.q .title {
    font-weight: 600
}

.q .meta {
    font-size: 13px;
    color: var(--muted)
}

.chev {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: inline-grid;
    place-items: center;
    /*background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);*/

    transition: transform .25s cubic-bezier(.2, .9, .2, 1);
    flex: 0 0 36px;
}

.top-arrow {
    background-image: url(/images/icon/top-arrow.png);
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    margin-top: 14px;
    text-align: right;
    margin-left: 14px;
}

.answer {
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    transition: max-height .28s ease, padding .25s ease;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px dashed rgba(255, 255, 255, 0.02);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.006), transparent);
}

.answer p {
    margin: 14px 0
}

/* active state */
.faq-item[aria-expanded="true"] .answer {
    padding: 14px 16px 20px;
    max-height: 400px;
    /* đủ cho nội dung thường */
}

.faq-item[aria-expanded="true"] .chev {
    transform: rotate(180deg);
    /*box-shadow: 0 6px 18px rgba(7,178,212,0.09);*/
}

/* small screens */
@media (max-width:520px) {
    body {
        padding: 22px
    }

    .logo {
        width: 44px;
        height: 44px;
        border-radius: 10px
    }

    .faq-trigger {
        padding: 12px
    }

    .answer {
        font-size: 13.5px
    }
}

/* subtle focus style for keyboard users */

.document-wrap span.type,
.news-wrap span.date,
.main-highlight .content span.date,
.detail-title span.date {
    display: block;
    color: var(--color-dim-gray-2);
    font-size: 12px;
    padding-left: 20px;
}

.news-wrap span.date,
.main-highlight .content span.date,
.detail-title span.date {
    background: url('../images/calendar.png') no-repeat left 50%;
    margin: 7px 0;
}

.document-wrap span.type {
    background: url('../images/document.png') no-repeat left 50%;
    padding-top: 7px;
    padding-bottom: 7px;
}

.document-wrap .main-item h3 {
    margin-bottom: 10px;
}

.home-news-carousel .owl-nav,
.home-document-carousel .owl-nav,
.more-news-carousel .owl-nav {
    position: absolute;
    top: -45px;
    right: 0;
    display: flex;
}

.more-news-carousel .owl-nav {
    top: -65px;
}

.home-news-carousel.owl-carousel .owl-nav .owl-next,
.home-news-carousel.owl-carousel .owl-nav .owl-prev,
.home-document-carousel.owl-carousel .owl-nav .owl-next,
.home-document-carousel.owl-carousel .owl-nav .owl-prev,
.more-news-carousel.owl-carousel .owl-nav .owl-next,
.more-news-carousel.owl-carousel .owl-nav .owl-prev {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--color-gray-2);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
}

.search-wrap {
    background: var(--color-deep-blue-2) url('../images/search-bg.png') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}

.search-wrap h2 {
    font-size: 30px;
    color: var(--color-white);
}

.search_box {
    width: 700px;
    background: #fff;
    border-radius: 8px;
    height: 55px;
    display: flex;
    padding: 10px;
    box-shadow: 0 8px 6px -10px #b3c6ff;
    position: relative;
}

.search_box>form {
    width: 100%;
}

.search_box .dropdown {
    width: 220px;
    border-right: 2px solid #dde2f1;
    color: #9fa3b1;
    position: relative;
    cursor: pointer;
}

.search_box .dropdown .default_option {
    padding: 9px 15px;
}

.search_box .dropdown ul {
    position: absolute;
    top: 50px;
    left: -10px;
    background: #fff;
    width: 190px;
    border-radius: 5px;
    padding: 20px;
    display: none;
    box-shadow: 8px 8px 6px -10px #b3c6ff;
    z-index: 99;
}

.search_box .dropdown ul.active {
    display: block;
}

.search_box .dropdown ul li {
    padding-bottom: 20px;
}

.search_box .dropdown ul li:last-child {
    padding-bottom: 0;
}

.search_box .dropdown ul li:hover {
    color: #6f768d;
}

.search_box .dropdown:before {
    content: "";
    position: absolute;
    top: 13px;
    right: 20px;
    border: 8px solid;
    border-color: var(--color-red) transparent transparent transparent;
}

.search_box .search_field {
    width: calc(100% - 220px);
    height: 100%;
    position: relative;
}

.search_box .search_field .input {
    width: 100%;
    height: 100%;
    border: 0px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 38px;
    color: #6f768d;
}

.search_box .search_field .input:focus,
.search_box .search_field .input:active {
    outline-style: none;
    box-shadow: none;
}

.search_box .search_button button {
    font-size: 0;
    width: 55px;
    height: 55px;
    border: none;
    background: var(--color-red);
    border-radius: 7px;
    position: absolute;
    left: calc(100% + 10px);
    top: 0;
    cursor: pointer;
}

.search_box .search_button button img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #9fa3b1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #9fa3b1;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #9fa3b1;
}

hr {
    color: var(--color-gray-2);
    opacity: 0.5;
}

.about-showcase .item {
    width: 50%;
    margin-bottom: 30px;
}

.about-showcase .item .img {
    width: 67px;
}

.about-showcase .item .content {
    padding-left: 15px;
}

.about-showcase .item .content h4 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-deep-blue);
    margin-bottom: 7px;
}

.partner-wrap {
    padding: 50px 0;
    background-color: var(--color-blue-3);
}

.partner-wrap h2 {
    font-size: 30px;
    color: var(--color-deep-blue-2);
}

.partner-cate {
    justify-content: center;
}

.partner-cate .item {
    width: 16.66667%;
    padding: 0 15px;
}

.partner-cate .item .item-wrap {
    background-color: var(--color-white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
    text-align: center;
    height: 100%;
}

.partner-cate .item .item-wrap img {
    max-width: 100%;
    margin-bottom: 10px;
    height: 41px;
}

.partner-cate .item .item-wrap p {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-gray);
}

/**/
.home-banner {
    position: relative;
    overflow: hidden;
}

/* Desktop: hiển thị img, ẩn background */
.home-banner-bg {
    display: none;
}

.home-banner-img {
    display: block;
    width: 100%;
}

.home-banner>.container {
    position: relative;
    z-index: 1;
}

.sub-banner .sub-info {
    height: 230px;
    padding-top: 55px;
    color: var(--color-white);
    background: url('../images/sub-banner.png') no-repeat center center;
    background-size: cover;
}

.sub-banner .sub-info h1 {
    font-weight: bold;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-category {
    position: absolute;
    bottom: -80px;
    width: 100%;
}

.about-category .about-category-wrap {
    box-shadow: 0px 7px 10px -3px rgba(0, 0, 0, 0.1);
}

.about-category .item {
    width: 230px;
    height: 135px;
    background: var(--color-white) linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 20%);
}

.about-category .about-category-wrap .item {
    width: 200px;
}

.about-category .item>a {
    padding: 32px 0;
    height: 100%;
}

.about-category .item img {
    margin-bottom: 10px;
}

.about-category .item h2 {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
}

.about-category .item.active,
.about-category .item:hover {
    background: url('../images/cab-hover.png') no-repeat center top;
    background-size: cover;
    color: var(--color-white);
    height: 150px;
}

.about-category .item.active>a>img,
.about-category .item:hover>a>img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.about-aside ul {
    border: 1px solid var(--color-gray-2);
    padding: 10px 0;
    background-color: var(--color-white);
}

.about-aside ul li a {
    display: block;
    padding: 10px;
    border-left: 2px solid transparent;
}

.about-aside ul li.active a,
.about-aside ul li a:hover {
    border-color: var(--color-blue-2);
    background-color: var(--color-blue-3);
}

.title-b-bottom {
    position: relative;
    border-bottom: 1px solid var(--color-gray-2);
    margin-bottom: 30px;
}

.title-b-bottom::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    left: 0;
    bottom: -1px;
    background-color: var(--color-red);
}

.title-b-bottom>h3 {
    font-weight: bold;
    font-size: 26px;
    color: var(--color-deep-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-highlight .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(25, 48, 124, 0.8);
    width: 100%;
}

.main-highlight .content h4 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.section-highlight .highlight .news-wrap .item {
    margin-top: 25px;
}

.section-highlight .highlight .news-wrap .item:first-child {
    margin-top: 0;
}

.section-highlight .highlight .news-wrap .item .img {
    width: 103px;
}

.section-highlight .highlight .news-wrap .item .content {
    width: calc(100% - 103px);
}

.paging a {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    text-align: center;
    line-height: 30px;
    background-color: var(--color-blue-3);
    border: 1px solid var(--color-gray-2);
}

.paging a+a {
    margin-left: 5px;
}

.paging a.active,
.paging a:hover {
    background-color: var(--color-blue-2);
    border-color: var(--color-blue-2);
    color: var(--color-white);
}

.bread-crumb {
    padding: 30px 0;
}

.bread-crumb a {
    font-size: 14px;
    color: var(--color-dim-gray-2);
}

.bread-crumb a+a::before {
    content: "/";
    margin: 0 15px;
}

.detail-title {
    margin-bottom: 15px;
}

.detail-title h1 {
    font-size: 30px;
    color: var(--color-deep-blue);
}

.detail-aside .main-highlight .content {
    padding: 10px;
}

.detail-aside .main-highlight .content h4 {
    font-size: 16px;
}

.more-news-carousel .document-wrap .main-item .img {
    display: block;
    margin-bottom: 10px;
}

/**/
footer#main-footer {
    background-color: var(--color-deep-blue-2);
    padding: 50px 0 0;
    color: var(--color-white);
    font-size: 15px;
    background-image: url('/images/back-footer.png');
    background-repeat: no-repeat;
    background-position: center;
}

footer#main-footer a {
    color: var(--color-white);
}

footer#main-footer h1 {
    font-size: 20px;
    margin-bottom: 7px;
}

footer#main-footer h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

footer#main-footer ul li {
    margin-bottom: 7px;
    line-height: 1.5;
}

footer#main-footer ul.ul-address li {
    padding: 5px 0 5px 25px;
    background-repeat: no-repeat;
    background-position: left 8px;
}

footer#main-footer ul.ul-address li:nth-child(1) {
    background-image: url('../images/ft-1.png');
}

footer#main-footer ul.ul-address li:nth-child(2) {
    background-image: url('../images/ft-2.png');
}

footer#main-footer ul.ul-address li:nth-child(3) {
    background-image: url('../images/ft-3.png');
}

footer#main-footer ul.ul-address li:nth-child(4) {
    background-image: url('../images/ft-4.png');
}

footer#main-footer ul.ul-list li {
    line-height: 1.5;
    padding: 0 0 0 10px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%230492de" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"></path></svg>');
    background-repeat: no-repeat;
    background-position: -5px 50%;
}

footer#main-footer p.copyright {
    position: relative;
    padding: 20px 0;
    margin-top: 15px;
    border-top: 1px solid #1c368b;
}

footer#main-footer p.copyright::before {
    position: absolute;
    content: "";
    height: 1px;
    left: 0;
    bottom: calc(100% + 1px);
    width: 100%;
    background-color: #1b2d68;
}

/* Grid 3 cột */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    padding: 20px 0;
    width: 100%;
}

/* Card */
.doc-card {
    background: #ffffff;
    /*border-radius: 10px;*/
    /* padding: 18px; */
    display: inline-block;
    gap: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    cursor: pointer;
    /*width: calc(100% / 3);*/
    max-width: calc(100% / 3);
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.doc-info {
    display: inline-block;
    position: relative;
    left: -20%;
    color: #a1a1a1;
}

/* Icon màu theo loại file */
/*.doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
}*/
.doc-blue {
    background: #2b579a;
}

/* DOC, DOCX */
.doc-red {
    background: #d9534f;
}

/* PDF */
.doc-green {
    background: #28a745;
}

/* XLS, XLSX */
.doc-orange {
    background: #d95300;
}

/* PPT, PPTX */

/* Content */
.doc-content {
    flex: 1;
}

.doc-title {
    font-size: 18px;
    color: var(--color-deep-blue);
    font-weight: 500;
    margin: 0 0 4px;
    padding: 10px;
}

.doc-grid .doc-card .doc-title {
    display: -webkit-box;
    /* Uses the flexible box model */
    -webkit-line-clamp: 3;
    /* Limits the text to 3 lines */
    -webkit-box-orient: vertical;
    /* Stacks the box's children vertically */
    overflow: hidden;
    /* Hides the content after the line clamp limit */
    text-overflow: ellipsis;
    /* Adds the ellipsis */
}

.doc-sub {
    font-size: 13px;
    color: #777;
    margin: 0 0 12px;
    line-height: 1.4;
    padding: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    min-height: 3lh;
}

/* File type + size + download */
.doc-meta {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doc-meta .download {
    color: #d9534f;
    font-size: 16px;
    text-decoration: none;
    padding: 5px;
}

.doc-meta .download:hover {
    color: #b00000;
}

.doc-icon,
.doc-icon-excel,
.doc-icon-pdf,
.doc-icon-pptx {
    width: 60px;
    height: 44px;
    background: none;
    position: relative;
    overflow: hidden;
}

.doc-icon .fa-folder-o:before {
    position: absolute;
    color: #fff;
    padding: 13px;
}

.doc-icon::before {
    content: "";
    position: absolute;
    bottom: -55%;
    left: -22%;
    width: 60px;
    height: 60px;
    background: #2b579a;
    border-radius: 100%;
    clip-path: polygon(0 0, 100% 0, -8 100%);
    transform: rotate(90deg);
}

.doc-icon-pdf::before {
    content: "";
    position: absolute;
    bottom: -55%;
    left: -22%;
    width: 60px;
    height: 60px;
    background: #fa2626;
    border-radius: 100%;
    clip-path: polygon(0 0, 100% 0, -8 100%);
    transform: rotate(90deg);
}

.doc-icon-pptx::before {
    content: "";
    position: absolute;
    bottom: -55%;
    left: -22%;
    width: 60px;
    height: 60px;
    background: #d14625;
    border-radius: 100%;
    clip-path: polygon(0 0, 100% 0, -8 100%);
    transform: rotate(90deg);
}

.doc-icon-excel::before {
    content: "";
    position: absolute;
    bottom: -55%;
    left: -22%;
    width: 60px;
    height: 60px;
    background: #207345;
    border-radius: 100%;
    clip-path: polygon(0 0, 100% 0, -8 100%);
    transform: rotate(90deg);
}

.icon-folder {
    width: 18px;
    height: 14px;
    position: absolute;
    background-image: url(/images/icon/icon-folder.png);
    top: 22px;
    left: 14px;
    background-repeat: no-repeat;
}

.doc-meta .icon-folder::before {}

/*================================== MENU MOBILE ======================================*/
.menu-mo {
    color: #0f487e;
    display: none;
    font-size: 15px;
    text-transform: uppercase;
    width: 85px;
    align-items: center;
}

.menu-mo svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
    margin-right: 10px;
}

.menu-mo:hover,
.menu-mo:visited,
.menu-mo:focus {
    color: #fff;
    text-decoration: none;
}

.mobile-panel {
    background-color: #fff;
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 240px;
    opacity: 0;
    filter: alpha(opacity=0);
}

.mobile-panel .menu-in {
    overflow: hidden;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.mask-panel,
#mask-left,
#mask-right {
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
    opacity: 0;
    filter: alpha(opacity=0);
    height: 100%;
    width: 100%;
    z-index: 9998;
}

.mobile-panel p {
    padding: 0;
    margin: 0;
}

.close-menu {
    background-color: #009ed6;
    top: 0;
    position: absolute;
    overflow: hidden;
    height: 30px;
    width: 30px;
    z-index: 10;
}

.close-menu a {
    color: #fff;
    display: block;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    height: 100%;
    width: 100%;
}

.close-menu a:hover {
    text-decoration: none;
}

#menumobile .close-menu {
    right: -30px;
}

#mobileRight .close-menu {
    left: -30px;
}

.mobile-panel .menu-mobile {
    position: relative;
    padding: 15px;
    z-index: 1;
}

.overflow {
    overflow: hidden;
}

.panel-reveal {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}

.panel-reveal .mobile-panel {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    z-index: -1;
}

.panel-reveal .mobilep-left {
    -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.15) inset;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.15) inset;
}

.panel-reveal .mobilep-right {
    -webkit-box-shadow: 5px 0 5px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 5px 0 5px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.15) inset;
}

.panel-reveal .open-in {
    z-index: 1;
}

.panel-reveal .mobilep-right {
    left: auto;
    right: 0;
}

.panel-reveal #wrapper-in {
    -ms-transition: transform 300ms ease 0s;
    -webkit-transition: transform 300ms ease 0s;
    transition: transform 300ms ease 0s;
}

.mobile-active-left #wrapper-in {
    -ms-transform: translate3d(240px, 0px, 0px);
    -webkit-transform: translate3d(240px, 0px, 0px);
    transform: translate3d(240px, 0px, 0px);
}

.mobile-active-left .mask-panel {
    left: 240px;
}

.mobile-active-right #wrapper-in {
    -ms-transform: translate3d(-240px, 0px, 0px);
    -webkit-transform: translate3d(-240px, 0px, 0px);
    transform: translate3d(-240px, 0px, 0px);
}

.mobile-active-right .mask-panel {
    left: auto;
    right: 240px;
}

.menu-mobile .title {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 24px;
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-nav>li {
    padding-top: 1px;
}

.menu-nav>li>a {
    background-color: #0f487e;
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    padding: 7px 25px 7px 10px;
    /*text-transform: uppercase;*/
    position: relative;
}

.menu-nav .iconar {
    display: block;
    font-size: 22px;
    text-align: right;
    height: 30px;
    line-height: 30px;
    right: 5px;
    top: 50%;
    margin-top: -15px;
    position: absolute;
    width: 30px;
    opacity: 0.8;
}

.menu-nav a:hover {
    text-decoration: none;
}

.menu-nav>li>a:hover,
.menu-nav>li:hover>a,
.menu-nav>li.active>a {
    background-color: #de0004;
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-nav>li>ul {
    background-color: #fff;
}

.menu-nav ul li {
    padding-top: 1px;
}

.menu-nav ul a {
    background-color: #636363;
    color: #fff;
    display: block;
    font-size: 15px;
    line-height: 22px;
    padding: 5px 10px;
    position: relative;
    text-transform: capitalize;
}

.menu-nav ul a {
    padding-left: 20px;
}

.menu-nav ul ul a {
    font-size: 14px;
    line-height: 20px;
    padding-left: 30px;
}

.menu-nav ul ul ul a {}

.menu-nav ul ul ul a .iconl {
    display: none;
}

.menu-nav ul .iconl {
    display: block;
    height: 20px;
    line-height: 18px;
    left: 10px;
    top: 6px;
    position: absolute;
    width: 14px;
}

.menu-nav ul ul .iconl {
    left: 20px;
}

.menu-nav ul li>a:hover,
.menu-nav ul li:hover>a,
.menu-nav ul li.active>a {
    color: #fef738;
}

.menu-mobile .title {
    font-size: 16px;
}

#menuProduct>li>a {
    font-size: 15px;
}

#menuProduct ul li a {
    padding-left: 20px;
}

.menu-mobile .logo {
    background-color: #fff;
    float: none;
    padding: 0;
    width: 210px;
    padding-left: 0;
}

/*===========================  Responsive  ===============================*/
@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1279px) {
    .top-head-left {
        width: 450px;
    }

    nav#main-menu .main-nav ul>li:not(:first-child) {
        padding: 0 5px;
    }

    nav#main-menu .main-nav ul>li:first-child {
        padding-right: 5px;
    }

    .wrap-w,
    .main-category {
        margin: 0 -5px;
    }

    .main-category .item,
    .w-pad,
    .partner-cate .item {
        padding: 0 5px;
    }

    .section-highlight .highlight .news-wrap .item {
        margin-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .menu-mo {
        display: flex;
    }

    #main-menu>.container>.flex {
        display: none;
    }

    .top-head>.container>.flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    header#main-header .top-head .top-head-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    header#main-header .top-head .top-head-right .info {
        margin: 5px 0 15px;
    }

    header#main-header .top-head .top-head-right .search {
        width: 100%;
    }

    header#main-header .top-head .top-head-right .search img {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    header#main-header .top-head .top-head-right .search form {
        position: static;
        display: block;
    }

    header#main-header .top-head .top-head-right .search form>input[type="text"] {
        padding-right: 40px;
        width: 100%;
    }

    .home-banner>.container,
    .sub-banner>.container {
        margin-bottom: 0 !important;
        padding: 0;
    }

    /* Mobile: ẩn img, hiển thị background với zoom effect */
    .home-banner-img {
        display: none;
    }

    .home-banner-bg {
        display: block;
        width: 100%;
        height: 170px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 0;
    }

    .home-banner>.container {
        position: relative;
        z-index: 1;
        margin-top: 0;
    }

    .main-category {
        position: relative;
        z-index: 1;
        margin-top: 0;
    }

    .wrap-w,
    .main-category {
        margin: 0 calc(var(--bs-gutter-x) * -.5);
    }

    .main-category .item,
    .w-pad,
    .partner-cate .item {
        padding: 0 calc(var(--bs-gutter-x) * .5);
    }

    .main-category,
    .about-category {
        position: static;
        width: auto;
    }

    .about-category {
        margin-bottom: var(--bs-gutter-x);
    }

    .about-category .item {
        width: 50% !important;
        box-shadow: inset 0 -2px 0px 0px rgba(0, 0, 0, 0.045);
    }

    .main-category .item {
        width: 50%;
        margin-bottom: 15px;
    }

    .main-category .item .wrap-item {
        padding: 20px 15px;
    }

    .main-category .item .wrap-item h2 {
        font-size: 16px;
        padding: 10px 0;
    }

    .main-category .item .wrap-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .main-category .item .wrap-item img {
        max-width: 50px;
        height: auto;
    }

    .home-news .flex,
    .about-wrap .flex,
    .main-about .flex,
    .highlight.flex,
    .main-news-detail .flex,
    #main-footer>.container .flex {
        flex-wrap: wrap;
    }

    .home-news .w-6\/12,
    .main-about .w-6\/12,
    .form-contact .form-group,
    .about-wrap .w-6\/12,
    .main-about .w-3\/12,
    .main-about .w-9\/12,
    .highlight .w-4\/12,
    .highlight .w-8\/12,
    .main-news-detail .w-3\/12,
    .main-news-detail .w-9\/12,
    #main-footer>.container>.flex .w-6\/12,
    #main-footer>.container>.flex .w-4\/12,
    #main-footer>.container>.flex .w-8\/12 {
        width: 100%;
    }

    .news-wrap .main-item .content,
    .news-wrap>.content,
    .document-wrap .main-item .content {
        padding: 5px 0 10px;
    }

    .about-wrap .w-6\/12:nth-child(2) {
        order: -1;
        text-align: center;
        margin-bottom: var(--bs-gutter-x);
    }

    .partner-cate .item {
        width: 33.3333%;
        margin-bottom: var(--bs-gutter-x);
    }

    #main-footer>.container>.flex .w-4\/12 {
        margin-bottom: var(--bs-gutter-x);
    }

    .about-category .item.active,
    .about-category .item:hover {
        height: 135px;
    }

    .about-aside {
        margin-bottom: var(--bs-gutter-x);
    }

    .main-highlight {
        margin-bottom: var(--bs-gutter-x);
    }

    .section-highlight .highlight .news-wrap .item {
        margin-bottom: var(--bs-gutter-x);
    }

    .detail-aside {
        margin-top: var(--bs-gutter-x);
    }

    .search_box .search_button button {
        left: auto;
        right: 0;
    }

    .search_box .search_field .input {
        padding-right: 60px;
    }

    .document-list .document-wrap {
        width: 100% !important;
    }

    .doc-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
    .section-activity .flex .w-4\/12 {
        width: 100%;
    }

    .document-list .document-wrap .main-item .img {
        height: 180px;
    }

    .team-grid {
        display: inline-block;

    }
    .team-header .team-icon{
        float:none;
    }
    .team-header h2 {
        text-align: center;
        font-size: 17px;
        margin-left:0px;
    }
}

@media screen and (max-width: 640px) {
    .main-category .item {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-category .item .wrap-item {
        padding: 15px 12px;
    }

    .main-category .item .wrap-item h2 {
        font-size: 15px;
        padding: 8px 0;
    }

    .main-category .item .wrap-item p {
        font-size: 13px;
        line-height: 1.3;
    }

    .main-category .item .wrap-item img {
        max-width: 45px;
    }
}

@media screen and (max-width: 540px) {

    .search_box .dropdown,
    .search_box .search_field {
        width: 100%;
    }

    .search_box .dropdown {
        border-right: 0;
        border-bottom: 2px solid #dde2f1;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .search_box .search_field .input {
        height: 45px;
    }

    .search_box .search_button button {
        top: auto;
        right: 10px;
        bottom: 10px;
        width: 45px;
        height: 45px;
    }

    .search_box {
        height: auto;
    }

    .about-showcase .item {
        width: 100%;
    }

    .partner-cate .item {
        width: 50%;
    }

    .main-highlight .content h4 {
        font-size: 18px;
    }

    .document-wrap .main-item h3,
    .news-wrap .main-item h3 {
        font-size: 18px;
    }

    .detail-title h1 {
        font-size: 24px;
    }
}


@media screen and (max-width: 480px) {
    .document-list .document-wrap .main-item .img {
        height: 160px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member img {
        width: 100%;
        height: auto;
    }
}

/* Curriculum Structure Table Styles */
#curriculumTable {
    width: auto;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
}

.curriculum-table-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

#curriculumTable thead {
    background-color: #e0f2f7;
}

#curriculumTable th {
    padding: 12px;
    text-align: center;
    color: #1e3a5f;
    font-weight: bold;
    border: 1px solid #d0d0d0;
}

#curriculumTable td {
    padding: 12px;
    border: 1px solid #d0d0d0;
    color: #333;
}

#curriculumTable tbody tr {
    background-color: white;
}

#curriculumTable tbody tr.section-header {
    background-color: white;
}

#curriculumTable tbody tr.section-header td {
    font-weight: bold;
    color: #1e3a5f;
    padding: 12px;
}

#curriculumTable .content {
    text-align: left;
}

#curriculumTable .count {
    text-align: center;
}

/* Units Using Results Table Styles */
#unitsTable {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

#unitsTable thead {
    background-color: #e0f2f7;
}

#unitsTable th {
    padding: 12px;
    text-align: center;
    color: #1e3a5f;
    font-weight: bold;
    border: 1px solid #d0d0d0;
}

#unitsTable td {
    padding: 12px;
    border: 1px solid #d0d0d0;
    color: #333;
}

#unitsTable tbody tr {
    background-color: white;
}

#unitsTable tbody tr.section-header {
    background-color: #f2f2f2;
}

#unitsTable tbody tr.section-header td {
    font-weight: bold;
    color: #1e3a5f;
    padding: 12px;
    text-align: left;
}

#unitsTable .stt {
    text-align: left;
}

#unitsTable .unit {
    text-align: left;
}

#unitsTable .total {
    text-align: center;
    font-weight: bold;
}

/* Main Category Container Desktop Styles */
@media (min-width: 992px) {
    .main-category-container {
        margin-top: -30px;
        z-index: 111;
    }
}

@media screen and (max-width: 768px) {
    .main-category-container {
        margin-top: 20px;
    }
}

/* Home Banner Navigation */
.home-banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.home-banner-carousel .owl-nav .owl-prev,
.home-banner-carousel .owl-nav .owl-next {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.home-banner-carousel .owl-nav .owl-prev:hover,
.home-banner-carousel .owl-nav .owl-next:hover {
    background: rgb(0 86 179) !important;
    border-color: #0056b3 !important;
}

@media (max-width: 768px) {
    .home-banner-carousel .owl-nav {
        display: none !important;
        /* Hide arrows on mobile for better UX */
    }
}