
/* ==============================
           ARTICLE HEADER
        ================================ */
.article-header {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    border-left: 7px solid #39b44b;
    padding: 35px 0 15px;
}



/* ARTICLE */

.article-header-inner {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.article-breadcrumb {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 14px;
}

.article-breadcrumb a {
    color: #000;
    text-decoration: none;
}

.article-breadcrumb span {
    margin: 0 6px;
}

.article-title {
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
    color: #c00;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
}

.article-sapo {
    text-align: justify;
    font-size: 17px;
    line-height: 1.65;
    color: #000;

}

/* ==============================
           CONTENT WRAP
        ================================ */
.content-wrap {
    width: 80%;
    margin: 30px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 32px;
}

/* LEFT CONTENT */
.content-left {
    font-size: 17px;
    line-height: 1.75;
}

.news-featured-image {
    margin-bottom: 20px;
    text-align: center;
}

.news-featured-image img {
    height: auto;
    border-radius: 6px;
}

.news-featured-image figcaption {
    margin-top: 8px;
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

.content-left h2 {
    font-size: 18px;
    margin: 4px 0 4px;
    color: #C00;
    font-weight: bold;
    line-height: 27px;
}

.content-left h3 {
    font-size: 18px;
    margin: 4px 0 4px;
    color: #000;
    font-weight: bold;
    line-height: 27px;
}

.content-left p {
    font-size: 17px;
    margin-bottom: 6px;
    color: #222;
    line-height: 1.5;
}

.content-left ul{
    font-size:18px !important;
    margin-bottom:5px !important;
    line-height: 25px !important;
}

.content-left ul li{
    font-size:17px !important;
    margin-bottom:5px !important; 
    line-height: 25px !important;
    position: relative !important;
    padding-left: 20px !important;
}
.content-left ul li::before{
    content: "-" !important;
    position: absolute !important;
    left: 0 !important;
}

/* RIGHT SIDEBAR */
.content-right {
    position: relative;
}

.sidebar-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #c00;
    font-weight: bold;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 10px;
}



.sidebar-box a {
    color: #005aaa;
    text-decoration: none;
    font-size: 16px;
}

.sidebar-box a:hover {
    color: #c00;
    text-decoration: none;
    font-size: 16px;
}

.article-author-box {
    margin-top: 40px;
    padding: 18px 20px;
    background: #f8f9fb;
    border-left: 4px solid #005aaa;
    border-radius: 4px;
}

.article-author-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #005aaa;
}

.article-author-box strong {
    color: #005aaa;
}

section strong, section b, section cite {
    font-weight: bold;
    line-height: 31px;
    color: #000;
}

/* ==============================
           RESPONSIVE
        ================================ */
@media (max-width:992px) {
    .content-wrap {
        grid-template-columns: 1fr;
        display:grid !important;
    }
}

@media (max-width:768px) {
    
    .content-left {
        width:100% !important;
    }
    .tintuc-bds-right {
        width:100% !important;
    }
    .article-header {
        padding: 40px 0 5px !important;
    }
    .content-wrap {
        display:grid !important;
        width: 100% !important;
    }
    .article-header-inner {
        width: 100% !important;
    }
    .article-title {
        font-size: 24px;
    }

    .article-sapo {
        font-size: 17px;
    }
    
}


.tax-banner {
    background: linear-gradient(135deg, #0d47a1, #2196f3);
    padding: 140px 20px 120px;
}

/* Container */
.tax-services {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* Item */
.service-item {
    position: relative;
    flex: 0 0 auto;
    /* không cho flex bóp */
}

/* Tooltip */
.tooltip {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);

    width: 340px;
    /* cố định chiều rộng */
    max-width: 90vw;
    /* mobile không tràn màn */
    background: #fff;
    padding: 20px 26px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #0d47a1;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    pointer-events: none;
    /* tránh rung hover */
    z-index: 10;
}

/* Mũi tên */
.tooltip::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #fff;
}

/* Hover */
.service-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Vòng tròn */
.service-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 17px;
    color: #0d47a1;
    cursor: pointer;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.service-item:hover .service-circle {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .service-circle {
        width: 90px;
        height: 90px;
        font-size: 16px;
    }

    .tooltip {
        width: 280px;
        font-size: 16px;
        padding: 16px 20px;
    }
}


/* ===============================
 MỤC TIN TỨC NỔI BẬT KHÁM PHÁ - TIỆN ÍCH
================================ */
.fonttieudetin{
	font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
}
.tintuc-bds-titletv {
    color: #c00;
    border-bottom: 2px solid #c00;
    padding-bottom: 6px;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}
/* Wrapper */
.tintuc-bds-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 auto;
  width: 80%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 30px;
  padding-bottom:40px;
}

/* CỘT TRÁI */
.tintuc-bds-left {
  flex: 2 1 0;
  min-width: 300px;
}

/* Tin tức item: Hình 3 phần, text 7 phần */
.tintuc-bds-news-item {
  display: flex;
  gap: 0px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
.tintuc-bds-news-img {
  flex: 0 0 20%;
  min-width: 100px;
}
.tintuc-bds-news-img img {
  width: 85%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.tintuc-bds-news-content {
  flex: 7 0 65%;
}
.tintuc-bds-news-title {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-decoration: none;
    color: #005aaa;
    font-size: 17px;
    line-height: 26px;
}

.tintuc-bds-news-title:hover {
	 display: block;
    font-weight: bold;
    margin-bottom: 2px;
    text-decoration: none;
    color: #c00 !important;
    font-size: 17px;
    line-height: 21px;
}
.tintuc-bds-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
	display:block;
	width:80%;
	text-align: justify;
}

/* CỘT PHẢI */
.tintuc-bds-right {
  flex: 1 1 0;
  min-width: 250px;
}

/* Sticky desktop */
@media (min-width: 992px) {
  .tintuc-bds-right {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

/* Box tiện ích */

.utilities__header{
    font-size: 20px !important;
}

.utilities__line{
    background:#c00 !important;
}

.utilities__clock {
    font-size:15px !important;
    color: #000!important;
}

.utilities__clock strong{
    color: #000!important;
}

.tintuc-bds-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}
.tintuc-bds-gold-box table {
  width: 100%;
  border-collapse: collapse;
}
.tintuc-bds-gold-box th,
.tintuc-bds-gold-box td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
}
.tintuc-bds-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}
.tintuc-bds-weather-box {
  text-align: center;
}
.tintuc-bds-temp {
  font-size: 2rem;
  font-weight: bold;
}
.tintuc-bds-weather-info span {
  display: block;
  font-size: 0.9rem;
}
.tintuc-bds-news-title {
    display: block;
    font-weight: bold;
    margin-bottom: 2px;
    text-decoration: none;
    color: #005aaa;
    font-size: 17px;
    line-height: 21px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 991px) {
  .tintuc-bds-wrapper {
    flex-direction: column;
    width:100% !important;
  }
  .tintuc-bds-left,
  .tintuc-bds-right {
    width: 100%;
    flex: none;
  }
  .tintuc-bds-news-item {
    flex-direction: row;
  }
  .tintuc-bds-news-img {
    flex: 3 0 30%;
  }
  .tintuc-bds-news-content {
    flex: 7 0 65%;
  }
  .tintuc-bds-right {
    position: relative;
    margin-top: 0px;
  }
  .tintuc-bds-news-title {
    display: block;
    font-weight: bold;
    margin-bottom: 2px;
    text-decoration: none;
    color: #005aaa;
    font-size: 17px;
    line-height: 21px;
}
  .tintuc-bds-text {
     font-size: 16px;
    line-height: 1.3;
    color: #333;
	display:none;
}
}
/* ===============================
 KẾT THÚC MỤC TIN TỨC NỔI BẬT KHÁM PHÁ - TIỆN ÍCH
================================ */


/*CSS CŨ*/

        .tintuc-bds-news-img {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* lớp ánh sáng */
        .tintuc-bds-news-img::before {
            content: "";
            position: absolute;
            top: -150%;
            left: -150%;
            width: 200%;
            height: 200%;
            background: linear-gradient(120deg,
                    transparent 40%,
                    rgba(255, 255, 255, 0.6) 50%,
                    transparent 60%);
            transform: rotate(25deg);
            transition: 1.5s ease;
        }

        /* hover */
        .tintuc-bds-news-img:hover {
            transform: translateY(-5px);
        }

        .tintuc-bds-news-img:hover::before {
            top: 100%;
            left: 100%;
        }

        .img-fluid {
            border-radius: 10px;
        }

        .featured-content {
            padding: 15px 0 5px;
        }

        .featured-title {
            font-size: 18px;
            text-align: center;
            color: #c00;
            font-weight: 600;
        }

        .featured-title p {
            line-height: 28px;
            overflow: hidden;
            height: 80px;
            font-size: 16px;
            text-align: justify;
        }

        .services-section-two .inner-box h3 {
            font-size: 20px !important;
            font-weight: bold !important;
            color: #000 !important;
            padding-top: 15px !important;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .auto-container {
                max-width: 100% !important;
            }

            .grid-section .ttm-box-col-wrapper {
                padding-bottom: 30px;
            }

            .grid-section {
                padding: 30px 0;
            }

            .featured-title h3 {
                font-size: 18px;
            }

            .featured-title p {
                font-size: 16px;
            }

            .services-section-two .inner-container {
                padding-left: 0 !important;
            }
        }
        
        
        
        
        
        /* STYLE BANNER*/

        .catalogue-banner {
            background: #c00;
            padding: 30px 0px;
            text-align: center;
            color: #fff;
        }

        .banner-container {
            max-width: 80%;
            margin: 0 auto;
        }

        /* SUB TITLE */
        .sub-titles {
            font-style: italic;
            font-size: 24px;
            margin-bottom: 15px;
            opacity: 0.9;
            color: #fff;
        }

        /* MAIN TITLE */
        .main-title {
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 20px;
            color: #fff;
            font-size: 30px;
        }

        /* DESCRIPTION */
        .desc {
            font-size: 24px;
            margin-bottom: 35px;
            font-weight: 500;
            color: #fff;
        }

        /* BUTTON */
        .cta-btn {
            display: inline-block;
            background: linear-gradient(9deg, #ff9900, #39b54a);
            color: #fff;
            text-decoration: none;
            padding: 16px 28px;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            transition: 0.3s ease;
            border: 1px solid #fff;
            position: relative;
            /* thêm */
            overflow: hidden;
        }

        /* lớp ánh sáng */
        .cta-btn::before {
            content: "";
            position: absolute;
            top: -150%;
            left: -150%;
            width: 200%;
            height: 200%;
            background: linear-gradient(120deg,
                    transparent 40%,
                    rgba(255, 255, 255, 0.6) 50%,
                    transparent 60%);
            transform: rotate(25deg);
            transition: 1.7s ease;
        }

        .cta-btn:hover::before {
            top: 100%;
            left: 100%;
        }

        .cta-btn span {
            display: block;
            font-size: 14px;
            font-weight: 400;
            margin-top: 5px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: #fff;
        }

        /* ========================= */
        /* RESPONSIVE */
        /* ========================= */


        /* Mobile */
        @media (max-width: 790px) {

            .catalogue-banner {
        padding: 50px 15px;
    }

    .sub-title {
        font-size: 15px;
    }

    .main-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .desc {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 14px 20px;
    }

    .cta-btn span {
        font-size: 16px;
    }
    
    .sub-titles{
        font-size: 18px;
    }
        }

    /*STYLE ĐỐI TÁC*/
    
        .projects {
            text-align: center;
            padding: 60px 0px;
            background: #f5f5f5;
        }

        .projects div {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .projects div span {
            color: #39b54a;
        }

        /* GRID LOGO */

        .logo-grid {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 80%;
        }

        .logo-grid li {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
        }

        .logo-grid li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .logo-grid img {
            width: 100%;
            height: 100px;
            object-fit: contain;
        }

        /* TABLET */

        @media (max-width:992px) {
            .logo-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* MOBILE */

        @media (max-width:600px) {
            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects h2 {
                font-size: 20px;
            }

            .logo-grid img {
                height: 40px;
            }
            .projects div{
                font-size:20px;
            }
        }
        

/*TABLE*/

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
}

/* Header */
table thead {
    background: #3bb54c;
    color: #fff;
}

table th {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 600;
}

/* Body */
table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

/* Body */
table td p, table th p {
    margin-bottom: 0 !important;
}

/* Zebra */
.table-gia tbody tr:nth-child(even) {
    background: #f5f5f5;
}
