.fixed-top-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

/* ------------------------------------------- */
/* CSS Tùy chỉnh cho Header */

/* Đặt Header cố định ở trên cùng (fixed) */
.header-top .container-fluid {
    position: relative;
    z-index: 1;
}
.header-top {
    background-color: #1a6fe2;
    color: #fff;
    padding: 8px 152px 8px 0;
    width: 100%;
    z-index: 1030;
    /* Đảm bảo nó nằm trên menu */
    min-height: 80px;
    position: relative;
}
.header-top::before {
    content: "";
    background-image: url("/o/shared-assets/images/header-laco.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 160px;
    z-index: 0;
}

.header-logo-slogan {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.header-logo-slogan img {
    width: 70px;
    height: auto;
    margin-right: 15px;
}

.header-text h1 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.header-text p {
    font-size: 17.5px;
    font-weight: 100;
    margin-bottom: 0;
    opacity: 0.9;
    letter-spacing: 1px;
}
/* --- Responsive CSS --- */

/* Máy tính bảng và các thiết bị nhỏ hơn */
@media (max-width: 1150px) {
    .header-top {
        padding: 8px 20px 8px 0;
    }

    .header-text h1 {
        font-size: 24px;
    }

    .header-text p {
        font-size: 14px;
    }
}
@media (max-width: 950px) {
    .header-logo-slogan {
        padding-left: 0;
    }
    .header-logo-slogan img {
        width: 52px;
        margin-right: 5px;
    }

    .header-text h1 {
        font-size: 20px;
    }

    .header-text p {
        font-size: 13px;
    }
}

/* Điện thoại di động */
@media (max-width: 991.98px) {
    body {
        padding-top: 63px;
    }

    .fixed-top-container {
        max-width: 100vw;
    }
    .header-top::before {
        display: none;
    }
    .header-top {
        min-height: unset;
        padding: 2px 0px;
    }
    .main-menu-nav {
        border: none;
    }
    .header-logo-slogan img {
        width: 42px;
        margin-right: 5px;
    }
    .header-text h1 {
        font-size: 16px;
    }

    .header-text p {
        font-size: 12px;
    }

    /* Ẩn banner trên màn hình rất nhỏ để tiết kiệm không gian */
    .col-banner {
        display: none;
    }
}

.header-banner {
    height: 100%;
    /* Vui lòng thay 'duong-dan-den-bg-banner.png' bằng đường dẫn thực tế */
    background-image: url("/o/shared-assets/images/bg-banner.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    width: auto;
    border-radius: 8px;
}

.header-banner-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    color: #ffeb57;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.25);
}
.col-banner {
    padding: 0 !important;
}
.header-banner-text span {
    display: block;
    text-align: center;
}

.header-banner-text small {
    font-weight: 500;
}
