/*--------------------------------------------------------------  
# Color Variables  
--------------------------------------------------------------*/
:root {
    --primary-color: #ed1c24;
    --secondary-color: #ee8b7a;
    --background-color: #fff;
    --text-color: #212529;
    --hover-color: #ec7f6d;
    --selection-color: #0083cb;
    --selection-text-color: #fff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

span {
    font-family: "Roboto", sans-serif;
}

a {
    color: var(--bs-body-color);
    text-decoration: none;
}
    a:hover {
        color: var(--bs-body-color);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
}

::selection {
    color: #fff;
    background: #0083cb;
}

::-moz-selection {
    color: #fff;
    background: #0083cb;
}

.rounded-10px{
    border-radius: 10px;
}
.rounded-20px {
    border-radius: 20px;
}

.btn-danger {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
    .btn-danger:hover {
        background-color: #d81a21;
        border-color: #d81a21;
    }
.control-label{
    font-weight: 500;
    margin-bottom: .5rem;
}
.form-control {
    padding: .475rem .75rem;
}
.form-control:focus {
    box-shadow: none;
}

.alert-danger {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.img-fluid{
    width: 100%;
}
/*--------------------------------------------------------------
# zalo chat widget button
--------------------------------------------------------------*/
.zalo-chat-widget {
    right: 30px !important;
    bottom: 100px !important;
}

    .zalo-chat-widget iframe {
        max-height: 85vh !important;
    }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 35px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #ee8b7a;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #ed1c24;
    padding: 3px 0;
}

    #topbar .social-links .create_bill_of_lading {
        margin-right: 30px;
    }

        #topbar .social-links .create_bill_of_lading a {
            color: #ffff;
            line-height: 0;
            transition: 0.3s;
            min-width: 105px;
        }

    #topbar .social-links .dropdown.lag > ul {
        top: calc(100% + 30px);
        transition: 0.3s;
        min-width: auto;
        right: 0;
    }

        #topbar .social-links .dropdown.lag > ul .dropdown-item {
            padding: 8px 14px;
            font-size: 13px;
        }

    #topbar .social-links .dropdown.lag:hover > ul {
        display: block;
        top: calc(100%);
        width: 142px;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 55px;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;;
        list-style: none;
        align-items: center;
        position: relative;
    }

    .navbar li {
        position: unset;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 20px;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #212529;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: var(--primary-color);
        }

    .navbar .getstarted, .navbar .getstarted:focus {
        background: var(--primary-color);
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 4px;
        color: #fff;
    }

        .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
            color: #fff;
            background: #ec7f6d;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: calc(100% + 30px);
        margin: 0;
        padding: 20px;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        display: flex; /* Hiển thị các mục theo hàng ngang */
        flex-direction: row; /* Đảm bảo các mục nằm ngang */
        width: 1300px;
    }

        .navbar .dropdown ul li {
            padding-left: 10px;
            padding-right: 10px;
        }

            .navbar .dropdown ul li a {
                padding: 10px 20px;
                text-transform: none;
                color: #545454;
            }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover {
            color: var(--primary-color);
        }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

    .navbar .dropdown ul .service_group {
        flex: 1; /* Giúp tất cả các li có kích thước bằng nhau */
        min-width: 320px; /* Đặt giới hạn tối thiểu để không bị quá nhỏ */
        padding: 10px 25px;
    }

        .navbar .dropdown ul .service_group a {
            padding: 10px;
            border-bottom: 1px solid #d7d7d7;
        }
        .navbar .dropdown ul .service_group a:last-child {
            border-bottom: 0;
        }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #545454;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(59, 59, 59, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 0;
        right: 80px;
        bottom: 0;
        left: 0;
        padding: 30px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a, .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #545454;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: var(--primary-color);
        }

    .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        width: auto;
        position: static;
        display: none;
        margin: 10px 6px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover {
                color: var(--primary-color);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 0;
}

    #hero .carousel-item {
        width: 100%;
        height: 70vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-position: center center;
    }

    #hero .carousel-container {
        position: absolute;
        z-index: 2;
        top: 0px;
        left:0;
        right: 0;
        bottom: 0;
    }

.carousel-container .tablist-tracking {
    top: 0px;
    left: 100px;
    padding: 20px;
    background: rgb(255 255 255);
    position: absolute;
}
    .carousel-container .tablist-tracking .nav-tabs .nav-link {
        font-weight: 700;
        color: var(--bs-body-color);
        border-radius: 0;
        border: 0;
    }
        .carousel-container .tablist-tracking .nav-tabs .nav-link.active{
            border-bottom: 3px solid var(--primary-color);
        }

        #hero .carousel-inner .carousel-item {
            transition-property: opacity;
            background-position: center;
        }

    #hero .carousel-inner .carousel-item,
    #hero .carousel-inner .active.carousel-item-start,
    #hero .carousel-inner .active.carousel-item-end {
        opacity: 0;
    }

    #hero .carousel-inner .active,
    #hero .carousel-inner .carousel-item-next.carousel-item-start,
    #hero .carousel-inner .carousel-item-prev.carousel-item-end {
        opacity: 1;
        transition: 0.5s;
    }

        #hero .carousel-inner .carousel-item-next,
        #hero .carousel-inner .carousel-item-prev,
        #hero .carousel-inner .active.carousel-item-start,
        #hero .carousel-inner .active.carousel-item-end {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 10%;
    }

    #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
        background: none;
        font-size: 48px;
        line-height: 1;
        width: auto;
        height: auto;
        color: #545454;
    }

    #hero .carousel-indicators li {
        cursor: pointer;
        background: var(--primary-color);
        overflow: hidden;
        border: 0;
        width: 12px;
        height: 12px;
        border-radius: 50px;
        margin-bottom: 50px;
        opacity: 0.2;
    }

        #hero .carousel-indicators li.active {
            opacity: 1;
        }

    #hero .btn-get-started {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 32px;
        border-radius: 50px;
        transition: 0.5s;
        line-height: 1;
        margin: 10px;
        color: #fff;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        border: 2px solid var(--primary-color);
        background: var(--primary-color);
    }

        #hero .btn-get-started:hover {
            background: transparent;
            color: var(--primary-color);
            text-decoration: none;
        }

.o_tra_cuu_van_don {
    background-color: #fff;
    padding: 30px 0 10px;
    width: 345px;
    border-radius: 4px;
}

    .o_tra_cuu_van_don h5 {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: #000;
    }

    @media(max-width: 768px){
        .carousel-container .tablist-tracking{
            position: relative;
            left: 0;
        }
    }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
     padding: 20px 0 40px 0; 
}

.section-bg {
    background-color: white;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 600;
        color: var(--primary-color);
        padding-bottom: 20px;
        position: relative;
        font-family: "Roboto", sans-serif;
        text-transform: uppercase;
    }

    .section-title .no-border::after {
        content: none;
    }

    .section-title .border-right-md::after {
        content: "";
        position: absolute;
        display: block;
        width: 2px;
        height: 100%;
        background: var(--primary-color);
        top: 0;
        right: 26px;
    }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# download app
--------------------------------------------------------------*/
.taiungdung {
    position: relative;
    display: flex;
    align-items: center;
}
    .taiungdung .content {
        position: absolute;
        left: 10%;
    }


@media(max-width: 992px) {
    .taiungdung .content .h4 {
        font-size: 20px;
        margin-bottom: 1rem !important;
    }
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services .contents ul {
    padding: 0;
    margin: 0;
}
    .services .contents ul li {
        padding: 10px 0 10px 35px;
        position: relative;
        list-style-type: none;
        cursor:pointer;
        transition: all 0.4s;
    }
    .services .contents ul li {
        position: relative;
        padding-left: 34px; /* để chừa chỗ cho hình */
    }
        .services .contents ul li::before {
            content: "";
            display: inline-block;
            width: 26px;
            height: 26px;
            background-image: url('../img/2025/icondiabay.png'); /* đường dẫn ảnh */
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            top: 8px;
            left: 0;
        }
    .services .contents ul.hover li:hover {
        font-weight: bold;
    }
    .services .contents ul.hover li:hover a {
        color: var(--primary-color);
    }

    .services .contents .box {
        height: 100%;
        padding: 30px 25px;
        border-radius: 20px;
        background-color: #eeeeee;
        transition: transform 0.3s ease-in-out;
        position: relative;
    }  

.services .contents .box:hover {  
   transform: scale(1.05);  
}

        .services .contents .box .icon {
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 22px;
            padding: 3px 18px;
            color: #fff;
            border-radius: 30px;
            background-color: var(--primary-color);
        }

.delivery-services .img-fluid {
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.logistics-services .contents ul li{
    padding: 0;
}
.logistics-services .contents ul li::before {
    content: unset;
}

.international-services .box .content{
    min-height: 112px;
}

.banner-services .section-bg {
    height: 300px;
    background-image: url(/lib/assets/img/2025/banner_chuyen_phat_nhanh.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

@media(max-width: 600px) {
    .delivery-services .img-fluid {
        height: 300px;
    }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.swiper-pagination {
    margin-top: 35px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.clients .box-tt iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}
@media(max-width: 768px){
    .clients .box-tt iframe {
        height: 300px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    border-top: 1px solid #ddd;
    font-size: 14px;
}

@media(min-width: 300px) and (max-width: 600px) {

    #footer .footer-newsletter {
        padding: 0 0 !important;
    }
}

#footer .footer-newsletter {
    padding: 190px 0;
}

    #footer .footer-newsletter h4 {
        font-size: 24px;
        margin: 0 0 20px 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
    }

    #footer .footer-newsletter form {
        margin-top: 30px;
        background: #fff;
        padding: 6px 10px;
        position: relative;
        border-radius: 50px;
    }

        #footer .footer-newsletter form input[type=email] {
            border: 0;
            padding: 8px;
            width: calc(100% - 140px);
        }

        #footer .footer-newsletter form input[type=submit] {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 30px;
            margin: 3px;
            background: var(--primary-color);
            color: #fff;
            transition: 0.3s;
            border-radius: 50px;
        }

            #footer .footer-newsletter form input[type=submit]:hover {
                background: #e6573f;
            }

#footer .footer-top {
    background: #fff;
    padding: 60px 0 20px 0;
}

    #footer .footer-top .footer-info {
        margin-bottom: 40px;
    }

        #footer .footer-top .footer-info h3 {
            font-size: 18px;
            margin: 0 0 20px 0;
            padding: 2px 0 2px 0;
            line-height: 1;
            font-weight: 700;
        }

        #footer .footer-top .footer-info p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 0;
            font-family: "Roboto", sans-serif;
            color: #444444;
        }

    #footer .footer-top .social-links a {
        font-size: 18px;
        display: inline-block;
        background: #545454;
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .footer-top .social-links a:hover {
            background: var(--primary-color);
            color: #fff;
            text-decoration: none;
        }

    #footer .footer-top h4 {
        font-size: 16px;
        /* font-weight: 600; */
        color: #000;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 12px;
    }

    #footer .footer-top .footer-links {
        margin-bottom: 30px;
    }

        #footer .footer-top .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            #footer .footer-top .footer-links ul i {
                padding-right: 9px;
                color: var(--primary-color);
                font-size: 18px;
                line-height: 1;
            }

            #footer .footer-top .footer-links ul li {
                padding: 10px 0;
                display: flex;
            }

                #footer .footer-top .footer-links ul li:first-child {
                    padding-top: 0;
                }

            #footer .footer-top .footer-links ul a {
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                #footer .footer-top .footer-links ul a:hover {
                    color: var(--primary-color);
                }

        #footer .footer-top .footer-links .social-icons .icon {
            font-size: 30px;
            margin: 0 10px;
        }

            #footer .footer-top .footer-links .social-icons .icon.facebook {
                color: #3b5998; /* Facebook blue */
            }

            #footer .footer-top .footer-links .social-icons .icon.tiktok {
                color: #000000; /* TikTok black */
            }

            #footer .footer-top .footer-links .social-icons .icon.linkedin {
                color: #0077b5; /* LinkedIn blue */
            }

            #footer .footer-top .footer-links .social-icons .icon.youtube {
                color: #ff0000; /* YouTube red */
            }
          
        #footer .copyright {
            text-align: center;
            padding-top: 30px;
        }

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/*news-section*/
.newsCarousel .carousel-item {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.news_section .item .thumb {
    height: 222px;
    background-color: #5e3030;
    overflow: hidden;
    position: relative;
    text-align: center;
}

        .news_section .item .thumb * {
            transition: all 0.3s linear 0s;
        }

        .news_section .item .thumb .img-fluid {
            height: auto;
            width: 100%;
            object-position: center;
            object-fit: cover;
        }

    .news_section .item .down-content {
        height: calc(100% - 260px);
        background-color: #fff;
        padding: 24px;
        position: relative;
    }

    .news_section .item .content-title {
        color: #444444;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 9em;
        line-height: 1.5em;
    }

    .news_section .item .content-description {
        color: #444444;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 9em;
        line-height: 1.5em;
    }

    .news_section .item .content-ft {
        color: #6d6f76;
        font-size: 14px;
        line-height: normal;
        align-items: center;
    }

@media (max-width: 768px) {
    .newsCarousel .carousel-item {
        height: 200px;
    }
}
/*news-section

/*carrers*/
.message-box {
    padding: 20px 0;
    background-image: url('/lib/assets/img/2025/banner_carrers.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    .message-box .button {
        padding-top: 30px;
    }

@media (max-width: 768px) {
    .message-box .button {
        padding-top: 0;
    }
}
/*carrers*/

.dxeBase_Office365, .dxeButtonEdit_Office365, .dxeTextBox_Office365 {
    font-size: 16px !important;
}
.dxeEditArea_Office365 {
    height: auto !important;
}

.bg-danger {
    background-color: var(--primary-color) !important;
}

.pagination > .active > a, .pagination > .active > span,
.pagination > .active > a:hover, .pagination > .active > span:hover,
.pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.box-hover-scale {
    transition: transform 0.3s ease-in-out;
}
    .box-hover-scale:hover {
        transform: scale(1.05);
    }

.box-hover-scale img{
    height: 277px;
    object-fit: cover;
    object-position: center;
}

.bang_gia_cuoc_chuyen_phat_nhanh .accordion-button {
    color: var(--primary-color);
    background-color: #fff;
}

    .bang_gia_cuoc_chuyen_phat_nhanh .accordion-button:focus {
        box-shadow: none;
        border: 0;
    }

    .bang_gia_cuoc_chuyen_phat_nhanh .accordion-button[aria-expanded="true"] {
        background-color: rgba(0,0,0,.03);
        border-top: 1px solid var(--primary-color);
    }


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0);
}
.accordion-button[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}
.accordion-item{
    border-left: 0;
    border-right: 0;
}

.about-us p, .bang_gia_cuoc_chuyen_phat_nhanh p{
    text-align: justify;
}

@media (max-width: 768px) {

.navbar-mobile .service_menu a {
    padding: 10px 0px;
}

    .a_dich_vu {
        padding: 0px 20px !important;
    }

    /* Dropdown dịch vụ */
    .navbar-mobile .service_menu .service_dropdown {
        width: 100% !important; /* Chiếm toàn bộ chiều rộng cha */
        max-width: 100%; /* Không vượt quá cha */
        overflow-x: hidden; /* Không cho cuộn ngang */
        white-space: normal; /* Cho phép xuống dòng */
        word-break: break-word; /* Bẻ từ nếu dài */
        box-sizing: border-box; /* Padding không đẩy tràn */
    }

        /* Các thẻ <a> bên trong dropdown dịch vụ */
        .navbar-mobile .service_menu .service_dropdown a {
            display: block;
            width: 90%;
            font-size: 15px !important;
            line-height: 1.5;
            white-space: normal;
            overflow: hidden;
            text-overflow: ellipsis; /* Tuỳ chọn: hiện "..." nếu chữ quá dài */
        }

    .navbar-mobile .service_dropdown strong {
        display: block !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        width: 94% !important;
        margin-bottom: 0px !important;
    }

    /* Nếu <strong> nằm trong h5, thêm luôn cho h5 */
    .navbar-mobile .service_dropdown h5 {
        display: block !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }
}

.fa-plane-departure::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('../img/2025/screenshot_1750928513.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    vertical-align: middle;
}