.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 🔥 avatar ảnh */
.avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* bo tròn */
    object-fit: cover;
    border: 2px solid #0d6efd;
}

.review-user span {
    font-size: 13px;
    color: #888;
}

.quote {
    font-size: 50px;
    color: #0d6efd;
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.08;
}

.footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    color: #333;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.footer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0d6efd;
}

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

.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.footer-contact i {
    margin-right: 8px;
    color: #0d6efd;
}

/* social */
.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #f1f3f5;
    color: #333;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0d6efd;
    color: #fff;
}

/* newsletter */
.newsletter {
    display: flex;
}

.newsletter input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 6px 0 0 6px;
}

.newsletter button {
    background: #0d6efd;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
}

/* bottom */
.footer-bottom {
    background: #f8f9fa;
    padding: 12px;
    font-size: 13px;
    color: #777;
}
/*css bv*/
/* card */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* image */
.blog-image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

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

/* badge */
.badge-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(13,110,253,0.9);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* content */
.blog-content {
    padding: 15px;
}

/* meta */
.blog-meta {
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* title */
.blog-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 10px;

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

    transition: 0.3s;
}

.blog-title-link:hover .blog-title {
    color: #0d6efd;
}

/* bottom */
.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
}

/* read more */
.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/*css cáoe*/
/* banner */
.banner-carousel {
    padding: 60px 0;
}

/* content */
.banner-content {
    max-width: 520px;
}

/* title */
.banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.banner-title span {
    color: #0d6efd;
}

/* desc */
.banner-desc {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

/* buttons */
.banner-btn {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-main {
    background: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #0b5ed7;
}

.btn-outline {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #0d6efd;
    color: #fff;
}

/* image */
.banner-image img {
    max-width: 100%;
    height: auto;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .banner-carousel {
        padding: 30px 0;
    }

    .banner-title {
        font-size: 26px;
        text-align: center;
    }

    .banner-desc {
        text-align: center;
        font-size: 14px;
    }

    .banner-btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-content {
        text-align: center;
        margin-top: 15px;
    }

    .banner-image img {
        max-width: 85%;
    }
}
/*input*/

/* header */
.blog-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.blog-heading {
    font-weight: 700;
    margin-bottom: 5px;
}

.blog-sub {
    font-size: 14px;
    color: #666;
}

/* search */
.search-box {
    display: flex;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 42px;
    border-radius: 30px;
    border: 1px solid #ddd;
    padding: 0 110px 0 15px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.search-box button {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 34px;
    border: none;
    border-radius: 20px;
    padding: 0 18px;
    background: #0d6efd;
    color: #fff;
    font-weight: 500;
}

.search-box button:hover {
    background: #0b5ed7;
}

/* mobile */
@media (max-width: 768px) {
    .blog-heading {
        font-size: 18px;
        text-align: center;
    }

    .blog-sub {
        text-align: center;
    }

    .search-box {
        margin-top: 10px;
    }
}
/*//giới thiệu*/
.leader-item {
    padding: 25px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
    height: 100%; /* 🔥 QUAN TRỌNG: tất cả card cao bằng nhau */
}

.leader-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}


.leader-img {
    width: 160px;   /* 🔥 to rõ luôn */
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;

    display: block;
    margin: 0 auto 20px;

    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* 🔥 nổi khối */
    transition: all 0.3s ease;
}

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

.leader-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
    min-height: 48px; /* 🔥 fix lệch tên dài/ngắn */
}

.leader-role {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 45px; /* 🔥 fix lệch chức danh */
}

.leader-item small {
    display: block;
    min-height: 60px; /* 🔥 fix lệch mô tả */
}


.footer-contact li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    width: 20px;
    color: #0d6efd;
    margin-right: 8px;
}


/*//logo*/
.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}


.logo-img {
    height: 120px;      /* 🔥 tăng từ 60 → 75 */
    width: auto;
    object-fit: contain;

    transition: all 0.3s ease;
}

.navbar {
    padding-top: 10px;
    padding-bottom: 10px; /* 🔥 tăng chiều cao navbar */
}

.logo-img:hover {
    transform: scale(1.05);
}

/*//qr*/
.qr-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}

.footer-qr p {
    font-size: 13px;
    margin-top: 5px;
    color: #ccc;
}
/*zalo*/
/* Nút Zalo */
/*.zalo-float {*/
/*    position: fixed;*/
/*    bottom: 90px;*/
/*    right: 20px;*/
/*    z-index: 9999;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border-radius: 50%;*/
/*    background: #0084ff;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
/*    animation: zaloPulse 1.5s infinite;*/
/*}*/

/*!* Icon *!*/
/*.zalo-float img {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*}*/


/*!* Hiệu ứng nhảy *!*/
/*@keyframes zaloPulse {*/
/*    0% {*/
/*        transform: scale(1);*/
/*        box-shadow: 0 0 0 0 rgba(0,132,255, 0.7);*/
/*    }*/
/*    70% {*/
/*        transform: scale(1.1);*/
/*        box-shadow: 0 0 0 15px rgba(0,132,255, 0);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1);*/
/*    }*/
/*}*/

/*!* Hover *!*/
/*.zalo-float:hover {*/
/*    transform: scale(1.15);*/
/*}*/
/*.zalo-float::after {*/
/*    content: "Chat Zalo";*/
/*    position: absolute;*/
/*    right: 70px;*/
/*    background: #0084ff;*/
/*    color: #fff;*/
/*    padding: 6px 10px;*/
/*    border-radius: 6px;*/
/*    font-size: 13px;*/
/*    white-space: nowrap;*/
/*}*/
/* container */
.floating-contact {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* nút chung */
.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse 1.5s infinite;
    text-decoration: none;
}

/* từng nút */
.contact-btn.zalo {
    background: #0084ff;
}

.contact-btn.phone {
    background: #ff003e;
}

.contact-btn.messenger {
    background: #0078ff;
}

/* icon zalo */
.contact-btn img {
    width: 28px;
    height: 28px;
}

/* hiệu ứng */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(0,0,0,0);
    }
    100% {
        transform: scale(1);
    }
}

/* hover */
.contact-btn:hover {
    transform: scale(1.15);
}
.contact-btn::after {
    content: attr(data-title);
    position: absolute;
    right: 65px;
    background: #333;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.contact-btn:hover::after {
    opacity: 1;
}
.scroll-top {
    background: #333;
    display: none; /* 👈 ẩn ban đầu */
}
/*//chỉnh logo có chữ*/

.logo-wrap {
    gap: 10px;
}

.logo-text {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .logo-img {
        height: 82px;
    }

    .brand-name {
        font-size: 18px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;

        /* Gradient theo màu logo */
        background: linear-gradient(45deg, #f57c00, #d84315);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    @font-face {
        font-family: 'UTM Davida';
        src: url('/template/home/font/UTM Davida.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    .brand-name {
        font-family: 'UTM Davida', cursive;
    }
    .brand-sub {
        font-family: 'UTM Davida', cursive;
    }

    .brand-sub {
        font-size: 12px;
        color: #6b6b6b;
        font-weight: 400;
    }
}
/*//giới thiệu*/

.about-section {
    background: #f9fbfd;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.about-title span {
    color: #f57c00;
}

.about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.about-box {
    background: #fff;
    border-left: 4px solid #f57c00;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 8px;
}

.about-box ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.about-box li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.about-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/*ảnh giới thiệu ban gd*/
/* giảm khoảng cách row */

.leader-row .col-md-3,
.leader-row .col-6 {
    padding-left: 6px;
    padding-right: 6px;
}

/* giảm khoảng cách giữa các cột */
.leader-row .col-md-4 {
    padding: 8px;
}

/* card */
.leader-item {
    background: #fff;
    padding: 18px 12px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}

/* hover nhẹ */
.leader-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ảnh */
.leader-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #f57c00;
}
/*từ đây*/
/* tên */
.leader-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* chức vụ */
.leader-role {
    font-size: 13px;
    color: #f57c00;
    margin-bottom: 5px;
}

/* mô tả */
.leader-item small {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* mobile gọn hơn */
@media (max-width: 768px) {
    .leader-img {
        width: 70px;
        height: 70px;
    }

    .leader-item {
        padding: 12px 8px;
    }
}
@media (max-width: 768px) {

    /* giảm khoảng cách ảnh -> danh sách */
    .leader-row {
        margin-top: 0 !important;
    }

    /* giảm padding giữa các cột */
    .leader-row .col-6 {
        padding: 5px !important;
    }

    /* card gọn lại */
    .leader-item {
        padding: 10px 6px;
        border-radius: 10px;
    }

    /* giảm khoảng cách giữa ảnh và tên */
    .leader-img {
        margin-bottom: 6px;
    }

    /* tên sát hơn */
    .leader-item h5 {
        margin-bottom: 2px;
        font-size: 14px;
    }

    /* chức vụ sát hơn */
    .leader-role {
        margin-bottom: 3px;
        font-size: 12px;
    }

    /* text nhỏ lại */
    .leader-item small {
        font-size: 11px;
        line-height: 1.4;
    }
}
.contact-section {
    margin-top: 40px;
}

/* box tổng */
.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* tiêu đề */
.contact-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

/* mô tả */
.contact-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* từng dòng */
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

/* icon */
.contact-item i {
    font-size: 18px;
    color: #f57c00;
    margin-top: 3px;
}

/* text */
.contact-item strong {
    font-size: 14px;
    color: #333;
}

.contact-item p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}

/* mobile gọn lại */
@media (max-width: 768px) {
    .contact-box {
        padding: 15px;
    }

    .contact-item {
        gap: 8px;
        margin-bottom: 10px;
    }

    .contact-item i {
        font-size: 16px;
    }
}
.footer-social {
    display: flex;
    gap: 12px;
}

/* chung */
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FACEBOOK */
.footer-social .fb {
    background: linear-gradient(45deg, #1877f2, #4facfe);
}

/* PHONE (cam thương hiệu) */
.footer-social .phone {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
}

/* MAIL */
.footer-social .mail {
    background: linear-gradient(45deg, #ea4335, #ff6a6a);
}

/* ZALO */
.footer-social .zalo {
    background: linear-gradient(45deg, #0088ff, #00c6ff);
}

.footer-social .zalo img {
    width: 20px;
    height: 20px;
}

/* hover nổi + glow */
.footer-social a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* hiệu ứng ánh sáng chạy */
.footer-social a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0;
}

.footer-social a:hover::before {
    animation: shine 0.8s;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(25deg); opacity: 1; }
    100% { transform: translateX(100%) rotate(25deg); opacity: 0; }
}

.tour-menu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* item */
.tour-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.tour-item i {
    font-size: 20px;
}

/* màu */
.pink { background: #e95b87; }
.blue { background: #4b5bdc; }
.yellow { background: #f4a100; }
.cyan { background: #18a0c9; }
.gray { background: #555; }

/* hover */
.tour-item:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .tour-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .tour-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border-radius: 0;
        padding: 20px 10px;
    }

    .tour-item i {
        font-size: 26px;
        margin-bottom: 5px;
    }
}
/*.tour-section {*/
/*    margin-top: -60px; !* kéo lên đè banner *!*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

.tour-menu {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/*.navbar-brand {*/
/*    background: rgba(255,0,0,0.2);*/
/*}*/


.navbar {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}


.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #f57c00;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background: #f57c00;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}
/*slider*/

.banner-carousel {
    padding: 20px 0; /* giảm từ 60px xuống */
}

.banner-content {
    max-width: 480px; /* gọn text lại */
}

.banner-title {
    font-size: 32px; /* nhỏ lại chút cho gọn */
    margin-bottom: 10px;
}

.banner-desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-btn {
    margin-top: 10px;
}

.banner-image img {
    max-width: 90%;
}
@media (max-width: 768px) {
    .banner-carousel {
        padding: 10px 0;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-desc {
        font-size: 13px;
    }

    .banner-image img {
        max-width: 75%;
    }
}
.banner-carousel .item {
    height: 360px;   /* 👈 fix cứng */
    overflow: hidden;
    display: flex;
    align-items: center;
}.banner-carousel .row {
     height: 100%;
     align-items: center;
 }.banner-image img {
      max-height: 260px;   /* 👈 QUAN TRỌNG */
      width: auto;
  }
.partner-section {
    background: #f8f9fa;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
}

.partner-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
.blog-image {
    width: 100%;
    height: 220px; /* chỉnh theo layout bạn muốn */
    overflow: hidden;
    border-radius: 10px; /* optional */
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* QUAN TRỌNG */
}