.blue_bg {
    background: linear-gradient(90deg, #ffffff 30%, #f5faff 50%, #e6f0fa 70%) !important;
}

.about_section {
    position: relative;
    width: auto;
    overflow: hidden;
}

.container-fluid-about {
    position: relative;
    z-index: 2;
    /* Nội dung nổi trên overlay */
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 50px 15px;
}

.about_box {
    width: 80%;
    text-align: justify;
    color: #ffffff;
    padding: 30px;
    background: transparent;
    /* Lớp nền nhẹ cho nội dung */
    border-radius: 15px;
}

.about_box h3 {
    display: inline-block;
    position: relative;
    /* Thêm dòng này */
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #003087;
    /* Vàng cho tiêu đề */
    margin-bottom: 20px;
}

.about_box h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    /* Đặt dưới dòng chữ */
    left: 15%;
    /* canh giữa gạch với text */
    width: 60%;
    /* Hoặc 50% nếu muốn ngắn hơn */
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.about_box p {
    margin-top: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 450;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.title-section-about {
    height: 80vh;
    /* Chiều cao toàn màn hình */
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title-section-about .title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(100%);
}

.title-section-about .title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgb(0, 7, 39) 0%,
            rgb(0, 7, 39) 20%,
            rgb(0, 7, 39) 30%,
            rgba(0, 7, 39, 0.692) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 100%);
    /* phủ nhẹ nhưng hiệu quả */
    /* Overlay xanh dương đậm làm tối */
    z-index: 1;
}

.title-section-about .title-content {
    position: relative;
    z-index: 2;
    /* Nội dung nổi trên overlay */
    color: #ffffff;
    /* Chữ trắng */
    padding: 20px 0;
}

.title-section-about .title-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    padding-bottom: 0;
}

.title-content ol.list-roles {
    padding-left: 20px;
    list-style: decimal !important;
    display: block !important;
    margin-top: 10px;
    color: #ffffff;
}

.title-content ol.list-roles li {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    display: list-item !important;
    /* rất quan trọng */
    line-height: 1.6;
    margin-bottom: 8px;
}

.title-content ol.list-roles li::marker {
    color: #ffffff;
    font-weight: bold;
}

.title-section-about .title-content h2 strong {
    color: #ffffff;
    text-transform: uppercase;
}

.title-section-about .title-content p {
    font-size: 1.2rem;
    text-align: justify;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 10px;
}

.title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    /* một nửa chiều rộng của h2 */
    height: 3px;
    /* độ dày gạch */
    background-color: #FFD700;
    /* màu vàng */
    border-radius: 2px;
}

.push-block {
    margin-top: 30vh;
}

.push-block-2 {
    height: 15vh;
}

.whyschose {
    margin-top: 40px;
    background: transparent;
}

.title h2 {
    color: #053574 !important;
    font-size: 45px !important;
    font-weight: 700;
}

.core-value {
    background-color: transparent;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.core-value-list {
    list-style: none;
    padding: 0;
    gap: 30px;
}

.core-value-item {
    flex: 1;
    /* Các item mở rộng đều nhau */
    min-width: 200px;
    /* Kích thước tối thiểu */
    max-width: 360px;
    /* Kích thước tối đa */
    height: auto;
    /* Chiều cao tự động */
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px;
    /* Khoảng cách giữa các item */
}

.core-value-item i {
    font-size: 2.5rem;
    color: #003087;
    /* Xanh dương đậm */
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.core-value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #003087;
    /* Xanh dương đậm */
    margin: 0;
    transition: color 0.3s ease;
}

.core-value-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 48, 135, 0.2);
    background: #d4a017;
    transform: scale(1.05);
    cursor: pointer;
    /* Vàng khi hover */
}

.core-value-item:hover i {
    color: #ffffff;
    /* Chữ trắng khi hover */
    transform: rotate(15deg) scale(1.2);
}

.core-value-item:hover h3 {
    color: #ffffff;
    /* Chữ trắng khi hover */
}

.end-title {
    color: #053574 !important;
    font-size: 1.5rem;
    width: 60%;
    font-weight: 450;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 3rem;
    /* Tăng kích thước dấu " */
    color: #f7c744;
    /* Màu vàng đậm (giống vàng ánh kim) */
    font-weight: bold;
}


/* Tùy chỉnh cột 1/7 */
.col-1-7 {
    width: 14.2857%;
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
}

/* Nền trắng, không border, không gap */
.partner-section {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}

/* Hộp logo */
.logo-box {
    background-color: #ffffff;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Khoảng cách ảnh với khung */
}

/* Ảnh logo fit với khung */
.logo-box img {
    max-height: 80px; /* Giới hạn chiều cao ảnh để đồng đều */
    max-width: 100%;
    object-fit: contain;
}

.footer-notice {
    text-align: center;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 500;
    color: #666666;
    margin-top: 50px;
}

/* Mobile */
@media (max-width: 576px) {
    .title-section-about .title-content h2 {
        font-size: 1rem;
    }

    .title-section-about .title-content p {
        font-size: 0.6rem;
    }

    .title-content ol.list-roles li {
        font-size: 0.6rem;
    }

    .push-block {
        margin-top: 2vh;
    }

    .about_box h3 {
        font-size: 1.7rem;
    }

    .about_box p {
        font-size: 1rem;
    }

    .about_box {
        padding-bottom: 0;
    }

    .container-fluid-about {
        padding-bottom: 0;
        display: none;
    }

    .end-title {
        margin-top: 20px;
        width: 90%;
        font-size: 0.6rem;
    }

    .quote-mark {
        font-size: 0.7rem;
    }

    .title h2 {
        font-size: 1.6rem !important;
    }

    .title {
        padding-bottom: 0;
    }

    .core-value-item i {
        font-size: 1.5rem;
    }

    .core-value-item h3 {
        font-size: 0.8rem;
    }

    .core-value-item {
        min-width: 150px;
        max-width: 300px;
    }

    .hidden {
        display: none;
    }

    .col-1-7 {
        width: 33.3333%;
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .logo-box {
        height: 110px; /* tăng nhẹ nếu muốn dễ nhìn hơn */
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 1280px) {
    .title-section-about .title-content h2 {
        font-size: 1.7rem;
    }

    .title-section-about .title-content p {
        font-size: 1rem;
    }

    .title-content ol.list-roles li {
        font-size: 1rem;
    }

    .push-block {
        margin-top: 2vh;
    }

    .about_box h3 {
        font-size: 1.7rem;
    }

    .about_box p {
        font-size: 1rem;
    }

    .about_box {
        padding-bottom: 0;
    }

    .container-fluid-about {
        padding-bottom: 0;
    }

    .end-title {
        font-size: 1rem;
    }

    .quote-mark {
        font-size: 1rem;
    }

    .title h2 {
        font-size: 1.6rem !important;
    }

    .title {
        padding-bottom: 0;
    }

    .core-value-item i {
        font-size: 1.5rem;
    }

    .core-value-item h3 {
        font-size: 0.8rem;
    }

    .core-value-item {
        min-width: 150px;
        max-width: 300px;
    }
}

/* Laptop */
@media (min-width: 1281px) and (max-width: 1750px) {
    .title-section-about .title-content h2 {
        font-size: 1.7rem;
    }

    .title-section-about .title-content p {
        font-size: 1rem;
    }

    .title-content ol.list-roles li {
        font-size: 1rem;
    }

    .push-block {
        margin-top: 2vh;
    }

    .about_box h3 {
        font-size: 1.7rem;
    }

    .about_box p {
        font-size: 1rem;
    }

    .about_box {
        padding-bottom: 0;
    }

    .container-fluid-about {
        padding-bottom: 0;
    }

    .end-title {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 1.5rem;
    }

    .title h2 {
        font-size: 2rem !important;
    }

    .title {
        padding-bottom: 0;
    }

    .core-value-item i {
        font-size: 1.9rem;
    }

    .core-value-item h3 {
        font-size: 1.3rem;
    }
}