/* ─── Reset & Base ───────────────────────────────── */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    background: #fff;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* .adm-glyphicon span {
    background: url('./img/setting.png');
    background-size: cover;
    width: 12px;
    height: 12px;
    display: block;
} */

/* ─── Heading helpers ────────────────────────────── */
.sh {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    margin: 0 0 8px;
}

.sh-center {
    text-align: center;
}

.sh-white {
    color: #fff;
}

.sh-line {
    width: 48px;
    height: 3px;
    background: #16AC51;
    margin: 10px 0 22px;
    display: block;
}

.sh-line-center {
    margin: 10px auto 22px;
}

.sh-line-orange {
    background: #E76221;
}

/* ─── TOP BAR ────────────────────────────────────── */
.top-bar {
    background: #16AC51;
    padding: 7px 0;
}

.top-bar__item {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar__item i {
    font-size: 13px;
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

/* ─── MAIN NAV ───────────────────────────────────── */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header .navbar {
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    min-height: 68px;
}

.site-header .navbar-brand {
    padding: 10px 0;
    height: 68px;
    display: flex;
    align-items: center;
}

.site-header .navbar-brand img {
    height: 46px;
    width: auto;
}

.site-header .navbar-nav>li>a {
    color: #16AC51;
    font-size: 13px;
    font-weight: 700;
    padding: 24px 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.site-header .navbar-nav>li>a:hover,
.site-header .navbar-nav>li.active>a {
    color: #E76221;
    background: transparent;
}

.site-header .dropdown-menu {
    border-radius: 0;
    border-top: 2px solid #16AC51;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 5px 0;
}

.site-header .dropdown-menu>li>a {
    font-size: 13px;
    color: #333;
    padding: 8px 16px;
}

.site-header .dropdown-menu>li>a:hover {
    color: #16AC51;
    background: #f7f7f7;
}

.site-header .navbar-toggle {
    margin-top: 17px;
    border-color: #16AC51;
}

.site-header .navbar-toggle .icon-bar {
    background: #16AC51;
}

/* Nav hotline pill (right) */
.nav-hotline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 16px 20px;
}

.nav-hotline__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #16AC51;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.nav-hotline__info {
    line-height: 1.25;
}

.nav-hotline__label {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.nav-hotline__number {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    display: block;
}

@media (min-width: 768px) {
    .site-header .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .site-header .navbar-nav>li>a {
        padding: 10px 15px;
    }

    .nav-hotline {
        display: none;
    }
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    background: #16AC51;
    overflow: hidden;
}

.hero__slide {
    padding: 60px 0 50px;
}

.hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.hero__title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 26px;
    padding-top: 30px;
}

.hero__cta {
    display: inline-block;
    background: #E76221;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 34px;
    border-radius: 4px;
    transition: background .2s;
}

.hero__cta:hover {
    background: #c9511a;
}

/* stat badges */
.hero__stats {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__stat-num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.3;
}

/* right image */
.hero__img-wrap {
    text-align: right;
}

.hero__img-wrap img {
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px 0 0 8px;
}

@media (max-width: 991px) {
    .hero__title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .hero__title {
        font-size: 22px;
    }

    .hero__img-wrap {
        text-align: center;
        margin-top: 28px;
    }

    .hero__img-wrap img {
        border-radius: 8px;
    }
}

/* Owl for hero */
.hero .owl-theme .owl-dots {
    margin-top: 20px;
}

.hero .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.4) !important;
}

.hero .owl-theme .owl-dots .owl-dot.active span {
    background: #fff !important;
}

.hero .owl-theme .owl-nav [class*='owl-'] {
    background: transparent !important;
    color: #fff !important;
}

.hero .owl-theme .owl-nav [class*='owl-'] i {
    transition: all .2s linear;
}

.hero .owl-theme .owl-nav [class*='owl-']:hover i {
    /* background: rgba(255, 255, 255, 0.4) !important; */
    /* filter: invert(1); */
    color: #000;
}

/* ─── FEATURE CARDS ──────────────────────────────── */
.features {
    padding: 0;
    background: #fff;
    padding-top: 65px;
}

.features .owl-item {
    padding: 0;
}

.feat-card-box {
    /* display: flex; */
    align-items: center;
    position: relative;
    padding-left: 60px;
}

.feat-card {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.feat-card--white {
    background: #fff;
    border: 10px solid #16AC51;
}

.feat-card--green {
    background: #ffffff;
}

.feat-card--green img {
    position: relative;
    z-index: 10;
}

.feat-card--green::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid #b6b6b6;
    border-radius: 50%;
    z-index: 1;
}

.feat-card--green::before {
    content: "";
    position: absolute;
    left: 0;
    width: calc(100% - 50px);
    height: 100%;
    z-index: 6;
    background-color: #fff;
    top: 0;
}

.feat-card__icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.feat-card__body {
    padding-left: 16px;
    height: 145px;
    border: 1px solid #16AC51;
    border-radius: 10px;
    padding: 30px 20px 20px 70px;
}

.feat-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #222;
}

.feat-card--green .feat-card__title {
    color: #fff;
}

.feat-card__desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.feat-card--green .feat-card__desc {
    color: rgba(255, 255, 255, 0.88);
}

/* ─── VỀ CHÚNG TÔI ───────────────────────────────── */
.about {
    padding: 65px 0;
    background: #fff;
}

/* staggered images */
.about-imgs {
    position: relative;
    padding-bottom: 30px;
}

.about-imgs__round {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.about-imgs__square {
    width: 375px;
    height: 230px;
    object-fit: cover;
    display: block;
    margin-top: -55px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 10px;
}

/* text side */
.about__label {
    font-size: 13px;
    font-weight: 700;
    color: #16AC51;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.about__heading {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.about__text {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 24px;
}

/* sub-icons 2-col grid */
.about-icon {
    padding-right: 10px;
    margin-bottom: 18px;
}

.about-icon__img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-icon__title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0 0 3px;
}

.about-icon__desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* hotline bar */
.about-hotline {
    background: #E76221;
    padding: 14px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.about-hotline i {
    color: #fff;
    font-size: 22px;
}

.about-hotline__lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    letter-spacing: 0.5px;
}

.about-hotline__num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: block;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .about-imgs {
        padding-bottom: 0;
        margin-bottom: 32px;
    }

    .about-imgs__round {
        margin: 0 auto;
    }

    .about-imgs__square {
        margin: 16px auto 0;
    }
}

/* ─── VÌ SAO NÊN CHỌN ────────────────────────────── */
.why-choose {
    padding: 65px 0;
    position: relative;
    background: url('https://maisanvinhouse.com/wp-content/uploads/2024/11/bg-2.jpg') center/cover no-repeat fixed;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.why-choose .wrap {
    position: relative;
    z-index: 1;
}

.why-card {
    background: #fff;
    overflow: hidden;
    margin: 5px;
}

.why-card__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.why-card__body {
    padding: 18px 16px 20px;
}

.why-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.why-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

.why-choose .owl-item {
    padding: 5px;
}

/* ─── 3 DỊCH VỤ CHÍNH ────────────────────────────── */
.services-main {
    padding: 65px 0;
    position: relative;
    background: #f1f1f1;
    background-image: url('https://maisanvinhouse.com/wp-content/uploads/2024/08/357da760b0.jpg');
    background-size: cover;
    background-blend-mode: multiply;
}

.svc-card {
    background: #16AC51;
    padding: 35px 24px;
    text-align: center;
    height: 100%;
}

.svc-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
}

.svc-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.svc-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .svc-card {
        margin-bottom: 20px;
    }
}

/* ─── QUY TRÌNH 3 BƯỚC ───────────────────────────── */
.process {
    padding: 65px 0;
    background: #fff;
}

.proc-card {
    text-align: center;
    padding: 15px 10px;
}

.proc-card__num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #16AC51;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.proc-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.4;
}

.proc-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ─── CHÚNG TÔI NỖ LỰC ──────────────────────────── */
.achievements {
    padding: 65px 0;
    background: #fff;
}

.ach__title {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin: 0 0 6px;
}

.ach__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 28px;
}

/* progress bars */
.prog-item {
    margin-bottom: 22px;
}

.prog-item__head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 7px;
}

.prog-item__pct {
    color: #E76221;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: #eee;
    box-shadow: none;
    margin-bottom: 0;
}

.prog-bar {
    background: #E76221;
    border-radius: 4px;
    height: 8px;
}

/* right col */
.exp-box {
    background: #16AC51;
    color: #fff;
    padding: 18px 22px;
    text-align: center;
    margin-bottom: 18px;
}

.exp-box__num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.exp-box__lbl {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.ach-sq {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
}

.ach-rd {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-top: -30px;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .ach-right {
        margin-top: 32px;
    }
}

/* ─── CON SỐ ẤN TƯỢNG ───────────────────────────── */
.counter-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.cnt-item {
    text-align: center;
    padding: 20px 10px;
}

.cnt-item__num {
    font-size: 46px;
    font-weight: 800;
    color: #16AC51;
    line-height: 1;
}

.cnt-item__sfx {
    font-size: 30px;
    font-weight: 800;
    color: #E76221;
}

.cnt-item__lbl {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .cnt-item {
        border-bottom: 1px solid #eee;
        padding: 18px 5px;
    }
}

/* ─── LIÊN HỆ ────────────────────────────────────── */
.contact-section {
    padding: 65px 0;
    background: #fff;
}

.con-img-rd {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: absolute;
    right: 30px;
    top: 0;
    z-index: 2;
}

.con-img-sm {
    width: 210px;
    max-height: 150px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 200px;
    z-index: 2;
    right: 0;
    border-radius: 10px;
}

.con-img-lg {
    width: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 20px;
}

.con-hotline {
    background: #E76221;
    padding: 14px 20px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.con-hotline i {
    color: #fff;
    font-size: 22px;
}

.con-hotline__lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.con-hotline__num {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    display: block;
}

/* form side */
.con-form__title {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.con-form__line {
    width: 48px;
    height: 3px;
    background: #16AC51;
    margin-bottom: 22px;
}

.con-form .form-control {
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    height: 46px;
    padding: 8px 14px;
}

.con-form textarea.form-control {
    height: 120px;
    resize: vertical;
}

.con-form .form-control:focus {
    border-color: #16AC51;
    box-shadow: 0 0 0 2px rgba(22, 172, 81, 0.12);
}

.btn-send {
    width: 100%;
    background: #16AC51;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}

.btn-send:hover {
    background: #118a3f;
}

@media (max-width: 767px) {
    .contact-images {
        margin-bottom: 30px;
    }
}

/* ─── NHẬN XÉT KHÁCH HÀNG ───────────────────────── */
.testimonials {
    padding: 65px 0;
    position: relative;
    background: url('https://maisanvinhouse.com/wp-content/uploads/2024/07/person-cleaning-the-room-cleaning-staff-is-using-2023-02-13-17-26-22-utc.jpg') center/cover no-repeat;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 172, 81, 0.88);
}

.testimonials .wrap {
    position: relative;
    z-index: 1;
}

.testi-box {
    background: #fff;
    padding: 26px 22px;
    margin: 5px;
}

.testi-box__stars {
    color: #E76221;
    margin-bottom: 12px;
    font-size: 14px;
}

.testi-box__text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testi-box__sep {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 14px;
}

.testi-box__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8f7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16AC51;
    font-size: 20px;
    flex-shrink: 0;
}

.testi-box__name {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.testi-box__role {
    font-size: 12px;
    color: #999;
    margin: 2px 0 0;
}

.testimonials .owl-item {
    padding: 5px;
}

/* ─── ẢNH THỰC TẾ ────────────────────────────────── */
.gallery {
    padding: 50px 0;
    background: #fff;
}

.gallery .owl-item img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
    padding: 4px;
}

/* ─── TIN TỨC ────────────────────────────────────── */
.news {
    padding: 50px 0;
    background: #fff;
}

.news-card {
    border: 1px solid #eee;
    overflow: hidden;
    margin: 5px;
}

.news-card__img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
}

.news-card__body {
    padding: 16px 14px 18px;
}

.news-card__meta {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

.news-card__meta i {
    margin-right: 4px;
}

.news-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.5;
    margin: 0 0 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card__title a:hover {
    color: #16AC51;
}

.news-card__desc {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news .owl-item {
    padding: 5px;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
    padding: 52px 0 28px;
    position: relative;
    background: url('https://maisanvinhouse.com/wp-content/uploads/2024/08/fcfae8aaee.jpg') center/cover no-repeat;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 172, 81, 0.93);
}

.site-footer .wrap {
    position: relative;
    z-index: 1;
}

.ft-logo {
    margin-bottom: 14px;
}

.ft-logo img {
    height: 48px;
    filter: brightness(0) invert(1);
}

.ft-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.ft-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin: 0 0 16px;
}

.ft-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.ft-contact-row i {
    color: #fff;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.ft-contact-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

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

.ft-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ft-links li a::before {
    content: '›';
    font-size: 16px;
    color: #fff;
}

.ft-links li a:hover {
    color: #fff;
}

.ft-fan a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.ft-fan a i {
    font-size: 20px;
}

.ft-fan a:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 767px) {
    .ft-col {
        margin-bottom: 28px;
    }
}

/* ─── COPYRIGHT ──────────────────────────────────── */
.copyright {
    background: rgba(0, 0, 0, 0.55);
    padding: 12px 0;
}

.copyright p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin: 0;
    text-align: center;
}

/* ─── Owl overrides ──────────────────────────────── */
.owl-theme .owl-dots .owl-dot span {
    background: #ccc !important;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #16AC51 !important;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: transparent !important;
    color: #000;
    border-radius: 3px;
    font-size: 16px;
    padding: 4px 11px !important;
    text-align: center;
}

.owl-theme .owl-nav [class*='owl-'] i {
    transition: all .2s linear;
}

.owl-theme .owl-nav [class*='owl-']:hover i {
    /* background: #16AC51 !important; */
    color: #118a3f;
}

.owl-nav {
    text-align: center;
}

.owl-nav button {
    margin: 6px;
}

.banner-video {
    position: relative;
}

.banner-video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.1;
    z-index: 2;
}

.banner-video .video-thumb {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.bvideo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all .2s linear;
}

.click-link {
    display: block;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup .backdropp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    cursor: pointer;
    z-index: 2;
}

.video-popup .video-popup-in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 96%;
    height: 500px;
    border-radius: 20px;
    max-height: 90%;
    background-color: #fff;
    z-index: 3;
    padding: 20px;
}

.video-popup .video-popup-in iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.contact-images {
    position: relative;
    padding-top: 30px;
}

.feat-card__body--green {
    background-color: #118a3f;
}

.feat-card__body--green .feat-card__desc,
.feat-card__body--green .feat-card__title {
    color: #fff;
}

/* page  */
/* ========== BREADCRUMB SECTION ========== */
.page-breadcrumb-section {
    /* background: #1a2740; */
    padding: 94px 0;
    text-align: center;
    background: #16AC51;
}

.page-breadcrumb-section .breadcrumb {
    background: transparent;
    margin-bottom: 10px;
    padding: 0;
    display: block;
}

.page-breadcrumb-section .breadcrumb li,
.page-breadcrumb-section .breadcrumb li a {
    color: #fff;
    font-size: 15px;
}

.page-breadcrumb-section .breadcrumb>.active {
    /* color: #e6b800; */
    color: #fff;
}

.page-breadcrumb-section .breadcrumb li+li:before {
    color: #aab;
}

.page-breadcrumb-section h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.page-breadcrumb-section h1:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ========== ABOUT SECTION ========== */
.page-about-section {
    padding: 140px 0 60px;
    background: #fff;
}

.page-about-section .page-about-section-img {
    height: 544px;
    width: 100%;
    background-attachment: fixed;
    margin-bottom: 70px;
    border-radius: 10px;
}

.page-about-section .section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a2740;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-about-section .section-divider {
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 0 auto 35px;
    border-radius: 2px;
}

.page-about-section .about-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 22px;
    max-height: 320px;
    object-fit: cover;
}

.page-about-section .about-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    width: 92%;
    margin: 0 auto;
}

/* ========== VISION SECTION ========== */
.page-vision-section {
    background: #1a2740;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-vision-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.7);
    z-index: 0;
}

.page-vision-section .wrap {
    position: relative;
    z-index: 1;
}

.page-vision-section .section-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-vision-section .section-sub {
    color: #aab;
    font-size: 14px;
    text-align: center;
    margin-bottom: 36px;
}

.page-vision-section .section-divider {
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 0 auto 14px;
    border-radius: 2px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 24px 20px;
    margin-bottom: 20px;
    color: #fff;
}

.vision-card .icon-wrap {
    width: 44px;
    height: 44px;
    border: 2px solid #e6b800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.vision-card .icon-wrap .fa {
    color: #e6b800;
    font-size: 18px;
}

.vision-card h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e6b800;
    margin-bottom: 8px;
}

.vision-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
}

.vision-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* ========== CRITERIA SECTION ========== */
.page-criteria-section {
    background: #fff;
    padding: 60px 0;
}

.page-criteria-section .section-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #1a2740;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-criteria-section .section-divider {
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 0 auto 14px;
    border-radius: 2px;
}

.page-criteria-section .section-sub {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
}

.criteria-item {
    text-align: center;
    padding: 10px 10px 24px;
}

.criteria-item .num {
    font-size: 52px;
    font-weight: 700;
    color: #1a2740;
    line-height: 1;
    margin-bottom: 10px;
}

.criteria-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a2740;
    margin-bottom: 10px;
}

.criteria-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
}

.criteria-item .highlight {
    color: #e6b800;
    font-weight: 600;
}

/* ========== CONTACT SECTION ========== */
.page-contact-section {
    background: #f5f7fa;
    padding: 50px 0;
    text-align: center;
}

.page-contact-section .label-top {
    font-size: 12px;
    color: #e6b800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-contact-section .section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2740;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.page-contact-section .section-divider {
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 0 auto 14px;
    border-radius: 2px;
}

.page-contact-section .section-sub {
    color: #888;
    font-size: 14px;
    margin-bottom: 28px;
}

.contact-form-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form-wrap .input-group input[type="email"] {
    border-radius: 30px 0 0 30px !important;
    height: 44px;
    padding-left: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-form-wrap .input-group .input-group-btn button {
    background: #e6b800;
    border: none;
    border-radius: 0 30px 30px 0 !important;
    height: 44px;
    padding: 0 22px;
    color: #1a2740;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.contact-form-wrap .fa-envelope {
    margin-right: 6px;
}

/* ========== COMMUNITY SECTION ========== */
.page-community-section {
    background: #fff;
    padding: 60px 0;
}

.page-community-section .section-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #1a2740;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-community-section .section-divider {
    width: 40px;
    height: 3px;
    background: #e6b800;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.community-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 36px;
}

.community-item .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.community-item .icon-box .fa {
    font-size: 20px;
    color: #1a2740;
}

.community-item h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a2740;
    margin-bottom: 6px;
}

.community-item p {
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    margin: 0;
}

/* ========== FOOTER ========== */
.page-footer {
    background: #1a2740;
    color: #aab;
    padding: 44px 0 20px;
}

.page-footer .logo-footer span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.page-footer p {
    font-size: 13px;
    line-height: 1.9;
    margin-top: 10px;
}

.page-footer h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.page-footer ul {
    list-style: none;
    padding: 0;
}

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

.page-footer ul li a {
    color: #aab;
    font-size: 13px;
    text-decoration: none;
}

.page-footer ul li a:hover {
    color: #e6b800;
}

.page-footer .footer-contact li {
    font-size: 13px;
    margin-bottom: 8px;
}

.page-footer .footer-contact .fa {
    color: #e6b800;
    margin-right: 7px;
    width: 14px;
}

.page-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
}

.page-footer .fanpage-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 12px;
}

.page-footer .fanpage-box .fa-facebook-square {
    font-size: 18px;
    color: #4267B2;
    margin-right: 7px;
}

/* utility */
/* .wrap {
    width: 100%;
} */

.divider-yellow {
    width: 40px;
    height: 3px;
    background: #e6b800;
    border-radius: 2px;
    margin: 0 auto 8px;
}

@media(max-width:767px) {
    .page-header-main .hotline {
        text-align: left;
        margin-top: 10px;
    }

    .page-navbar .navbar-nav {
        background: #16213a;
    }
}

/* page end */

@media (max-width: 767px) {
    .video-popup .video-popup-in {
        height: 360px;
        border-radius: 12px;
        padding: 12px;
    }
}