@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-blue: #0d47a1;
    --primary-yellow: #E78903;
    --accent-green: #E78903;
    --dark-blue: #002171;
    --light-bg: #f8f9fa;
}
body
{
    font-family: 'Mulish',sans-serif;
    font-size: 16px;
    overflow-x:hidden;
}
ul
{

}
a
{
    text-decoration: none;
}
a:hover, a:focus 
{
    text-decoration: none;
    outline: none;
}
img {
    max-width: 100%;
}


/* --- TOP BAR --- */
.top-bar {
    background-color: #252525;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 10px 0;
/*    border-bottom: 3px solid var(--primary-yellow);*/
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.35s ease;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

/* --- MAIN HEADER --- */
.main-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}


/* Khối Tên Công Ty Kế Bên Logo */
.company-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-sub-title {
/*    font-size: 0.75rem;*/
    font-weight: 700;
    color: #666666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.company-main-title {
    font-weight: 800;
    font-size: 2em;
    color: var(--primary-blue);
    line-height: 1.25;
    text-transform: uppercase;
    margin-top: 2px;
}

.company-main-title span {
    color: var(--accent-green);
}



.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    border: 2px solid var(--primary-yellow);
}

.logo-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary-blue);
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--accent-green);
}
/* Logo chỉ chứa Biểu tượng */
.logo-icon-only {
/*    width: 120px;
    height: 120px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.75rem;
    border: 2px solid var(--primary-yellow);
    text-decoration: none;
    flex-shrink: 0;
    padding: 10px;*/
}

/* Khối Tên Công Ty Căn Giữa */
.company-center-info {
    text-align: center;
        width: 45%;
}



/* Hotline Box */
.hotline-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f4f8f4;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgb(237 237 237);
}

.hotline-icon {
    width: 38px;
    height: 38px;
    background-color: var(--accent-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: pulse-green 2s infinite;
}

.hotline-info span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.hotline-info a {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
}

/* --- NAVIGATION BAR --- */
.main-nav {
    background-color: var(--primary-blue);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.92rem;
    padding: 14px 18px !important;
    transition: all 0.35s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-yellow) !important;
/*    background-color: var(--dark-blue);*/
}

/* Style cho Dropdown Submenu */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--primary-yellow);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 0;
    margin-top: 0;
}

.dropdown-item {
    font-weight: 500;
    padding: 5px 20px;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.25s ease;
        font-size: 16px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
/*    background-color: #f8f9fa;*/
color: #0d47a1;
padding-left: 25px;
}
.dropdown-item.active, .dropdown-item:active
{
    color: #fff !important;
}

/* --- SUBMENU CẤP 3 --- */
/* Đặt vị trí tương đối cho thẻ li chứa submenu */
.dropdown-submenu {
    position: relative;
}

/* Ẩn submenu cấp 3 mặc định và định vị nó sang bên phải */
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -3px; /* Căn chỉnh viền trên trùng khớp */
    display: none;
}

/* Hiển thị menu cấp 3 khi hover vào li chứa nó */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Mũi tên chỉ sang phải cho item có menu con */
.dropdown-submenu > .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

/* Điều chỉnh lại hiệu ứng padding khi hover của cấp 2 có con */
.dropdown-submenu:hover > .dropdown-item {
    color: #0d47a1;
    background-color: #f8f9fa;
}


.badge-green {
    background-color: var(--accent-green);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.main-nav.navbar
{
    padding: 0;
}

/* Animation cho Pulse Hotline */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgb(231 137 3);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

/* Responsive adjust */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 10px 0;
    }
    .dropdown-menu {
        background-color: var(--dark-blue);
        border-top: none;
    }
    .dropdown-item {
        color: #ffffff;
    }
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--primary-yellow);
    }
}
/* Responsive Mobile */
@media (max-width: 991.98px) {
    .company-main-title {
        font-size: 0.95rem;
    }
    .company-sub-title {
        font-size: 0.65rem;
    }
    .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 10px 0;
    }
    .dropdown-menu {
        background-color: var(--dark-blue);
        border-top: none;
    }
    .dropdown-item {
        color: #ffffff;
    }
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--primary-yellow);
    }
}
@media (max-width: 575.98px) {
    .main-header .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .logo-brand {
        justify-content: center;
    }
}

.navbar-expand-lg .navbar-nav
{
    width: 100%;
    justify-content: center;
}


/* Hero Slider Layout */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: auto; /* Bỏ 900px, chuyển thành auto */
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
}


/* Loại bỏ position absolute để hình tự đẩy chiều cao slider theo khung ảnh */
.slide-img-wrapper {
    width: 100%;
    position: relative; 
    display: block;
}

.slide-img-wrapper img {
    width: 100%;
    height: auto; /* Chiều cao nhảy theo đúng tỷ lệ ảnh gốc */
    display: block;
    object-fit: contain; /* Hoặc bỏ dòng này đi */
    transform: scale(1);
    transition: transform 6s ease;
}

/* Hiệu ứng Phóng to nhẹ ảnh khi Slide Active */
.swiper-slide-active .slide-img-wrapper img {
/*    transform: scale(1.08);*/
}

/* Lớp phủ làm tối ảnh để rõ chữ */
/*.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.82) 0%, rgba(0, 0, 0, 0.45) 100%);
}*/

/* Text Caption */
.slide-caption {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.caption-content {
    max-width: 650px;
}

.badge-sub {
    display: inline-block;
    background-color: rgba(46, 125, 50, 0.9);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.caption-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease 0.2s;
}

.caption-content h2 span {
    color: var(--primary-yellow);
}

.caption-content p {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease 0.4s;
}

.caption-buttons {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease 0.6s;
}

/* Hiệu ứng Text Xuất hiện khi Slide kích hoạt */
.swiper-slide-active .badge-sub,
.swiper-slide-active .caption-content h2,
.swiper-slide-active .caption-content p,
.swiper-slide-active .caption-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons Style */
.btn-yellow {
    background-color: var(--primary-yellow);
    color: #000000;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #e6ac00;
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.btn-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
}

/* Custom Prev/Next Navigation Buttons */
.custom-nav-btn {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.custom-nav-btn:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.custom-nav-btn:hover {
    background-color: var(--primary-yellow);
    color: #000000;
    border-color: var(--primary-yellow);
}

/* Custom Dots Pagination */
.custom-pagination {
    bottom: 20px !important;
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    opacity: 0.5;
    border-radius: 6px;
    transition: all 0.35s ease;
    margin: 0 5px !important;
        box-shadow: 0 0 2px #00000091;
}

.custom-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background-color: var(--primary-yellow);
    opacity: 1;
    border-radius: 6px;
}


/*@media (max-width: 767.98px) {
    .heroSwiper {
        height: 420px;
    }
    .caption-content h2 {
        font-size: 1.75rem;
    }
    .caption-content p {
        font-size: 0.9rem;
    }
    .custom-nav-btn {
        display: none; 
    }
}*/

/* Chỉnh sửa nút điều hướng Prev/Next Swiper */
.swiper-button-next.custom-nav-btn,
.swiper-button-prev.custom-nav-btn {
    width: 48px !important;
    height: 48px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    
    /* Căn giữa icon bên trong nút */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: -24px !important; /* Căn giữa theo chiều dọc chuẩn */
}

/* Chỉnh kích thước icon mũi tên bên trong */
.swiper-button-next.custom-nav-btn::after,
.swiper-button-prev.custom-nav-btn::after {
    font-size: 18px !important; /* Giảm kích thước mũi tên về vừa vặn */
    font-weight: bold !important;
    line-height: 1 !important;
}

/* Hiệu ứng Hover nút */
.swiper-button-next.custom-nav-btn:hover,
.swiper-button-prev.custom-nav-btn:hover {
    background-color: var(--primary-yellow) !important;
    color: #000000 !important;
    border-color: var(--primary-yellow) !important;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Khoảng cách nút so với lề 2 bên */
.swiper-button-prev.custom-nav-btn {
    left: 20px !important;
}

.swiper-button-next.custom-nav-btn {
    right: 20px !important;
}


/* --- ABOUT SECTION STYLES --- */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Thẻ Container Bo Tròn & Đổ Bóng */
.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Khối Hình Ảnh & Badge */
.about-img-wrapper {
    position: relative;
    border-radius: 12px;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

/* Badge Kinh Nghiệm: Nền Xanh Lá - Viền & Số màu Vàng nổi bật */
.exp-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: #0A3D8E;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    border-bottom: 4px solid var(--primary-yellow, #ffc107); /* Viền đáy vàng */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    min-width: 170px;
    z-index: 2;
}

.exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
    color: var(--primary-yellow, #ffc107); /* Số màu vàng */
}

.exp-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    color: #ffffff;
}

/* Khối Nội Dung Bên Phải */
.sub-heading {
    color: #E78903;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.main-heading {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.main-heading .highlight-blue {
    color: var(--primary-blue, #0d47a1);
}

.main-heading .highlight-green {
    color: var(--accent-green, #2e7d32);
}

.about-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

/* Grid 4 Tiêu Chí: Icon màu Vàng trên nền Xanh Dương Nhạt */
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(13, 71, 161, 0.08); /* Nền xanh nhạt */
    color: #d99b00; /* Icon màu vàng đậm dễ nhìn */
    border: 1px solid rgba(255, 193, 7, 0.4); /* Viền vàng mảnh */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
}

.feature-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.35;
}

/* Responsive Mobile */
@media (max-width: 991.98px) {
    .about-card {
        padding: 25px;
    }
    .about-img {
        height: 300px;
    }
    .main-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .exp-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
    .about-content {
        margin-top: 25px;
    }
}






/* --- NEWS & EVENTS SECTION (LIGHT BG) --- */
.news-section.light-bg {
    padding: 75px 0;
    background-color: #ffffff; /* Nền màu trắng tinh khôi */
    color: #333333;
}

.border-bottom-blue {
    border-bottom: 2px solid #e2e8f0;
}

.news-sub-title {
    color: var(--accent-green, #2e7d32); /* Xanh lá nhấn chi tiết phụ */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.news-main-title {
    color: var(--primary-blue, #0d47a1); /* Màu Xanh dương đậm chủ đạo */
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0;
}

.news-main-title span {
    color: var(--accent-green, #2e7d32);
}

.btn-view-all-news {
    color: var(--primary-blue, #0d47a1);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 9px 20px;
    border: 1px solid var(--primary-blue, #0d47a1);
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-view-all-news:hover {
    background-color: var(--primary-blue, #0d47a1);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
}

/* Meta Data (Ngày tháng / Icon) */
.news-meta {
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 8px;
}

.news-meta i {
    color: var(--accent-green, #2e7d32);
}

/* Bài viết Tiêu Điểm (Featured Card) */
.featured-news-card {
    background: #f8fafd; /* Nền xám nhạt dịu mắt */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.featured-news-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(13, 71, 161, 0.12);
    border-color: var(--primary-blue, #0d47a1);
}

.featured-img-holder {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.featured-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-img-holder img {
    transform: scale(1.08);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.featured-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

.featured-title a {
    color: var(--primary-blue, #0d47a1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--accent-green, #2e7d32);
}

.featured-excerpt {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.read-more-link {
    color: var(--accent-green, #2e7d32);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-blue, #0d47a1);
}

/* Danh sách tin nhỏ bên phải */
.news-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item-card {
    background: #f8fafd;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.news-item-card:hover {
    border-color: var(--primary-blue, #0d47a1);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.08);
    transform: translateX(5px);
    background: #ffffff;
}

.item-thumb {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-item-card:hover .item-thumb img {
    transform: scale(1.1);
}

.item-info {
    flex-grow: 1;
}

.item-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}

.item-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-card:hover .item-title a {
    color: var(--primary-blue, #0d47a1);
}

.item-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-green, #2e7d32);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.item-link:hover {
    color: var(--primary-blue, #0d47a1);
}

/* Responsive Mobile */
@media (max-width: 767.98px) {
    .news-main-title {
        font-size: 1.6rem;
    }
    .featured-img-holder {
        height: 200px;
    }
    .news-item-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-thumb {
        width: 100%;
        height: 160px;
    }
}







/* --- PARTNERS SECTION (NỀN XANH DƯƠNG ĐẬM) --- */
.partners-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0d47a1 0%, #002171 100%); /* Nền xanh dương chủ đạo */
    position: relative;
    color: #ffffff;
}

/* Tiêu đề Phụ & Tiêu đề Chính */
.partners-sub-title {
    color: var(--primary-yellow, #ffc107); /* Chữ phụ màu vàng nổi bật */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.partners-main-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.partners-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-green, #2e7d32); /* Thanh phân cách xanh lá phụ trợ */
    margin: 0 auto;
    border-radius: 2px;
}

/* Thẻ Chứa Logo Đối Tác (Nền Tối - Nổi Bật Logo) */
.partner-card {
    background: #0b3c88; /* Khối sáng hơn nền 1 tông */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.35s ease;
}

.partner-card img {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Tự động chuyển logo đen/màu thành màu trắng để dễ nhìn trên nền tối */
    opacity: 0.85;
    transition: all 0.35s ease;
}

/* Hiệu ứng Hover nổi bật */
.partner-card:hover {
    background: #ffffff; /* Chuyển nền thẻ sang trắng khi hover */
    border-color: var(--primary-yellow, #ffc107);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.partner-card:hover img {
    filter: none; /* Trả lại màu gốc của Logo khi rê chuột vào */
    opacity: 1;
}

/* Nút Điều Hướng Tiến/Lùi (Nav Buttons) */
.partners-carousel .owl-stage-outer {
    padding: 10px 0;
}

.partners-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.partners-carousel .owl-nav button.owl-prev,
.partners-carousel .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255, 193, 7, 0.15) !important;
    border: 1px solid var(--primary-yellow, #ffc107) !important;
    border-radius: 50% !important;
    color: var(--primary-yellow, #ffc107) !important;
    font-size: 1.1rem !important;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.partners-carousel .owl-nav button.owl-prev:hover,
.partners-carousel .owl-nav button.owl-next:hover {
    background-color: var(--primary-yellow, #ffc107) !important;
    color: #000000 !important;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
}





/* --- TESTIMONIAL SECTION (DARK BLUE BG) --- */
.testimonial-section.dark-blue-bg {
    padding: 75px 0;
    background: linear-gradient(135deg, #0a3880 0%, #001a57 100%); /* Nền xanh dương đậm */
    color: #ffffff;
    position: relative;
}

.testimonial-sub-title {
    color: var(--primary-yellow, #ffc107); /* Nổi bật chữ phụ màu vàng */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.testimonial-main-title {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonial-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-green, #2e7d32); /* Phân cách xanh lá phụ trợ */
    margin: 0 auto;
    border-radius: 2px;
}

/* Thẻ Đánh Giá Nền Tối Sáng Hơn 1 Tông (Card Dark) */
.testimonial-card-dark {
    background: #0b3c88;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.testimonial-card-dark:hover {
    transform: translateY(-8px);
    background: #0d4294;
    border-color: var(--primary-yellow, #ffc107);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Icon Nháy Kép (Quote) ở Góc */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: rgba(255, 193, 7, 0.18); /* Icon mờ vàng trang trí */
}

/* Sao Đánh Giá Vàng */
.rating-stars {
    color: var(--primary-yellow, #ffc107);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.rating-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #e2e8f0;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}




/* Khối Khách Hàng (Avatar & Tên) */
.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.client-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-yellow, #ffc107);
    flex-shrink: 0;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.client-role {
    font-size: 0.78rem;
    color: #4ade80; /* Xanh lá tươi chuẩn phụ trợ */
    display: block;
    font-weight: 600;
}

/* Điều chỉnh Owl Carousel */
.testimonial-carousel-dark .owl-stage-outer {
    padding-top: 10px;
    padding-bottom: 20px;
}

.testimonial-carousel-dark .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.testimonial-carousel-dark .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.25) !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonial-carousel-dark .owl-dots .owl-dot.active span {
    width: 30px;
    background-color: var(--primary-yellow, #ffc107) !important;
}




/* --- PARTNER GRAY SECTION STYLES --- */
.partner-gray-section {
    padding: 70px 0;
    background-color: #f8fafd; /* Nền xám xanh nhẹ thanh lịch */
    position: relative;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Tiêu đề Phụ & Tiêu đề Chính */
.partner-gray-subtitle {
    color: var(--accent-green, #2e7d32); /* Màu xanh lá nhấn tiêu đề phụ */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.partner-gray-title {
    color: var(--primary-blue, #0d47a1); /* Màu xanh dương chủ đạo */
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.partner-gray-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow, #ffc107); /* Thanh phân cách màu vàng */
    margin: 0 auto;
    border-radius: 2px;
}

/* Thẻ Chứa Logo Đối Tác (Nền Trắng Đổ Bóng Dịu) */
.partner-gray-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.partner-gray-card img {
    max-height: 85px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%); /* Mặc định logo màu xám mờ */
    opacity: 0.7;
    transition: all 0.35s ease;
}

/* Hiệu ứng Hover nổi bật */
.partner-gray-card:hover {
    border-color: var(--primary-blue, #0d47a1);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.12);
    transform: translateY(-5px);
}

.partner-gray-card:hover img {
    filter: grayscale(0%); /* Hiện màu gốc của logo khi hover */
    opacity: 1;
}

/* Điều chỉnh Owl Carousel */
.partner-gray-slider .owl-stage-outer {
    padding: 10px 0;
}

/* Nút Điều Hướng Tiến/Lùi (Nav Buttons) */
.partner-gray-slider .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.partner-gray-slider .owl-nav button.owl-prev,
.partner-gray-slider .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    background-color: #ffffff !important;
    border: 1px solid var(--primary-blue, #0d47a1) !important;
    border-radius: 50% !important;
    color: var(--primary-blue, #0d47a1) !important;
    font-size: 1.1rem !important;
    margin: 0 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.partner-gray-slider .owl-nav button.owl-prev:hover,
.partner-gray-slider .owl-nav button.owl-next:hover {
    background-color: var(--primary-blue, #0d47a1) !important;
    color: var(--primary-yellow, #ffc107) !important;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
}

/* Chấm chuyển trang Dots (nếu dùng dots thay nav) */
.partner-gray-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.partner-gray-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #cbd5e1 !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.partner-gray-slider .owl-dots .owl-dot.active span {
    width: 30px;
    background-color: var(--primary-blue, #0d47a1) !important;
}




/* --- QUOTE & CONSULT SECTION STYLES --- */
.quote-consult-section {
    padding: 75px 0;
    background-color: #f4f7fb;
    position: relative;
}

/* Khung Container Nền Xanh Đổ Bóng */
.quote-wrapper {
    background: linear-gradient(135deg, #0d47a1 0%, #002171 100%);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.2);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Cột Trái - Thông Tin */
.quote-sub-title {
    color: var(--primary-yellow, #ffc107);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.quote-main-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.quote-desc {
    color: #d1d5db;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Danh sách ưu điểm */
.quote-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: #f3f4f6;
    font-weight: 500;
}

.benefit-item i {
    color: #4ade80; /* Màu xanh lá phụ trợ */
    font-size: 1.05rem;
}

/* Hotline Card Trái */
.quote-hotline-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
}

.hotline-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--accent-green, #2e7d32);
    color:#fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hotline-text-wrap span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e5e7eb;
    letter-spacing: 0.5px;
}

.hotline-text-wrap a {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-yellow, #ffc107);
    text-decoration: none;
    line-height: 1.2;
}

/* Cột Phải - Form Thẻ Trắng */
.quote-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 30px;
    color: #333333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-title {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f6;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444444;
    margin-bottom: 6px;
}

/* Input Icon Group */
.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #888888;
    font-size: 0.9rem;
    z-index: 2;
}

.input-icon-group .form-control,
.input-icon-group .form-select {
    padding-left: 38px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue, #0d47a1);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.15);
}

/* Nút Submit Vàng Nổi Bật */
.btn-submit-quote {
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.btn-submit-quote:hover {
    background-color: #e6ac00;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

/* Responsive Mobile */
@media (max-width: 991.98px) {
    .quote-wrapper {
        padding: 25px;
    }
    .quote-main-title {
        font-size: 1.6rem;
    }
    .quote-form-card {
        padding: 22px;
    }
}





/* --- MAIN FOOTER STYLES --- */
.main-footer {
    background: linear-gradient(180deg, #0a3578 0%, #001948 100%);
    color: #d1d5db;
    font-size: 0.88rem;
    position: relative;
    border-top: 4px solid var(--primary-yellow, #ffc107);
}

.footer-top {
    padding: 70px 0 50px;
}



/* Brand Info */
.footer-logo {
    text-decoration: none;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.footer-logo-text .sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #a0aec0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-logo-text .main {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-logo-text .main .highlight {
    color: #4ade80;
}

.footer-desc {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-socials .social-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
    transform: translateY(-3px);
}

/* Column Titles */
.footer-column-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-green, #2e7d32);
    border-radius: 2px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: #e5e7eb;
    line-height: 1.45;
}

.footer-contact-list li i {
    color: var(--primary-yellow, #ffc107);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--primary-yellow, #ffc107);
    text-decoration: none;
    font-weight: 700;
}

/* Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.footer-links-list a i {
    font-size: 0.75rem;
    color: #4ade80;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Fanpage Box Styling */
.fb-page-wrapper {
    background-color: #ffffff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fb-page-wrapper iframe {
    display: block;
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #001030;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #9ca3af;
}

.copyright-text strong {
    color: #ffffff;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow, #ffc107);
}

/* Responsive Mobile */
@media (max-width: 767.98px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    .footer-bottom {
        text-align: center;
    }
}


/* --- BACK TO TOP BUTTON STYLES --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-blue, #0d47a1);
    color: var(--primary-yellow, #ffc107);
    border: 2px solid var(--primary-yellow, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Class kích hoạt khi cuộn qua khoảng cách nhất định */
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hiệu ứng Hover nổi bật */
.back-to-top-btn:hover {
    background-color: var(--primary-yellow, #ffc107);
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 8px 22px rgba(255, 193, 7, 0.5);
    transform: translateY(-4px);
}

/* Responsive Mobile (Đặt góc nhỏ hơn cho gọn) */
@media (max-width: 767.98px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/*bo sung*/
.title_company_namecty h1 {
    margin-bottom: 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #666666;
}
.footer_dtphattrien {
    font-size: 1.4em;
    color: #fff;
    font-weight: bold;
}

.footer_dtphattrien .main {
    color: #ffc107;
}
/*bo sung*/

/*trang ve chung toi*/
/* --- BREADCRUMB HERO SECTION --- */
.about-hero-breadcrumb {
    background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(13, 71, 161, 0.9));
    /*background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(13, 71, 161, 0.9)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;*/
    padding: 60px 0;
    color: #ffffff;
}

.about-hero-breadcrumb .page-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-yellow, #ffc107);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--primary-yellow, #ffc107);
    font-weight: 700;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- MAIN ABOUT CONTENT --- */
.about-detail-section {
    background-color: #ffffff;
}

.section-subtitle {
    color: var(--accent-green, #2e7d32);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.35;
}

.about-content-block .lead-text {
    color: #2d3748;
    font-size: 1.05rem;
}

.about-content-block .desc-text {
    color: #4a5568;
    line-height: 1.7;
}

/* Hình ảnh & Badge kinh nghiệm */
.about-img-wrapper .main-img-holder img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue, #0d47a1);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-yellow, #ffc107);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge .exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow, #ffc107);
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Check list */
.about-check-list i {
    color: var(--accent-green, #2e7d32) !important;
    font-size: 1.1rem;
}

/* --- KHỐI BÀI VIẾT NỘI DUNG MỞ RỘNG --- */
.bg-light-gray {
    background-color: #f8fafd;
    border-color: #e2e8f0 !important;
}

.article-heading {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    padding-left: 14px;
}

.article-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: var(--accent-green, #2e7d32);
    border-radius: 2px;
}

.article-paragraph {
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.article-list {
    padding-left: 20px;
    color: #4a5568;
}

.article-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-quote-box {
    background-color: #ffffff;
    border-left: 4px solid var(--primary-yellow, #ffc107);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    position: relative;
}

.about-quote-box .quote-icon {
    font-size: 1.5rem;
    color: var(--primary-blue, #0d47a1);
    opacity: 0.2;
    margin-bottom: 5px;
    display: block;
}

.about-quote-box .italic-text {
    font-style: italic;
    color: var(--primary-blue, #0d47a1);
    font-weight: 600;
    font-size: 1rem;
}

/* --- KHỐI THỐNG KÊ (COUNTER SECTION) --- */
.about-counter-section {
    background: linear-gradient(135deg, var(--primary-blue, #0d47a1), #0a3780);
    padding: 50px 0;
    color: #ffffff;
}

.counter-box .counter-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow, #ffc107);
    display: block;
    margin-bottom: 5px;
}

.counter-box .counter-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
    }
}
/*trang ve chung toi*/
/*trang dich vu ve sinh*/
/* --- HERO BREADCRUMB --- */
.services-hero-breadcrumb {
    background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(13, 71, 161, 0.92));

   /*             background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(13, 71, 161, 0.92)), 
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;*/
    padding: 60px 0;
    color: #ffffff;
}

.services-hero-breadcrumb .page-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-yellow, #ffc107);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--primary-yellow, #ffc107);
    font-weight: 700;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- SECTION HEADINGS --- */
.max-w-700 {
    max-width: 700px;
}

.section-subtitle {
    color: var(--accent-green, #2e7d32);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.section-title {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.35;
}
/*trang dich vu ve sinh*/
/*baove*/
.total_card_sec {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

/*baove*/
/*Danh sach*

/* --- CHUNG & UTILITIES ĐỘC LẬP --- */
.news-page-bg {
    background-color: #f8fafc;
}

.news-page-xsmall {
    font-size: 0.8rem;
}

/* Cắt chữ giới hạn dòng độc lập */
.news-page-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Section Title Styling */
.news-page-subtitle {
    color: var(--accent-green, #2e7d32);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.news-page-title {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.35;
}

.news-page-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow, #ffc107);
    border-radius: 2px;
    margin-top: 12px;
}

/* --- FEATURED NEWS CARD --- */
.news-page-featured {
    transition: all 0.35s ease;
}

.news-page-featured:hover {
    box-shadow: 0 15px 30px rgba(13, 71, 161, 0.1) !important;
}

.news-page-featured-thumb {
    height: 360px;
}

.news-page-featured-thumb img {
    transition: transform 0.5s ease;
}

.news-page-featured:hover .news-page-featured-thumb img {
    transform: scale(1.05);
}

.news-page-featured-title a {
    transition: color 0.2s ease;
}

.news-page-featured-title a:hover {
    color: var(--primary-blue, #0d47a1) !important;
}

/* --- GRID NEWS CARDS --- */
.news-page-card {
    transition: all 0.3s ease;
}

.news-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(13, 71, 161, 0.1) !important;
    border-color: rgba(13, 71, 161, 0.25) !important;
}

.news-page-thumb {
    height: 210px;
}

.news-page-thumb img {
    transition: transform 0.5s ease;
}

.news-page-card:hover .news-page-thumb img {
    transform: scale(1.08);
}

.news-page-card-title a {
    transition: color 0.2s ease;
}

.news-page-card:hover .news-page-card-title a {
    color: var(--primary-blue, #0d47a1) !important;
}

.news-page-link i {
    transition: transform 0.2s ease;
    display: inline-block;
}

.news-page-card:hover .news-page-link i {
    transform: translateX(4px);
}

/* --- PHÂN TRANG (PAGINATION STYLING) --- */
/*.news-page-pagination ul,
.news-page-pagination .pagination {
    display: inline-flex;
    gap: 6px;
    padding-left: 0;
    list-style: none;
    justify-content: center;
}

.news-page-pagination a, 
.news-page-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.news-page-pagination a:hover {
    background-color: var(--primary-blue, #0d47a1);
    color: #ffffff;
    border-color: var(--primary-blue, #0d47a1);
}

.news-page-pagination .active span,
.news-page-pagination .current {
    background-color: var(--primary-blue, #0d47a1);
    color: #ffffff;
    border-color: var(--primary-blue, #0d47a1);
}*/
/*Danh sach*/

/*chitiettintuc*/
/* --- TỔNG THỂ TRANG CHI TIẾT TIN TỨC --- */
.news-detail-bg {
    background-color: #f8fafc;
}

.x-small {
    font-size: 0.8rem;
}

.italic-text {
    font-style: italic;
    color: #475569;
}

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

/* Header & Tiêu đề */
.news-detail-title {
    font-size: 2.1rem;
    line-height: 1.35;
    color: #0f172a;
}

.news-detail-summary {
    background-color: #f1f5f9 !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- TỐI ƯU TYPOGRAPHY NỘI DUNG BÀI VIẾT --- */
.news-detail-content {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.85;
    word-break: break-word;
}

.news-detail-content h1, 
.news-detail-content h2, 
.news-detail-content h3, 
.news-detail-content h4 {
    color: var(--primary-blue, #0d47a1);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.news-detail-content h2 {
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-green, #2e7d32);
    padding-left: 12px;
}

.news-detail-content h3 {
    font-size: 1.3rem;
}

.news-detail-content p {
    margin-bottom: 1.25rem;
}

/* Tối ưu hiển thị hình ảnh trong nội dung */
.news-detail-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.news-detail-content table {
    width: 100% !important;
    margin: 20px 0;
    border-collapse: collapse;
}

.news-detail-content table th, 
.news-detail-content table td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
}

.news-detail-content table th {
    background-color: #f8fafc;
    color: var(--primary-blue, #0d47a1);
    font-weight: 700;
}

/* --- FOOTER BÀI VIẾT & NÚT CHIA SẺ --- */
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.share-btn:hover {
    opacity: 0.85;
}

.fb-share {
    background-color: #1877f2;
}

.zalo-share {
    background-color: #0068ff;
    width: auto;
    padding: 0 12px;
    border-radius: 18px;
}

/* --- BÀI VIẾT LIÊN QUAN --- */
.news-detail-related-item {
    transition: all 0.3s ease;
}

.news-detail-related-item:hover {
    background-color: #ffffff !important;
    border-color: var(--primary-blue, #0d47a1) !important;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.08);
    transform: translateY(-3px);
}

.news-detail-related-thumb {
    width: 80px;
    height: 60px;
}

.news-detail-related-title a {
    transition: color 0.2s ease;
}

.news-detail-related-item:hover .news-detail-related-title a {
    color: var(--primary-blue, #0d47a1) !important;
}

/* Responsive */
@media (max-width: 767.98px) {
    .news-detail-title {
        font-size: 1.6rem;
    }
}
/*chitiettintuc*/
/*lienhe*/
/* --- CHUNG & CẤU TRÚC TRANG LIÊN HỆ --- */
.contact-page-bg {
    background-color: #f8fafc;
}

.max-w-700 {
    max-width: 700px;
}

/* Header & Title Styling */
.contact-page-subtitle {
    color: var(--accent-green, #2e7d32);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.contact-page-title {
    color: var(--primary-blue, #0d47a1);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.35;
}

.contact-page-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow, #ffc107);
    border-radius: 2px;
    margin-top: 12px;
}

/* --- THÔNG TIN CÔNG TY (CỘT TRÁI) --- */
.contact-page-info-content {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.8;
}

.contact-page-info-content p {
    margin-bottom: 1rem;
}

.contact-page-info-content strong {
    color: var(--primary-blue, #0d47a1);
}

.contact-page-info-content ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

.contact-page-info-content li {
    margin-bottom: 8px;
}

/* --- FORM NHẬP THÔNG TIN (CỘT PHẢI) --- */
.contact-page-input {
    font-size: 0.92rem;
    padding: 10px 14px;
    border-color: #cbd5e1;
    transition: all 0.25s ease;
}

.contact-page-input:focus {
    border-color: var(--primary-blue, #0d47a1);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.12);
}

.input-group-text {
    border-color: #cbd5e1;
}

.contact-page-btn-submit {
    background-color: var(--primary-blue, #0d47a1) !important;
    border-color: var(--primary-blue, #0d47a1) !important;
    transition: all 0.3s ease;
}

.contact-page-btn-submit:hover {
    background-color: #082d68 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.25) !important;
}

.contact-page-btn-reset {
    transition: all 0.3s ease;
}

.contact-page-btn-reset:hover {
    background-color: #e2e8f0 !important;
    color: #1e293b !important;
}

/* --- BẢN ĐỒ GOOGLE MAPS EMBED --- */
.contact-page-map-embed iframe {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    display: block;
}

/* Border ly ngăn giữa 2 cột ở desktop */
@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #e2e8f0 !important;
    }
}
/*lienhe*/


.company_main_tt {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.5;
    color: var(--primary-blue);
}

/*sntieubieu*/
/* --- TIÊU ĐỀ MỤC --- */
.pd_header .pd_subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue, #0d6efd);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.pd_header .pd_title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1d20;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pd_header .pd_divider {
    width: 50px;
    height: 3px;
    background: var(--primary-yellow, #ffc107);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- CARD SẢN PHẨM --- */
.pd_card_link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.pd_card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pd_card_link:hover .pd_card {
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

/* Badge nhãn dán */
.pd_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #111111;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd_badge_danger { background-color: #e63946; }
.pd_badge_success { background-color: #2a9d8f; }

/* Khung ảnh */
.pd_img_box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8f9fa;
}

.pd_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pd_card_link:hover .pd_img_box img {
    transform: scale(1.06);
}

/* Nội dung thông tin */
.pd_content {
    padding: 18px 16px;
}

.pd_cat {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.pd_name {
    font-size: 1rem;
    font-weight: bold;
    color: #222222;
    line-height: 1.4;
    margin-bottom: 14px;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.25s ease;
}

.pd_card_link:hover .pd_name {
    color: var(--primary-blue, #0d6efd);
}

/* Chân trang Card: Giá + Nút chi tiết */
.pd_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed #f0f0f0;
}

.pd_price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pd_price_new {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e63946;
}

.pd_price_old {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-decoration: line-through;
}

/* Nút Chi tiết dạng Text + Icon */
.pd_detail_btn {
    font-size: 0.82rem;
    font-weight: 600;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.25s ease;
}

.pd_detail_btn i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.pd_card_link:hover .pd_detail_btn {
    color: var(--primary-blue, #0d6efd);
}

.pd_card_link:hover .pd_detail_btn i {
    transform: translateX(4px);
}

/* --- MÀU NỀN CHO 2 DANH MỤC --- */
.pd_bg_light {
    background-color: #f8f9fa; /* Nền xám nhạt cho Van Gió */
}

.pd_bg_white {
    background-color: #ffffff; /* Nền trắng cho Miệng Gió */
}

/* --- TÙY CHỈNH OWL CAROUSEL --- */
.pd_carousel .owl-stage-outer {
    padding: 10px 0 3em 0; /* Tạo khoảng trống đổ bóng cho card khi trượt */
}

/* Custom Nút Mũi Tên Nav */
.pd_carousel.owl-theme .owl-nav {
    margin-top: 15px;
}

.pd_carousel.owl-theme .owl-nav [class*='owl-'] {
    width: 38px;
    height: 38px;
    line-height: 36px;
    border-radius: 50%;
    background: #ffffff !important;
    color: #333333 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.pd_carousel.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--primary-blue, #0d6efd) !important;
    color: #ffffff !important;
}

/* Custom Dấu Chấm Dot */
.pd_carousel.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.pd_carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 24px;
    background: var(--primary-blue, #0d6efd) !important;
}


/* --- HIỂN THỊ VÀ CĂN VỊ TRÍ NÚT NAV (MŨI TÊN) --- */
.pd_carousel {
    position: relative; /* Làm gốc tọa độ cho nút Nav */
}

/* Ép luôn hiện nút Nav */
.pd_carousel.owl-theme .owl-nav {
    display: block !important;
    margin-top: 0;
}

/* Định dạng chung cho 2 nút Prev / Next */
.pd_carousel.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 42%; /* Căn giữa theo chiều cao khung ảnh */
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: #ffffff !important;
    color: #222222 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.4rem;
    margin: 0;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

/* Vị trí nút Trái (Prev) */
.pd_carousel.owl-theme .owl-nav .owl-prev {
    left: -18px; /* Đẩy hơi lệch ra mép ngoài cho đẹp */
}

/* Vị trí nút Phải (Next) */
.pd_carousel.owl-theme .owl-nav .owl-next {
    right: -18px;
}

/* Hiệu ứng Hover vào nút */
.pd_carousel.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--primary-blue, #0d6efd) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue, #0d6efd);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Điền icon FontAwesome / RemixIcon nếu navText chưa hiển thị */
.pd_carousel.owl-theme .owl-nav .owl-prev::before {
    content: "\ea64"; /* Mã icon RemixIcon (ri-arrow-left-s-line) */
    font-family: 'remixicon' !important;
}

.pd_carousel.owl-theme .owl-nav .owl-next::before {
    content: "\ea6e"; /* Mã icon RemixIcon (ri-arrow-right-s-line) */
    font-family: 'remixicon' !important;
}

/* Tối ưu hiển thị trên giao diện Mobile */
@media (max-width: 767px) {
    .pd_carousel.owl-theme .owl-nav .owl-prev {
        left: 2px;
    }
    .pd_carousel.owl-theme .owl-nav .owl-next {
        right: 2px;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span
{
    background:red;
}

/*sntieubieu*/


/* CSS Phân trang */
.pagination-wrapper {
  justify-content: center;
  gap: 4px;
}

.pagination-wrapper a {
  color: #555;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  font-size: 13px;
}

.pagination-wrapper span {
  background-color: #0d47a1;
  border-color: #0d47a1;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  font-size: 13px;
  color: #fff;
}


/*ccc*/



:root {
  --pd-primary-color: #0d6efd;
  --pd-primary-hover: #0b5ed7;
  --pd-text-main: #212529;
  --pd-text-muted: #6c757d;
  --pd-border-color: #e9ecef;
  --pd-bg-light: #f8f9fa;
  --pd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --pd-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --pd-radius: 12px;
  --pd-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   1. BREADCRUMB MODERN
   -------------------------------------------------------------------------- */
.modern-breadcrumb-wrapper {
  background-color: var(--pd-bg-light);
  border-bottom: 1px solid var(--pd-border-color);
}

.modern-breadcrumb {
  gap: 6px;
}

.breadcrumb-item-custom a {
  color: var(--pd-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--pd-transition);
}

.breadcrumb-item-custom a:hover {
  color: var(--pd-primary-color);
}

.breadcrumb-item-custom + .breadcrumb-item-custom::before {
  content: "/";
  padding-right: 8px;
  color: #adb5bd;
}

.breadcrumb-item-custom.active {
  color: var(--pd-text-main);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   2. MAIN PRODUCT GALLERY & MAGIC ZOOM
   -------------------------------------------------------------------------- */
.pdetail-v2-main-image-wrap {
  position: relative;
/*  background-color: #fff;*/
/*  border: 1px solid var(--pd-border-color);*/
/*  border-radius: var(--pd-radius);*/
  overflow: hidden;
/*  box-shadow: var(--pd-shadow-sm);*/
  transition: var(--pd-transition);
}

.pdetail-v2-main-image-wrap:hover {
  box-shadow: var(--pd-shadow-md);
}

.pdetail-v2-main-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Slick Carousel Thumbnails */
#list-product-thumb {
  position: relative;
  padding: 0 28px; /* Dành khoảng trống cho nút prev/next */
}

.pdetail-v2-thumb-item {
  padding: 4px;
}

.pdetail-v2-thumb-card {
  display: block;
  border: 2px solid var(--pd-border-color);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: var(--pd-transition);
  aspect-ratio: 1 / 1;
}

.pdetail-v2-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-v2-thumb-card:hover,
.pdetail-v2-thumb-card.mz-thumb-selected {
  border-color: var(--pd-primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  transform: translateY(-2px);
}

/* Dynamic Slick Arrows */
.pdetail-v2-slick-prev,
.pdetail-v2-slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--pd-border-color);
  color: var(--pd-text-main);
  box-shadow: var(--pd-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: var(--pd-transition);
}

.pdetail-v2-slick-prev { left: -5px; }
.pdetail-v2-slick-next { right: -5px; }

.pdetail-v2-slick-prev:hover,
.pdetail-v2-slick-next:hover {
  background: var(--pd-primary-color);
  color: #fff;
  border-color: var(--pd-primary-color);
}

/* --------------------------------------------------------------------------
   3. PRODUCT INFO & DETAILS
   -------------------------------------------------------------------------- */
.title-head {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pd-text-main);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.mota_product_details {
  color: var(--pd-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.send-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--pd-primary-color), var(--pd-primary-hover));
  color: #fff !important;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
  transition: var(--pd-transition);
}

.send-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
}

/* Social Buttons */
.social-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-btns .btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-bg-light);
  border: 1px solid var(--pd-border-color);
  color: var(--pd-text-muted);
  transition: var(--pd-transition);
  padding: 0;
}

.social-btns .btn:hover {
  background: var(--pd-primary-color);
  color: #fff;
  border-color: var(--pd-primary-color);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. TAB DESIGN & ANIMATIONS
   -------------------------------------------------------------------------- */
.pdetail-v2-tabs-section {
  background-color: #fff;
  border-top: 1px solid var(--pd-border-color);
}

.pdetail-v2-nav-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--pd-border-color);
  gap: 15px;
}

.pdetail-v2-tab-link {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--pd-text-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--pd-transition);
}

.pdetail-v2-tab-link:hover {
  color: var(--pd-primary-color);
}

.pdetail-v2-tab-link.active {
  color: var(--pd-primary-color);
  border-bottom-color: var(--pd-primary-color);
}

.pdetail-v2-tab-pane {
  display: none;
}

.pdetail-v2-tab-pane.active {
  display: block;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pdetail-v2-article-content {
  line-height: 1.8;
  color: #333;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   5. RELATED PRODUCTS (CAROUSEL CARD)
   -------------------------------------------------------------------------- */
.sp_khaclienquan {
  background-color: var(--pd-bg-light);
}

.sp_khaclienquan .header {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pd-text-main);
  position: relative;
  display: inline-block;
}

.sp_khaclienquan .header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: var(--pd-primary-color);
  border-radius: 2px;
}

.product-card {
  background: #fff;
  border-radius: var(--pd-radius);
  border: 1px solid var(--pd-border-color);
  overflow: hidden;
  transition: var(--pd-transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pd-shadow-md);
  border-color: transparent;
}

.product-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f1f1f1;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-info {
  padding: 15px;
}

.product-name a {
  color: var(--pd-text-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--pd-transition);
}

.product-name a:hover {
  color: var(--pd-primary-color);
}

.product-status {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pd-primary-color);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .title-head { font-size: 1.35rem; }
  .send-inquiry { width: 100%; }
  #list-product-thumb { padding: 0 20px; }
}
/*ccc*/
.maps_wr iframe {
    height: 110px;
}
