/* Import Google Fonts */
@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&family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Override Bootstrap font */
:root {
    --bs-font-sans-serif: 'Roboto', sans-serif !important;
    --bs-body-font-family: 'Roboto', sans-serif !important;
}

/* đảm bảo tất cả element dùng Roboto */
body,
html,
* {
    font-family: 'Roboto', sans-serif !important;
}

.font-roboto {
    font-family: 'Roboto', sans-serif !important;
}

.roboto-thin {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.roboto-light {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.roboto-regular {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.roboto-medium {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.roboto-bold {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.roboto-black {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}


:root {
    --green-default: #094533;
    --blue-default: #6BD2FF;
    --organe-default: #FF9800;
    --border-color: rgba(60,60,67,.3);
    --width-mobile: 576px;
    --width-tablet: 992px;
    --width-lg-tablet: 1200px;
    --color-default: #094533;
    --size-title-default: 60px;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

fieldset.disabled {
    opacity: 0.6
}

/*Overite Boostrap*/
/*mark 29/01/2026 begin*/
/*.container {
    max-width: 1440px !important;
}*/
/*mark 29/01/2026 end*/
/*ADD 30/01/2026 begin*/
.container {
    max-width: 100vw !important;
}
/*mark 30/01/2026 end*/
.map-frame {
    width: 100%;
    border: 0;
    border-radius: 20px;
}

.contact iframe {
    height: 350px;
}

@media (min-width: 992px) {
    .contact iframe {
        height: 600px;
    }
}
.btn-primary {
    background-color: var(--blue-default);
    border-color: var(--blue-default);
}

    .btn-primary:hover {
        background-color: #38B6FF;
        border-color: #38B6FF;
    }

.btn-warning {
    background-color: var(--organe-default);
    border-color: var(--organe-default);
}

.btn-light {
    background: white;
    border: 1px solid #D1D5DB;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #d1d6dc
}

/* Badge styles */
.badge.bg-success {
    padding: 6px 12px;
    background: #DCFCE7 !important;
    color: #166534;
    font-weight: 500;
    font-size: 13px;
}

.badge.bg-warning {
    padding: 6px 12px;
    background: #FEF3C7 !important;
    color: #92400E;
    font-weight: 500;
    font-size: 13px;
}

.badge.bg-primary {
    padding: 6px 12px;
    background: #DBEAFE !important;
    color: #1E40AF;
    font-weight: 500;
    font-size: 13px;
}

.badge.bg-danger {
    padding: 6px 12px;
    background: #FEE2E2 !important;
    color: #991B1B;
    font-weight: 500;
    font-size: 13px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316A34A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
}
/*Custom class*/
.cursor-pointer {
    cursor: pointer
}

.bg-green {
    background-color: var(--green-default)
}

.border-custom {
    border-color: var(--border-color)
}

.center-v-h {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fadein-animation {
    animation-name: fadein;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.fadein-top-right-animation {
    animation-name: fadein-top-right;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.fadein-top-left-animation {
    animation-name: fadein-top-left;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.fadein-right-animation {
    animation-name: fadein-right;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.fadein-left-animation {
    animation-name: fadein-left;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.fadeout-animation {
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
}

.typewriter-animation {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
    animation: typewriter 5s steps(50) 1s 1 normal both, blinkingCursor 500ms steps(50) infinite normal;
}

.text-green {
    color: #4CAF50
}

.btn-success {
    background: var(--green-default);
    border: 0
}

.text-red {
    color: red !important;
}

.text-gray {
    color: #6B7280;
}
/*hanlde focus input*/
input[type="text"]:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc;
}

input[type="password"] {
    border-right: 0;
}

    input[type="password"]:focus {
        outline: none !important;
        box-shadow: none !important;
        border-color: #ccc;
    }

.password-input {
    border-right: 0;
    border-color: #ccc;
}

.togglePassword {
    cursor: pointer !important;
    background: inherit;
    text-align: center;
    border-left: 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

fieldset[disabled] .togglePassword {
    background-color: #e9ecef !important;
    pointer-events: none;
    cursor: not-allowed !important;
}

input:focus,
button:focus,
.btn:focus,
textarea:focus {
    outline: none !important;
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}
/*Handle copy and cursor*/
p, h1, h2, h3, h4, h5, h6, span, label, a {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    cursor: default;
}

/*Main css*/
/* Hide number input arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

h1 {
    font-size: 48px;
    font-weight: 600
}

@media (max-width:768px) {
    h1 {
        font-size: 38px
    }
}

@media (max-width:576px) {
    h1 {
        font-size: 30px
    }
}
/*Header*/
.promotion-bar {
    width: 100%;
    height: 30px;
    font-size: 14px;
    /*    tran  sform: translateY(-100%);*/
    opacity: 1;
    /*    animation: slideDown 0.6s ease-out forwards;*/
    /*    animation-delay: 0.2s;*/
}

.navbar .nav-link {
    border-bottom: 0;
}

.header-function {
    width: fit-content
}

#btn-avartar {
    margin-left: 15px;
    cursor: pointer
}

@media (min-width: 992px) {
    .navbar .container-fluid {
        position: relative;
    }

    .navbar .nav-link {
        border-bottom: 1px
    }

    .navbar-brand-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        pointer-events: auto;
    }

    .navbar-toggler,
    .header-function {
        z-index: 3;
    }
}

@media (max-width:575px) {
    .promotion-bar {
        font-size: 10px;
        white-space: nowrap
    }
}

@media (max-width:360px) {
    .promotion-bar {
        font-size: 8px;
        white-space: nowrap
    }
}

.header-function .icon {
    font-size: 24px;
    margin-left: 15px;
}

.header-function .form-search {
    display: none;
}

.cart {
    position: relative;
    width: fit-content;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -12px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Handle navar bar*/
.navbar {
    padding-bottom: 0px;
    box-shadow: 5px 10px 18px #d5d7d6;
}

.navbar-light .navbar-nav .nav-link {
    color: black;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    border-bottom: 0px;
    margin-right: 10px;
    font-size:20px;
}

    .navbar-light .navbar-nav .nav-link .active {
        color: #4CAF50;
        font-weight: bold;
        cursor: pointer;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        color: #4CAF50;
        text-decoration: underline
    }

@media (max-width: 992px) {

    .navbar-light .navbar-nav .nav-link {
        border-bottom: 1px
    }
}

.searchContainer {
    transition: ease-in 0.3s;
    width: 600px;
    margin-left: auto;
    margin-right: auto
}

/*    .searchContainer .form-control {
        border-radius: 12px 12px 0 0 
    }*/
.navbar input:focus {
    border-color: var(--green-default) !important;
    box-shadow: none !important
}

#dataReseachContainer {
    position: absolute;
    width: 100%;
    text-align: center;
    border-top-width: 1.5px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-style: solid;
    border-color: #ccc;
    max-height: 250px;
    overflow-y: auto;
    z-index: 99;
    display: block;
    background: white;
    border-radius: 0 0 12px 12px
}

.result-item-default {
    padding: 10px;
    background-color: #fff;
}

.result-item {
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
}

    .result-item:hover {
        background-color: #f0f0f0;
    }
/*Handle Dropdown menu*/
.navbar .nav-item.dropdown {
    position: static;
}

.mega-dropdown {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 100%;
    width: 100vh; /*Handle width dropdown*/
    height: fit-content;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 1rem 2rem;
    visibility: hidden;
}


.dropdown-menu .mega-dropdown-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mega-dropdown-column {
    margin-right: 20px
}

    .mega-dropdown-column .dropdown-column-subject {
        font-size: 28px
    }

    .mega-dropdown-column .dropdown-column-link {
        font-style: italic;
        font-size: 16px
    }

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
    background-color: #16A34A !important;
    color: #fff !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus {
    color: #16A34A !important;
}
/* Offcanvas width for small screens */
@media (max-width: 991.98px) {
    .offcanvas.offcanvas-start {
        width: 280px; /* adjust width as needed */
    }

    /* Make sure dropdown doesn't show on small screens (we already added d-none d-lg-flex) */
    .mega-dropdown-column {
        padding: 0.5rem 1rem;
    }

    .mega-offcanvas-nav .list-group-item {
        border: none;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Optional: tweak mega-dropdown columns for large screens */
@media (min-width: 992px) {
    .mega-dropdown {
        gap: 1rem;
        padding: 1rem 2rem;
        width: 100%;
    }

    .mega-dropdown-column {
        min-width: 180px;
    }
}
/*Handle Hover menu dropdown*/
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible
}


/*Footer*/
footer .footer-icon {
    width: 20px;
    height: 20px;
}

footer p {
    margin-bottom: 10px
}


.footer-fixed {
    color: white !important;
    text-align: center;
}

.footer-content {
    padding: 50px
}

@media(max-width:992px) {
    .footer-fixed {
        height: fit-content;
    }

    .footer-content {
        margin-left: 12px;
        padding: 0
    }

    footer h4 {
        margin-top: 20px;
    }
}

/*Handle sidebar offcanvas*/
.offcanvas .offcanvas-footer p {
    margin: 0;
}


.offcanvas .cart-footer-item {
    display: flex;
    flex-direction: row;
    margin-right: 20px;
    margin-left: 20px;
    justify-content: space-between;
}

.cart-footer-item .cart-footer-property {
    font-weight: 300;
    color: black;
}

.cart-footer-item .cart-footer-value {
    font-weight: 500;
    color: #4CAF50
}

.cart-footer-item .cart-footer-property-total {
    font-weight: 600;
    color: black;
    font-size: 20px
}

.cart-footer-item .cart-footer-value-total {
    font-weight: 600;
    color: black;
    font-size: 20px
}

.offcanvas-footer .cart-button-checkout {
    display: block;
    margin: 15px auto 15px auto;
    width: 90%;
}

.offcanvas-body {
    padding: 0
}

/*Handle cart product card*/
.cart-product-card .cart-product-card-img {
    width: 80px;
    height: 80px;
    border-radius: 8px
}

.cart-product-card .cart-product-card-input {
    width: 120px;
    height: 42px;
    border-width: 2px;
    border-color: #D1D5DB;
    border-radius: 8px
}

/*handle modal*/
.modal-content {
    border-radius: 12px
}

.modal-dialog input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px
}

.modal-dialog .otp-input {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    text-align: center;
    font-size: 36px;
    cursor: not-allowed;
    pointer-events: none;
}

    .modal-dialog .otp-input:focus {
        border: 1px solid #4CAF50;
        outline: none;
        color: #4CAF50;
    }

    .modal-dialog .otp-input:nth-child(1) {
        cursor: pointer;
        pointer-events: all;
    }

.modal-dialog #otpButton {
    width: 100% !important;
}


.modal-dialog hr {
    border: none;
    height: 2px;
    color: black;
    background-color: black;
    width: 20px;
    margin-top: auto;
    border-radius: 12px;
    margin-bottom: auto
}

.modal-dialog input[type="checkbox"] {
    padding: 0px
}

p .text-decoration-underline {
    cursor: pointer
}

.modal-dialog .input-group-text {
    background: inherit;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    border-left: 0;
}

.modal-dialog .input-group input {
    border-right: 0;
}

.modal-dialog .input-group-text i:hover {
    cursor: pointer;
}

.modal-dialog .modal-body .btn {
    width: 210px;
    height: 40px;
    font-weight: 600;
    font-size: 18px
}

    .modal-dialog .modal-body .btn .btn-logo {
        width: 18px;
        height: 18px;
        margin-left: 8px
    }

.modal-body .btn-forgetPassword:hover {
    color: #4CAF50;
    cursor: pointer;
}

label.error {
    color: #dc3545;
    font-size: 0.95em;
    margin-top: 4px;
    margin-bottom: 0;
    display: block;
    font-weight: 400;
    text-align: left;
    padding-left: 2px;
}

@media (max-width:576px) {
    .modal-dialog .modal-body .btn {
        margin-left: 12px;
        margin-right: 12px
    }
}
/*Handle Cauroul*/
/* style.css cập nhật */




/*Handle Policy*/
.banner-header {
    width: 100%;
    height: 350px
}


/*Hanlde pagination*/
.pagination a {
    color: var(--green-default)
}

/*Handle news detail*/
.news-article {
    /*max-width: 800px;*/
    padding: 0 100px;
    margin: auto;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #343A40;
}

    .news-article h1 {
        font-family: 'Lora', serif;
        font-size: 36px;
        color: #4CAF50;
        margin-bottom: 10px;
    }

    .news-article h2 {
        font-family: 'Lora', serif;
        font-size: 28px;
        color: #2C5F2D;
        margin-top: 40px;
        margin-bottom: 15px;
    }

.meta-info {
    font-size: 14px;
    color: #6C757D;
}

.sapo {
    font-size: 18px;
    color: #555;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

.image-caption {
    font-size: 14px;
    text-align: center;
    color: #6C757D;
    margin-bottom: 30px;
}

.article-content a {
    color: #FF9800;
    text-decoration: none;
    font-weight: bold;
}

    .article-content a:hover {
        text-decoration: underline;
    }
/*-----------------------------HANDLE WEBKIT INPUT REMOVE FOCUS-----------------------------*/
input:-webkit-autofill, input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}

.support-form input::placeholder {
    font-size: 15px;
    color: #838383;
}
/*handle toast*/
.toast-container {
    position: fixed;
    bottom: 2rem; /* hoặc 24px, 32px tuỳ ý */
    right: 2rem;
    z-index: 1060;
    position: absolute;
    top: 0;
    right: 0;
}


/*Handle sidebar header menu*/
.mega-offcanvas-nav {
    margin: 8px 12px 0 12px
}

    .mega-offcanvas-nav .list-group-item {
        font-size: 15px
    }
/*Handle NavTab Scrool when bile*/
#navScrollTab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    /* Ẩn scrollbar cho tất cả trình duyệt */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE và Edge */
}

    /* Ẩn scrollbar cho Chrome, Safari và Opera */
    #navScrollTab::-webkit-scrollbar {
        display: none;
    }

    #navScrollTab .nav-item {
        flex: 0 0 auto;
    }

.btn.btn-logout:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem red;
}

.btn.btn-logout:active {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem red;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}

input:disabled:-webkit-autofill,
input:disabled:-webkit-autofill:hover,
input:disabled:-webkit-autofill:focus,
input[disabled]:-webkit-autofill,
input[disabled]:-webkit-autofill:hover,
input[disabled]:-webkit-autofill:focus,
fieldset[disabled] input:-webkit-autofill,
fieldset[disabled] input:-webkit-autofill:hover,
fieldset[disabled] input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #e9ecef inset !important;
    background-color: #e9ecef !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    background-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.support-form input::placeholder {
    font-size: 15px;

}
.suggestion {
    background: white;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    margin-right: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    z-index: 1000;
}

.suggestion li.keyboard-selected {
    background-color: #e9ecef;
    cursor: pointer;
}

.suggestion li:hover {
    background-color: #f8f9fa;
}

.suggestion strong {
    color: #198754;
    font-weight: 600;
}

.autocomplete-loading {
    padding: 10px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.autocomplete-no-results {
    padding: 10px;
    text-align: center;
    color: #dc3545;
}

.autocomplete-clear {
    position: absolute;
    right: 10px;
    top: 73%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 20px;
    line-height: 1;
    padding: 5px;
    user-select: none;
}

.autocomplete-clear:hover {
    color: #dc3545;
}


.suggestion {
    scroll-behavior: smooth;
}

.suggestion ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.suggestion li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.logo-image {
    width: 80px;
    height: auto;
}
/*mega menu begin*/
.mega-menu-static {
    position: static !important;
}

.mega-menu-content {
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}

.mega-item {
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.mega-item:hover {
    background-color: transparent;
    color: #4CAF50;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
/*mega menu end*/

.service-card {
    position: relative;
    display: block;
}

.service-card-img {
    display: block;
    width: 100%;
    border-radius: 12px;
    height: auto;
}

.service-card-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: clamp(120px, 80%, 260px);*/
    height: clamp(36px, 8vw, 60px);
    font-size: clamp(12px, 1.5vw, 22px);
    z-index: 2;
    font-weight: 600;
    font-family: 'Lora';
    background: rgba(255, 255, 255, 0.8);
    border: none;
    white-space: nowrap;
    color: var(--green-default);
    padding: 12px 24px;
    border-radius: 40px;
}


.service-card-hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

.cart-product-card-list, .service-card-list {
    /*padding-bottom: 40px;*/ /*MARK BY 29/01/2026*/
    /*ADD BY 29/01/2026 BEGIN*/
    background: #e9eeec;
    padding: 40px 0 40px 0;
    /*ADD BY 29/01/2026 END*/
}

.service-featured {
    margin-bottom: 30px;
}
/*ADD 29/01/2026 BEGIN*/
.section-top {
    height: 300px;
    background: #f4f6f5;
}

.section-bottom {
    height: 300px;
    background: #1f4d3b;
    margin-top: -194px;
}

.section-content {
    position: relative;
    margin-top: -181px;
    z-index: 2;
    cursor: pointer;
}

.cards {
    width: 80%;
    margin: auto;
}

.card-feature-service {
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
}

/*ADD 29/01/2026 END*/


.cart-product-card {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    min-height: 100px;
    margin-right: 10px;
    margin-bottom: 5px;
    gap: 10px;
}

    .cart-product-card h4 {
        font-size: 18px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .cart-product-card p {
        font-size: 14px;
        font-weight: 400;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .cart-product-card input {
        width: 100px;
        border: 1.5px solid #D1D5DB;
        border-radius: 6px;
        font-size: 16px;
        padding: 0 10px;
        box-sizing: border-box;
        vertical-align: middle;
    }

        .cart-product-card input:focus {
            outline: none;
            border: 1.5px solid #4CAF50;
        }

    .cart-product-card i {
        font-size: 18px;
        cursor: pointer;
    }

    .cart-product-card hover {
        color: #4CAF50
    }

    .cart-product-card img {
        min-height: 80px;
        min-width: 80px;
        height: 80px;
        width: 80px;
        border-radius: 8px;
        object-fit: cover;
    }

    .cart-product-card .cart-product-card-input {
        width: 120px;
        height: 42px;
        border-width: 2px;
        border-color: #D1D5DB;
        border-radius: 8px
    }

.cart-product-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-bottom: 1px solid #E5E7EB
}

.input-product-card {
    width: 150px;
    height: 42px;
}
/*override*/


/*Product Card*/
.product-card {
    width: 100%;
    height: 530px;
    box-shadow: rgba(44, 95, 44, 0.5) 0px 2px 5px;
    border-radius: 20px;
    border: 0px;
    cursor: pointer;
    margin: 0 auto;
    box-sizing: border-box;
}

    .product-card:first-child {
        margin-left: 8px
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(44, 95, 44,0.6);
    }

    .product-card .card-body {
        padding: 12px;
        transition: transform 0.4s ease;
        height: 35%;
    }

    .product-card .product-card-information {
        display: none
    }

    .product-card .product-card-function {
        display: block;
        cursor: default;
    }

    .product-card img {
        width: 100%;
        min-height: 340px;
        height: 340px;
        border-radius: 20px 20px 0 0;
        display: block;
    }

    .product-card h5 {
        font-weight: 700;
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .product-card p {
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .product-card i {
        font-size: 40px;
        cursor: pointer;
        margin-right: 8px;
    }

    .product-card strong {
        text-decoration: line-through;
    }

    .product-card .product-input {
        width: 50%;
        height: 42px;
    }

    .product-card .priceCal {
        font-size: 22px;
        height: fit-content;
        color: #4B5563
    }

    .product-card .btn-priceNow {
        border-bottom-left-radius: 20px;
        font-size: 16px;
        font-weight: 600
    }

        .product-card .btn-priceNow:focus {
            box-shadow: none !important;
        }

    .product-card .btn-addCart {
        border-bottom-right-radius: 20px;
        font-size: 16px;
        font-weight: 600
    }

        .product-card .btn-addCart:focus {
            box-shadow: none !important;
        }

    .product-card .card-group-button {
        height: 50px;
    }
/*News card*/
.news-components {
    background: #1f4d3b;
    padding: 60px 20px 100px 20px;
}

.news-title {
    color: #fff;
    padding: 10px;
}

/*Swipper 5/2/2025 begin*/
.newsSwiper {
    padding: 40px 0 60px;
    overflow: hidden;
}

    .newsSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .newsSwiper .swiper-slide {
        width: 100px;
        transition: all 0.4s ease;
    }

        .newsSwiper .swiper-slide.even .news-card img {
            height: 300px;
        }

        .newsSwiper .swiper-slide.odd .news-card img {
            height: 340px;
        }

    .newsSwiper .swiper-slide-active {
        transform: translateY(10px);
        opacity: 1;
    }

.news-card {
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

    .news-card img {
        width: 100%;
        object-fit: cover;
    }

.swiper-pagination {
    bottom: 10px;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient( to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15), transparent );
}

/*.news-title {
    margin-top: 6px;
    line-height: 1.3;
}*/
.news-title-desc {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-right: 100px;
    cursor: pointer;
}

.news-card:hover {
    color: #edc259;
}

    .news-card:hover img {
        transform: scale(1.05);
        transition: transform 0.4s ease;
    }

/*swipper 5/2/2026 end*/

.news-card {
    height: fit-content;
    border-radius: 12px;
    position: relative;
    box-shadow: rgba(44, 95, 44, 0.5) 0px 2px 5px;
    transition: all 0.3s ease;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(44, 95, 44,0.8);
    }

    .news-card img {
        display: block;
        width: 100%;
        height: 62.5%;
        border-radius: 12px 12px 0 0;
    }

.new-card-content {
    padding: 12px
}

/*.news-card h5 {
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    min-height: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}*/

.news-card p {
    font-size: 16px;
    overflow: hidden;
    font-weight: 500;
    min-height: 72px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.news-card-date {
    position: absolute;
    top: 35px;
    left: 0;
    width: 60px;
    height: 84px;
    background-color: #6BD2FF;
    color: white;
    text-align: center;
}

    .news-card-date .card-day {
        font-size: 24px;
        font-weight: 700;
        margin-top: 4px;
    }

    .news-card-date .card-month-year {
        line-height: 1.2;
        font-size: 16px;
        font-weight: 500;
    }

/*handle Review Card*/
.review-card {
    height: 100%;
    background: #F8F9FA
}

.review-card-title img {
    width: 64px;
    height: 64px;
}

/*service intro card*/
.service-intro-card {
    text-align: left;
    border-radius: 12px;
    box-shadow: #afd6bc 0.5px 1px 0px;
    padding: 16px;
    background: white;
    height: 100%;
    max-height: 320px;
    gap: 5px;
    background: #F8F9FA
}

    .service-intro-card .card-icon {
        width: 64px;
        height: 64px;
        border-radius: 8px;
        background: #27C840;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
    }

    .service-intro-card .card-content {
        margin-top: 12px;
    }

    .service-intro-card .card-title {
        font-size: 20px;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 25px;
        color: #343A40;
    }

    .service-intro-card .card-description {
        color: #4B5563;
        font-size: 16px;
        font-weight: 400;
        margin-top: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 72px;
    }

    .service-intro-card .card-link {
        color: #2C5F2D
    }

        .service-intro-card .card-link:hover {
            color: #27C840
        }
/*Handle orderHistoryCard*/
.order-history-card {
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 16px;
}

.order-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.order-history-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-date {
    color: #6B7280;
    font-size: 14px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

    .order-item:not(:last-child) {
        border-bottom: 1px solid #F3F4F6;
    }

.order-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

    .order-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.order-item-info {
    flex-grow: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 16px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-quantity {
    font-size: 14px;
    color: #6B7280;
}

.order-item-price {
    font-size: 16px;
    color: #2C5F2D;
    white-space: nowrap;
}

.btn-showMore:hover {
    color: #22C55E;
    text-decoration: underline;
    cursor: pointer;
}

.btn-showMore:active {
    color: #2d7230;
    text-decoration: underline;
    cursor: pointer;
}

.order-history-footer {
    padding: 18px 24px;
    background: #F9FAFB
}

    .order-history-footer button {
        background: #22C55E;
        width: 80px !important;
        height: 36px !important
    }

    .order-history-footer span {
        color: #2C5F2D;
        font-weight: 700;
        font-size: 18px;
    }

a {
    text-decoration: none;
    color: #000;
}

    a:hover {
        color: #000;
        cursor: pointer;
    }

@media (max-width: 1199.98px) {
    .product-card {
        height: 500px;
    }

        .product-card img {
            min-height: 320px;
            height: 320px;
        }


        .product-card strong {
            font-size: 15px;
        }

        .product-card strong {
            font-size: 12px;
        }

        .product-card i {
            font-size: 36px;
        }
}

@media (max-width: 991.98px) { /* Bootstrap md breakpoint */
    /*Handle product card*/
    .product-card {
        height: 480px;
    }

        .product-card img {
            min-height: 320px !important;
            height: 320px;
        }

        .product-card h5 {
            font-size: 14px;
        }

        .product-card strong {
            font-size: 14px;
        }

        .product-card p {
            font-size: 13px;
            -webkit-line-clamp: 3;
        }

        .product-card i {
            font-size: 32px;
        }

        .product-card .priceCal {
            font-size: 20px;
            margin-left: auto;
            margin-right: auto;
            color: #4B5563
        }

        .product-card .product-input {
            margin-left: auto;
            margin-right: auto;
            width: 50%;
            height: 36px;
        }
    /* Handle ResponeSive newCard   */


    .news-card-date {
        width: 40px;
        height: 64px;
        top: 20px
    }

        .news-card-date .card-day {
            font-size: 16px;
        }

        .news-card-date .card-month-year {
            font-size: 12px;
        }

    .news-card h5 {
        font-size: 12px;
    }

    .news-card p {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) { /* Bootstrap md breakpoint */
    .product-card {
        height: 430px;
    }

        .product-card img {
            min-height: 280px !important;
            height: 280px;
        }

        .product-card strong {
            font-size: 13px;
        }

        .product-card h5 {
            font-size: 13px;
        }

        .product-card .product-input {
            margin-left: auto;
            margin-right: auto;
            width: 50%;
            height: 36px;
        }

        .product-card p {
            font-size: 12px;
            -webkit-line-clamp: 3;
        }

        .product-card i {
            font-size: 28px;
        }

    .order-history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .order-item {
        gap: 12px;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }

    .order-item-name {
        font-size: 14px;
    }

    .order-item-price {
        font-size: 14px;
    }
    /*ADD BY 30/01/2026 BEGIN*/
    .section-content {
        margin-top: -246px;
    }

    .section-bottom {
        height: 245px;
    }
    /*ADD BY 30/01/2026 END*/
}

@media (max-width: 575.98px) { /* Bootstrap sm breakpoint */
    .product-card {
        height: 300px;
    }

        .product-card img {
            min-height: 170px !important;
            height: 170px
        }

        .product-card strong {
            font-size: 12px;
        }

        .product-card h5 {
            font-size: 12px;
        }

        .product-card p {
            font-size: 11px;
            -webkit-line-clamp: 3;
        }

        .product-card i {
            font-size: 24px;
        }

        .product-card .card-body {
            height: 150px;
            padding: 8px;
        }

        .product-card .priceCal {
            font-size: 16px;
            color: #4B5563
        }

        .product-card .product-input {
            margin-left: auto;
            margin-right: auto;
            width: 60%;
            height: 36px;
        }

    .service-card-btn {
        padding: 0
    }

    .product-card .btn-priceNow {
        font-size: 10px;
    }

    .product-card .btn-addCart {
        font-size: 12px;
    }

    .product-card .card-group-button {
        height: 35px;
    }
}

@media (max-width: 350px) {
    .product-card .product-input {
        margin-left: auto;
        margin-right: auto;
        width: 70%;
        height: 36px;
    }
}
/*ADD BY 30/01/2026 BEGIN*/
@media (min-width:768px) and (max-width:1024px) {
    .section-content {
        top: -57px;
    }
}
/*ADD BY 30/01/2026 END*/

.banner {
    max-height: 400px;
}
.banner video {
    position:absolute;/*ADD 29/01/2026*/
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: cover;
}



.banner-tiltle {
    font-size: 48px
}

.banner-inner {
    width: 100%;
    background: #F8F9FA;
    box-shadow: #afd6bc 0.5px 1px 0px;
}



.banner-content-item {
    width: 50%;
    max-height: 400px;
    margin: 116px; /*add 29/01/2026*/

}

@media (max-width: 576px) {
    .banner-content {
        border-radius: 12px;
        height: 220px;
    }

    .banner video {
        position: absolute;
        height: 100%;
        border-radius: 12px
    }

    .carousel .banner-title {
        font-size: 20px;
    }



    .banner-content-item {
        width: 100%;
        max-height: 140px;
        margin: 0;/*add 29/01/2026*/
    }

        .banner-content-item .btn {
            width: 80px;
        }
}
/*
.banner-control-prev-icon,
.banner-control-next-icon {
    width: 2rem;
    height: 2rem;
}*/
.banner-item {
    transition: transform 1s ease-in-out;
    position:relative;/*ADD 29/01/2026*/
}

.carousel {
    width: 50%;
    max-height: 400px
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    width: 100%;
    height: 100%;
}

.carousel-content {
    height: 100%;
    max-height: 400px
}


@media (max-width: 576px) {
    .carousel {
        width: 100%;
        max-height: 400px
    }

    #carouselExampleSlidesOnly {
        margin-bottom: auto;
        margin-top: auto;
    }

        #carouselExampleSlidesOnly .carousel-content-item {
            padding: 12px;
            background: rgba(255,255,255,0.6);
            border-radius: 12px;
        }
}
/* Custom Carousel Styles */
.js-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 50px;
    margin: 20px 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

    .carousel-track .card-item {
        flex-shrink: 0;
        box-sizing: border-box;
    }

        .carousel-track .card-item:last-child {
            margin-right: 0;
        }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--green-default, #4CAF50);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

    .carousel-btn i {
        width: 24px;
        height: 24px;
        text-align: center;
        font-size: 24px;
        line-height: 1;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        top: 0;
        left: 0;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .carousel-btn:hover:not(:disabled) {
        background-color: #45a049;
    }
.banner-subtitle {
    color: #fff;
}
.group-name-product {
    margin-top: 12px;
}
/* product featured 30/01/2026 begin */
.container-product-featured {
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    margin-top: 30px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.price .old {
    text-decoration: line-through;
    color: #999;
}

.price .new {
    color: #0a7c3e;
    font-weight: bold;
}

button {
    background: #0a7c3e;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}
.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    overflow: hidden;
}
.card-body {
    padding: 16px;
}

.title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #444;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
}

.new-price {
    color: #0a7c3e;
    font-weight: 700;
}
.card button {
    width: 100%;
    background: #0a7c3e;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    /*margin-top: 12px;*/
}

/*product featured 30/01/2026 end */

@media (max-width: 768px) {
    .banner video {
        max-height: 220px;
    }

    .carousel .banner-title {
        font-size: 20px;
    }

    .banner-content-item {
        width: 100%;
        max-height: 220px;
        margin-top: -4px; /*ADD 29/01/2026*/
    }

    .banner-content-item .btn {
        width: 100px;
    }
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-track .card-item {
        margin: 0 16px 0 0;
    }
}

@media (max-width: 768px) {
    .js-carousel-wrapper {
        padding: 0 30px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .js-carousel-wrapper {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@keyframes btnFilterHover {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px,-2px);
    }

    20% {
        transform: translate(2px,-2px);
    }

    30% {
        transform: translate(-2px,2px);
    }

    40% {
        transform: translate(2px,2px);
    }

    50% {
        transform: translate(-2px,-2px);
    }

    60% {
        transform: translate(2px,-2px);
    }

    70% {
        transform: translate(-2px,2px);
    }

    80% {
        transform: translate(-2px,-2px);
    }

    90% {
        transform: translate(2px,-2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes textLoadingTranForm {
    0% {
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes hoverCardProduct {
    0% {
        box-shadow: rgba(44, 95, 44, 0.5) 0.5px 1px 5px
    }

    100% {
        box-shadow: rgba(44, 95, 44, 0.5) 0.5px 1px 20px;
    }
}

@keyframes btnFilterRotate {
    0% {
        transform: rotate(0deg);
        transform-origin: 0 0;
    }

    10% {
        transform: rotate(2deg);
    }

    20% {
        transform: rotate(-4deg);
    }

    30% {
        transform: rotate(4deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0deg);
        transform-origin: 0 0;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein-right {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadein-left {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadein-top-right {

    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadein-top-left {

    0% {
        transform: translateX(-50px) translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkingCursor {
    from {
        border-right-color: rgba(255,255,255,.75);
    }

    to {
        border-right-color: transparent;
    }
}



.slogan {
    margin-top: 32px
}

.slogan-title {
    font-weight: 600;
    color: #2C5F2D;
    font-size: 48px;
    display: inline
}

.carousel-fade-in {
    animation: fadein 0.5s;
}

.carousel-fade-out {
    animation: fadeout 0.5s;
}


.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

    .text-part.left {
        transform: translateX(-200%);
        animation-name: slide-in-left;
    }

    .text-part.right {
        transform: translateX(200%);
        animation-name: slide-in-right;
    }

.slogan-subtitle {
    font-weight: 600;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-option-description {
    width: 200px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px
}

.slogan-option-title {
    width: 115px;
    text-transform: uppercase
}

    .slogan-option-title p {
        font-weight: 600;
        line-height: 20px
    }

.slogan-option-item {
    margin-left: 0;
    margin-right: 0;
}

.slogan-option-description {
    display: none
}

@media (min-width:1200px) {
    .slogan-option-item {
        margin-left: 40px;
        margin-right: 40px
    }
}

@media (max-width: 1200px) {

    .slogan-title {
        font-size: 36px;
    }
}

@media (min-width:992px) {
    .slogan-option-description {
        display: block
    }
}

@media (max-width: 992px) {
    .slogan-option-item {
        margin-left: 0;
        margin-right: 0
    }

    .slogan-title {
        font-size: 28px;
    }
}

@media (max-width: 769px) {
    .slogan-option-title {
        width: fit-content;
    }

        .slogan-option-title p {
            font-size: 12px;
        }
}

@media (max-width: 576px) {
    .slogan-option-title p {
        font-size: 10px
    }
}

.news-page-banner {
    border-radius: 12px;
    background: #E5E7EB;
}

.banner-tag {
    margin-right: 12px;
    margin-top: 8px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 16px;
    color: #4CAF50;
    font-weight: 500;
    border: 1px solid #4CAF50;
    display: inline-block;
    cursor: pointer;
}

.banner-tag:hover {
    opacity: 0.7
}

.news-page .form-select {
    height: 52px;
    border-radius: 8px;
}
/*home new begin*/
.section-blog {
    /*padding: 0 60px;*/
}
.card-text-new {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height:2;
}
.category-new-container {
    background: #f3f5f5;
    margin-top: 31px;
    border-radius: 12px;
}
.card-new,
.card-new * {
    cursor: pointer;
}
.category-new {
    margin: 47px 0 56px 30px;
}
.category-new-item {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 20px;
}
.category-new-item.active {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 20px;
    background: #044735;
    color: #fff;
}
/*home new end*/
/*pagination begin*/
.pagination a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    margin: 3px;
}

.pagination a.active {
    background: #2c7a7b;
    color: white;
}
.pagination {
    justify-content: center;
    margin-bottom: 28px;
}

/*pagination end*/
.category-new-component {
    position: absolute;
    width: 20%;
    top: 67px;
    background: #094533;
}

.category-new-item-component {
    color: #fff;
}
@media screen and (max-width:1024px) {
    .section-blog {
        padding:0;
    }
    .news-article {
        padding: 0
    }
    .category-new-component {
        position: static;
        width: 100%;
        padding: 12px 0;
        margin-top: -16px;
        margin-bottom: 24px;
    }
}


/*#btn-openFilter-mobile {
    width: 50px;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    position: sticky;
    z-index: 10;
    right: 8px;
    font-size: 30px;
    padding: 7px 0 0 0 !important
}

.product-filter {
    border: 1px solid black;
    border-radius: 12px
}

    .product-filter .line {
        width: 100%;
        height: 1px;
        background: black
    }

    .product-filter .product-filter-title {
        font-weight: 600;
        margin-top: 8px
    }

.price-filter {
    margin-top: 16px;
    border: 1px solid black;
    border-radius: 12px
}
.square-radio input {
    display: none;
}


.square-radio {
    display: inline-block;
}

    .square-radio span {
        position: relative;
    }

        .square-radio span:before,
        .square-radio span:after {
            content: '';
        }

        .square-radio span:before {
            border: 1px solid #222021;
            width: 14px;
            height: 14px;
            margin-right: 10px;
            display: inline-block;
            vertical-align: baseline;
            border-radius: 3px;
        }

        .square-radio span:after {
            background: #4CAF50;
            width: 10px;
            height: 10px;
            position: absolute;
            top: 3px;
            left: 2.2px;
            transition: 300ms;
            opacity: 0;
            border-radius: 2px;
        }

    .square-radio input:checked + span:after {
        opacity: 1;
        color: #4CAF50;
    }

.priceRangeControl {
    align-items: center;
}

.btn-filter-animating {
    animation: btnFilterRotate 0.6s linear infinite alternate;
}

.gallery-wrapper {
    margin: auto;
    position: relative;
}

.main-image {
    pointer-events: auto !important;
    position: relative;
}

    .main-image img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: opacity .3s;
        display: block;
    }*/

/* Nút điều hướng nằm đè lên hình */
/*.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

    .nav-btn i {
        width: 17px;
        height: 21.5px
    }

.gallery-wrapper:hover .nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.nav-btn:hover {
    background: #28a745;
    color: white;
}

.prev-btn {
    left: 10px;
}

    .prev-btn i {
        width: 24px;
        height: 20px;
    }

.next-btn {
    right: 10px;
}

    .next-btn i {
        width: 12px;
        height: 21.5px;
    }*/


/* Thumbnail */
/*.thumbs {
    display: flex;
    gap: 10px;
    padding-top: 5px;
    padding-left: 5px;
    margin-top: 5 px;
    overflow-x: hidden;
    padding-bottom: 5px;
    scroll-behavior: smooth;
}

    .thumbs img {
        width: 100px;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 8px;
        z-index: 20;
        cursor: pointer !important;
        transition: all .3s;
        border: 2px solid transparent;
        flex-shrink: 0;
        user-select: none;
        pointer-events: auto !important;
    }

        .thumbs img:last-child {
            margin-right: 5px
        }

        .thumbs img.active {
            border-color: #28a745;
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

.product-detail-page .product-input {
    width: 142px;
    height: 42px
}

.product-detail-page .btn-priceNow {
    height: 60px
}

.product-detail-page .btn-addCart {
    height: 60px
}

.btn-priceNow-detail {
    height: 60px;
    border-radius: 8px
}

.btn-addCart-detail  {
    height: 60px;
    border-radius: 8px
}

.product-detail-page .nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .product-detail-page .nav-tabs .nav-link {
        color: #555;
        font-weight: 500;
        padding: 10px 18px;
        border: none;
        transition: 0.3s;
    }

        .product-detail-page .nav-tabs .nav-link.active {
            color: #27ae60 !important;
            border-bottom: 2px solid #27ae60;
            background-color: transparent;
        }

        .product-detail-page .nav-tabs .nav-link:hover {
            color: #2ecc71;
        }


@media (max-width:992px) {
    .product-filter {
        border: none;
        border-radius: 0px
    }

    .square-radio span:after {
        top: -0.5px;
        left: 2.45px;
    }

    .square-radio span {
        font-size: 14px;
        padding-bottom: 2px
    }

        .square-radio span:before {
            width: 12px;
            height: 12px;
            margin-right: 6px;
        }

        .square-radio span:after {
            width: 8px;
            height: 8px;
            top: 3px;
            left: 2.2px;
            opacity: 0;
        }

    .price-filter {
        margin-top: 0px;
        border: none;
        border-radius: 0px
    }
}

@media (max-width:758px) {
    .next-btn i {
        width: 15px;
        height: 15.5px;
    }

    .prev-btn i {
        width: 14px;
        height: 22.5px;
    }
}*/
/*product begin */
.product-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.product-overlay-buttons {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.4s ease;
    opacity: 0;
}
.product-card:hover .product-overlay-buttons {
    right: 15px;
    opacity: 1;
}

.product-img-holder img {
    height: 180px;
    object-fit: contain;
}
.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s;
}

.pagination .page-item.active .page-link {
    background-color: #198754;
    color: white;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}
/*product end*/
/*product detail begin*/
.section-product-detail {
    padding: 20px 94px;
}
.img-product {
    width: 600px;
    border-radius: 20px;
}
.swiper-wrapper-product-detail {
    height:450px;
}
.swiper-slide img {
    max-width: 100%;
    height: 422px;
    border-radius: 20px;
}

.thumbs-slider .swiper-slide-thumb-active img {
    border: 4px solid #094533;
}
.thumbs-slider .swiper-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbs-slider .swiper-slide {
    opacity: 0.8;
}

.thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}
.swiper-button-prev,
.swiper-button-next {
    color: #094533;
}
.summary-detail {
    font-size: 20px;
    line-height: 2;
}
.name-product {
    color: var(--color-default);
    font-weight: bold;
}
.desc-product {

}
.spec-product {
    font-size:16px;
}
.buy-number-product {
    display:inline;
}
.price-product {
    display: inline;
}
.price-product-origial {
    text-decoration: line-through;
    color: #ccc;
}
.btn-buy-number {
    background: none;
    color: #000;
    border: 1px solid #ccc;
    margin: 12px;
    padding: 0px 30px;
}
/*product detail end*/

.contact-page textarea {
    height: 200px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
}

.quick-contact-bar {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
    background-color: #F8F9FA; /* Trắng Kem */
    border-radius: 8px;
    margin-bottom: 50px;
}

    .quick-contact-bar h3 {
        font-size: 14px;
        text-transform: uppercase;
        color: #6C757D;
        margin-bottom: 8px;
    }

    .quick-contact-bar a {
        font-size: 18px;
        font-weight: bold;
        color: #2C5F2D;
        text-decoration: none;
    }

        .quick-contact-bar a:hover {
            text-decoration: underline;
        }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: #FFFFFF;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .contact-card h2 {
        font-size: 22px;
        margin-top: 0;
        border-bottom: 2px solid #4CAF50; /* Xanh Lá Mạ */
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
}

    .contact-info-item img.icon {
        width: 20px;
        height: 20px;
        margin-right: 15px;
        margin-top: 3px;
    }

.contact-card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #FF9800; /* Cam Mọng Nước */
    color: #FF9800;
    background-color: transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

    .contact-card .btn:hover {
        background-color: #FF9800;
        color: #FFFFFF;
    }

.accordion {
    display: block;
    margin: 24px auto 0 auto;
    width: 100%;
    max-width: 850px;
}

.accordion-item {
    margin-bottom: 20px
}

.accordion-button {
    transition: ease;
}

.accordion-button:not(.collapsed) {
    color: #16A34A;
    background-color: #F3F4F6;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    border: none
}

.process-step {
    max-width: 300px;
    margin-left: 12px;
    margin-right: 12px
}

.process-working {
    background: #F8F9FA;
    padding-top: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.process-number {
    width: 64px;
    height: 64px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #27C840;
    margin-right: auto;
    margin-left: auto
}

.step-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-detail {
    max-width: 750px;
}

.service-detail h2 {
    font-size: 40px
}
/*home chi tiết begin*/
.title-intro-index {
    color: var(--color-default);
    font-size: var(--size-title-default);
}
.card-service-intro {
    padding: 20px;
    border: 1px solid #f3f5f5;
    margin: 20px;
    border-radius: 20px;
    background: #f3f5f5;
}
.intro-content-title {
    text-align:center;
    font-size:20px;
    font-weight:bold;
}
.intro-content-desc {
    text-align:justify;
}
/*swiper begin*/
.swiper-movies{
    width:100%;
}
.swiper-wrapper-movies{
    padding:2rem 0;
}
.swiper-slide {
    pointer-events: auto !important;
}

.swiper-slide-movies{
    height:350px;
    border-radius:15px;
    overflow:hidden;
    position:relative;
}
.swiper-slide-movies img{
    width:100%;
    object-fit:cover;
    aspect-ratio: 4 / 3;
}
.info {
    position: absolute;
    bottom: -100%;
    opacity: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--color-default);
    color: #dedede;
    transition: bottom 0.5s ease-in-out, opacity 0.6s ease-in-out;
    pointer-events: none;
}
.info h3{
    font-weight: 600;
    margin: 0;
}

.info p {
    pointer-events: none;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 100;
}

.info.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
}

.swiper-slide.swiper-slide-active .info {
    bottom: 0;
    opacity: 1;
}
.swiper-slide-movies a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position:relative;
    z-index:999999999999;
}
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    pointer-events: none;
}
/*swwiper end*/
/*home chi tiết end*/
/*Chi tiết begin*/
.container-detail-service {
    max-width: 1200px !important;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
}
.container-content {
    /*margin-left: 150px;*/
    padding-right: 20px;
}

.img-service {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
}
.desc-content {
    margin-bottom: 20px;
}
.title-category {
    font-weight: bold;
    font-size: 20px;
}

.category-serice {
    background: #f3f5f5;
    padding: 40px;
    border-radius: 15px;
}
.category-container {
    padding: 24px 0;
   
}
.service-item {
    padding: 20px;
    border: 1px solid #ccc;
    margin: 10px 0;
    border-radius: 20px;
    transform-origin: left center;
    transition: transform 0.35s ease;
}
.service-item.active {
    background:#094533;
    color:#fff;
}
.service-item:hover {
    background:#094533;
    color:#fff;
    transform: scaleX(1.5);
}

.service-support {
    margin: 40px 0;
    background: #094533;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
}
.info-support {
    margin: 30px 0;
}
.title-support {
    font-size: 30px;
}
.sub-title-support {
    color: #ccc;
    margin-top: -19px;
    font-size: 13px;
}
.address {
    font-size:15px;
}
.icon-support {
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
}
.service-support .desc {
    margin-left: 34px;
    color: #ccc;
}
.sub-container-des {
    margin-top: -40px;
    margin-left:6px;
}
.des-title {
    margin-left: 34px;
    font-weight: bold;
    font-size: 20px;
}
.inp-info:focus {
    border-color: #094533 !important;
}
.inp-info {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #094533;
    margin:10px;
}
.form-request-info {
    text-align:center;
}
/*.inp-item-info {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin: 10px;
}

.content-request-info {
    width: 100%;
}*/
.inp-item-info {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin: 10px 0;
}

.content-request-info {
    width: 100%;
}

.img-logo {
    width: 100%;
    max-width: 200px;
}
.title-form-info {
    color: #094533;
    font-weight: bold;
    font-size: 32px;
}
.info-request-container {
    margin: auto;
    text-align: justify;
}
/*chi tiết end*/
@media (max-width:992px) {
    .process-step {
        max-width: none;
    }
}

@media (max-width:991px) {
    .container-detail-service {
         padding-left: 0; 
         padding-right: 0;
    }
    .container-content {
        padding-right: 0;
    }

    .category-serice {
        margin-top: 30px;
    }

    .service-support {
        margin-top: 20px;
    }
}

@media (max-width:768px) {
    .container-detail-service {
        padding-left: 0;
        padding-right: 0;
    }
    .img-service {
        max-height: 350px;
    }

    .title-form-info {
        font-size: 24px;
    }
}

@media (max-width:576px) {
    .process-working {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .container-detail-service {
        padding-left: 0;
        padding-right: 0;
    }
    .category-serice {
        padding: 25px;
    }

    .service-item {
        padding: 15px;
    }

    .service-support {
        padding: 15px;
    }

    .title-support {
        font-size: 22px;
    }

    .img-logo {
        margin-bottom: 20px;
    }
}
