/* ===== #hero_sec_abs ===== */
#hero_sec_abs {
    position: relative;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.9) 60%, rgba(220, 240, 220, 0.4) 100%);
}

#hero_sec_abs .hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: -10;
    opacity: 0.3;
    background-image: url('/assets/leaves-bg-CM3S9rSk.jpg');
    background-size: cover;
    background-position: center;
}

#hero_sec_abs .hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: -10;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.9) 60%, rgba(220, 240, 220, 0.4) 100%);
}

#hero_sec_abs .hero-glow-left {
    position: absolute;
    left: -8rem;
    top: 5rem;
    z-index: -10;
    height: 18rem;
    width: 18rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.2);
    filter: blur(48px);
}

#hero_sec_abs .hero-glow-right {
    position: absolute;
    right: -8rem;
    bottom: 2.5rem;
    z-index: -10;
    height: 20rem;
    width: 20rem;
    border-radius: 9999px;
    background: rgba(74, 222, 128, 0.2);
    filter: blur(48px);
}

#hero_sec_abs .hero-container {
    margin: 0 auto;
    display: grid;
    align-items: center;
    column-gap: 3rem;
    padding: 4rem 0em;
}

@media (min-width: 1024px) {
    #hero_sec_abs .hero-container {
        grid-template-columns: 1.05fr 1fr;
        column-gap: 4rem;
        padding: 6rem 0rem;
    }
}

/* ===== #hero_sec_abs — Left Column ===== */
#hero_sec_abs .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero_sec_abs .hero-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
}

#hero_sec_abs .hero-badge svg {
    width: 0.875rem;
    height: 0.875rem;
}

#hero_sec_abs .hero-title {
    margin: 0;
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #111;
    margin-top: 16px;
}

#hero_sec_abs .hero-title span {
    background: linear-gradient(to right, #16a34a, #4ade80, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero_sec_abs .hero-desc {
    margin-top: 1.5rem;
    max-width: 28rem;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

#hero_sec_abs .hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#hero_sec_abs .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    height: 2.5rem;
    padding: 0 2rem;
    border-radius: 0.375rem;
    background: linear-gradient(to right, #16a34a, #4ade80);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(34, 197, 94, 0.4);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin: 0;
}

#hero_sec_abs .hero-btn-primary:hover {
    box-shadow: 0 15px 40px -10px rgba(34, 197, 94, 0.5);
    transform: scale(1.02);
}

#hero_sec_abs .hero-btn-primary svg {
    width: 1rem;
    height: 1rem;
}

#hero_sec_abs .hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 2rem;
    border-radius: 0.375rem;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    text-decoration: none;
    transition: background 0.2s;
}

#hero_sec_abs .hero-btn-secondary:hover {
    background: rgba(34, 197, 94, 0.2);
}

#hero_sec_abs .hero-stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

#hero_sec_abs .hero-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
}

#hero_sec_abs .hero-stat-label {
    font-size: 15px;
    color: #6b7280;
}

#hero_sec_abs .hero-stat-divider {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 1.5rem;
}

/* ===== #hero_sec_abs — Right Column ===== */
#hero_sec_abs .hero-right {
    position: relative;
}

#hero_sec_abs .hero-right-glow {
    pointer-events: none;
    position: absolute;
    inset: -1.5rem;
    z-index: -10;
    border-radius: 3rem;
    background: linear-gradient(to top right, rgba(34, 197, 94, 0.1), transparent, rgba(74, 222, 128, 0.1));
    filter: blur(32px);
}

#hero_sec_abs .hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    #hero_sec_abs .hero-grid {
        gap: 1rem;
    }
}

#hero_sec_abs .hero-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    outline: 1px solid rgba(0, 0, 0, 0.08);
}

#hero_sec_abs .hero-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s;
    display: block;
}

#hero_sec_abs .hero-img-wrap:hover img {
    transform: scale(1.1);
}

#hero_sec_abs .hero-img-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

#hero_sec_abs .hero-img-wrap:hover .hero-img-overlay {
    opacity: 1;
}

/* Grid spans & aspect ratios */
#hero_sec_abs .hero-span-6 {
    grid-column: span 6;
}

#hero_sec_abs .hero-span-4 {
    grid-column: span 4;
}

#hero_sec_abs .hero-span-5 {
    grid-column: span 5;
}

#hero_sec_abs .hero-span-7 {
    grid-column: span 7;
}

#hero_sec_abs .hero-ar-4-3 {
    aspect-ratio: 4/3;
}

#hero_sec_abs .hero-ar-3-4 {
    aspect-ratio: 3/4;
}

#hero_sec_abs .hero-ar-16-9 {
    aspect-ratio: 16/9;
}

/* Float animations */
@keyframes heroFloat1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes heroFloat2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes heroFloat3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

#hero_sec_abs .hero-float-1 {
    animation: heroFloat1 4s ease-in-out infinite;
}

#hero_sec_abs .hero-float-2 {
    animation: heroFloat2 5s ease-in-out infinite;
}

#hero_sec_abs .hero-float-3 {
    animation: heroFloat3 6s ease-in-out infinite;
}

/* Corner badge */
#hero_sec_abs .hero-corner-badge {
    pointer-events: none;
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    display: none;
    height: 6rem;
    width: 6rem;
    transform: rotate(12deg);
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    #hero_sec_abs .hero-corner-badge {
        display: flex;
    }
}

#hero_sec_abs .hero-corner-badge img {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

/* ===== #tam_nhin_sm – scoped styles ===== */

#tam_nhin_sm {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 16px;
    box-sizing: border-box;
}

/* --- Header --- */
#tam_nhin_sm .tam_nhin_sm__header {
    text-align: center;
}

#tam_nhin_sm .tam_nhin_sm__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #16a34a;
    /* primary green */
    text-transform: uppercase;
}

#tam_nhin_sm .tam_nhin_sm__title {
    margin-top: 12px;
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

@media (min-width: 768px) {
    #tam_nhin_sm .tam_nhin_sm__title {
        font-size: 3rem;
    }
}

/* --- Divider row --- */
#tam_nhin_sm .tam_nhin_sm__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

#tam_nhin_sm .tam_nhin_sm__divider-line {
    height: 1px;
    width: 64px;
    background-color: #d1d5db;
}

#tam_nhin_sm .tam_nhin_sm__leaf-icon {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex-shrink: 0;
}

/* --- Cards grid --- */
#tam_nhin_sm .tam_nhin_sm__grid {
    margin: 48px auto 0;
    display: grid;
    max-width: 64rem;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    #tam_nhin_sm .tam_nhin_sm__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Card --- */
#tam_nhin_sm .tam_nhin_sm__card {
    display: flex;
    gap: 20px;
    border-radius: 16px;
    border: 1px solid rgba(209, 213, 219, 0.4);
    background-color: #ffffff;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

#tam_nhin_sm .tam_nhin_sm__card:hover {
    transform: translateY(-4px);
}

/* --- Icon wrapper --- */
#tam_nhin_sm .tam_nhin_sm__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
    flex-shrink: 0;
    border-radius: 16px;
    background-color: rgba(22, 163, 74, 0.1);
}

#tam_nhin_sm .tam_nhin_sm__icon {
    width: 28px;
    height: 28px;
    color: #16a34a;
}

/* --- Card text --- */
#tam_nhin_sm .tam_nhin_sm__card-body {
    flex: 1;
}

#tam_nhin_sm .tam_nhin_sm__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

#tam_nhin_sm .tam_nhin_sm__card-text {
    margin-top: 8px;
    font-size: 0.875rem;
    line-height: 1.625;
    color: #6b7280;
    margin-bottom: 0;
}

/* css page list công việc */
.list_cong_viec {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
}

.list_cong_viec .grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .list_cong_viec .grid {
        grid-template-columns: 1fr;
    }
}

.list_cong_viec .card {
    overflow: hidden;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.list_cong_viec .card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.list_cong_viec .card-image {
    overflow: hidden;
}

.list_cong_viec .card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.list_cong_viec .card:hover .card-image img {
    transform: scale(1.1);
}

.list_cong_viec .card-body {
    padding: 24px;
}

.list_cong_viec .card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.list_cong_viec .card-body p {
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
}

.list_cong_viec .card-btn {
    margin: 0;
}

.list_cong_viec .card-btn {
    margin-top: 20px;
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.list_cong_viec .card-btn:hover {
    background-color: #22c55e;
    color: #ffffff;
}

.list_cong_viec .card-btn svg {
    height: 16px;
    width: 16px;
    min-width: 16px;
}

/* css section giá trị cốt lõi */
.gia_tri_cot_loi {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 0px;
    background: linear-gradient(to bottom, rgba(240, 253, 244, 0.6), #ffffff);
}

.gia_tri_cot_loi .bg-image {
    position: absolute;
    inset: 0;
    z-index: -10;
    opacity: 0.25;
    background-image: url(https://id-preview--b7e8c612-cad3-4526-8c35-f69663c11f0c.lovable.app/assets/leaves-bg-CM3S9rSk.jpg);
    background-size: cover;
}

.gia_tri_cot_loi .bg-overlay {
    position: absolute;
    inset: 0;
    z-index: -10;
    background: linear-gradient(to bottom, rgba(240, 253, 244, 0.6), #ffffff);
}

.gia_tri_cot_loi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.gia_tri_cot_loi .section-header {
    text-align: center;
}

.gia_tri_cot_loi .section-header .label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #22c55e;
}

.gia_tri_cot_loi .section-header h2 {
    margin-top: 12px;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .gia_tri_cot_loi .section-header h2 {
        font-size: 3rem;
    }
}

.gia_tri_cot_loi .divider {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gia_tri_cot_loi .divider .line {
    height: 1px;
    width: 64px;
    background-color: #e5e7eb;
}

.gia_tri_cot_loi .divider svg {
    height: 16px;
    width: 16px;
    color: #22c55e;
}

.gia_tri_cot_loi .accordion-list {
    margin: 48px auto 0;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gia_tri_cot_loi .accordion-item {
    display: block;
    width: 100%;
    border-radius: 16px;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    padding: 0;
}

.gia_tri_cot_loi .accordion-item.active {
    background-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}

.gia_tri_cot_loi .accordion-item.inactive {
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gia_tri_cot_loi .accordion-item.inactive:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.gia_tri_cot_loi .accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.gia_tri_cot_loi .icon-wrap {
    display: flex;
    height: 48px;
    width: 48px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gia_tri_cot_loi .accordion-item.active .icon-wrap {
    background-color: rgba(255, 255, 255, 0.15);
}

.gia_tri_cot_loi .accordion-item.inactive .icon-wrap {
    background-color: rgba(34, 197, 94, 0.1);
}

.gia_tri_cot_loi .accordion-item.active .icon-wrap svg {
    color: #ffffff;
}

.gia_tri_cot_loi .accordion-item.inactive .icon-wrap svg {
    color: #22c55e;
}

.gia_tri_cot_loi .accordion-item h3 {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.gia_tri_cot_loi .toggle-icon {
    height: 20px;
    width: 20px;
    transition: transform 0.3s ease;
}

.gia_tri_cot_loi .accordion-item.active .toggle-icon {
    transform: rotate(45deg);
}

.gia_tri_cot_loi .accordion-body {
    display: none;
    padding: 0 20px 20px 72px;
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9;
}

.gia_tri_cot_loi .accordion-item.active .accordion-body {
    display: block;
}

/* shortcodelhsx */
/* === #footer_abs scoped styles === */

#footer_abs {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#footer_abs .footer_abs__card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #16a34a, #14532d);
    padding: 2.5rem;
    color: #ffffff;
}

#footer_abs .footer_abs__glow-tr {
    position: absolute;
    right: -2.5rem;
    top: -2.5rem;
    height: 16rem;
    width: 16rem;
    border-radius: 50%;
    background: rgba(134, 239, 172, 0.30);
    filter: blur(48px);
    pointer-events: none;
}

#footer_abs .footer_abs__glow-bl {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    height: 16rem;
    width: 16rem;
    border-radius: 50%;
    background: rgba(134, 239, 172, 0.20);
    filter: blur(48px);
    pointer-events: none;
}

#footer_abs .footer_abs__grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}

#footer_abs .footer_abs__heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

#footer_abs .footer_abs__desc {
    margin-top: 1rem;
    max-width: 28rem;
    opacity: 0.90;
    line-height: 1.6;
}

#footer_abs .footer_abs__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#footer_abs .footer_abs__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
    outline: none;
}

#footer_abs .footer_abs__btn:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

#footer_abs .footer_abs__btn--solid {
    background-color: #ffffff;
    color: #16a34a;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

#footer_abs .footer_abs__btn--solid:hover {
    background-color: rgba(255, 255, 255, 0.90);
}

#footer_abs .footer_abs__btn--outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.30);
}

#footer_abs .footer_abs__btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.10);
}

/* Responsive: md breakpoint (≥768px) */
@media (min-width: 768px) {
    #footer_abs .footer_abs__card {
        padding: 4rem;
    }

    #footer_abs .footer_abs__grid {
        grid-template-columns: 1fr 1fr;
    }

    #footer_abs .footer_abs__heading {
        font-size: 2.25rem;
    }

    #footer_abs .footer_abs__actions {
        justify-content: flex-end;
    }
}