/* ============================================
   HanoiLink - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #131313;
    background: white;
    overflow-x: hidden;
}

.hnlen-container {
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    position: relative;
    background: white;
}
/* Language Switcher */
.hnlen-language-switcher {
    position: fixed;
    top: 24px;
    right: 24px;
    left:auto !important;
    bottom: inherit !important;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.hnlen-language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #4d7b3a;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #4d7b3a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hnlen-lang-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.hnlen-language-btn:hover {
    background: #4d7b3a;
    color: white;
    box-shadow: 0 4px 12px rgba(77, 123, 58, 0.3);
}

.hnlen-language-btn svg {
    transition: transform 0.3s ease;
}

.hnlen-language-switcher.active .hnlen-language-btn svg {
    transform: rotate(180deg);
}

.hnlen-language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto !important;
    bottom: inherit !important;
    background: white;
    border: 2px solid #4d7b3a;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hnlen-language-switcher.active .hnlen-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hnlen-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #131313;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.hnlen-lang-option .hnlen-lang-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.hnlen-lang-option span:not(.hnlen-lang-flag):not(.hnlen-lang-code) {
    flex: 1;
}

.hnlen-lang-option:last-child {
    border-bottom: none;
}

.hnlen-lang-option:hover {
    background: #f5f5f5;
    color: #4d7b3a;
}

.hnlen-lang-option.active {
    background: #4d7b3a;
    color: white;
}

.hnlen-lang-code {
    font-size: 12px;
    font-weight: 600;
    color: #97AC54;
    flex-shrink: 0;
}

.hnlen-lang-option.active .hnlen-lang-code {
    color: white;
}

.hnlen-lang-option:hover .hnlen-lang-code {
    color: #4d7b3a;
}

.hnlen-lang-option.active:hover .hnlen-lang-code {
    color: white;
}
/* Background Sections */
.bg-section {
    position: absolute;
    width: 100%;
    left: 0;
}

/* Hero Section */
.hnlen-hero {
    position: relative;
    width: calc(100% - 32px);
    max-width: 1695px;
    height: 100vh;
    margin: 14px auto;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 29%, rgba(0, 0, 0, 0.50) 49%, rgba(0, 0, 0, 0.50) 60%), url('../images/v1259_2240.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 24px 80px 195px;
}

.hnlen-hero-logo {
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 2;
    height: auto;
    max-width: 200px;
}

.hnlen-hero-content {
    position: relative;
    z-index: 1;
    max-width: 723px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hnlen-hero-title {
    color: white;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
}

.hnlen-hero-subtitle {
    color: white;
    font-size: 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

/* Buttons */
.hnlen-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-family: 'Baloo 2', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hnlen-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hnlen-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hnlen-btn-primary {
    background: #3E622E;
    color: white;
    width: 218px;
}

.hnlen-btn-primary:hover {
    background: #2d4a22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 98, 46, 0.3);
}

.hnlen-hero .hnlen-btn-primary {
    background: #F05A25;
    width: fit-content;
    min-width: auto;
    align-self: flex-start;
    text-decoration: none;
    display: inline-flex;
}

.hnlen-hero .hnlen-btn-primary:hover {
    background: #d94a1f;
    transform: translateY(-2px);
    text-decoration: none;
}

.hnlen-btn-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Badge */
.hnlen-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 40px;
    border: 1px solid #4D7B3A;
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
}

.hnlen-badge-white {
    border-color: white;
    color: white;
}

/* About Section */
.hnlen-about {
    padding: 50px 0;
    position: relative;
}

.hnlen-about-grid {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 37px;
    justify-content: center;
    flex-wrap: nowrap;
}

.hnlen-about-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 382px;
    padding: 30px 20px 0;
    background: #F6F5F2;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hnlen-about-card-green {
    background: #83A655;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0 20px 30px;
}

.hnlen-about-card-green::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -25px;
    width: 230px;
    height: 230px;
    background-image: url('../images/logo-union.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.hnlen-about-card-green > * {
    position: relative;
    z-index: 1;
}

.hnlen-about-card > img {
    width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 20px;
}

.hnlen-about-card > p {
    color: #131313;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    min-height: 145px;
}

.hnlen-about-card-green p {
    color: white;
    min-height: 99px;
}

/* Video Section */
.hnlen-video {
    padding: 50px 0;
    text-align: center;
}

.hnlen-video-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.hnlen-video-item {
    flex: 1 1 0;
    min-width: 500px;
    max-width: 590px;
}

.hnlen-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hnlen-video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hnlen-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Section Headers */
.hnlen-section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.hnlen-section-title {
    color: black;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 42px;
    max-width: 670px;
}

.hnlen-section-title-white {
    color: white;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 50px;
}

.hnlen-section-description {
    color: black;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 32px;
    max-width: 670px;
    margin: 0 auto;
}

/* Strengths Section */
.hnlen-strengths {
    padding: 50px 0 0; 
    text-align: center;
}

/* Advantages & Vietnam Labor Section */
.hnlen-advantages-labor {
    padding: 50px 0;
    background: #1C4B42;
    border-radius: 20px;
    margin: 0 16px;
}

.hnlen-advantages-labor-content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hnlen-advantages-section {
    margin-bottom: 50px;
}

.hnlen-advantages-title {
    color: white;
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 50px;
}

.hnlen-advantages-grid {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: nowrap;
}

.hnlen-advantage-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 223px;
    padding: 20px;
    background: linear-gradient(129deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0) 91%);
    border-radius: 20px;
    border: 1px solid #4E9D8E;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hnlen-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: #6CA057;
}

.hnlen-advantage-card:hover .hnlen-advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.hnlen-advantage-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-advantage-card > h3 {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.hnlen-advantage-card > p {
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    min-height: 60px;
}

/* Labor Section (inside advantages-labor) */
.hnlen-labor-section {
    margin-top: 50px;
}

.hnlen-labor-section .hnlen-section-title-white {
    margin-bottom: 50px;
}

.hnlen-labor-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;
}

.hnlen-labor-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 380px;
    padding: 20px;
    background: linear-gradient(169deg, white 30%, #F6F5F2 30%);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hnlen-labor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hnlen-labor-card:hover img {
    transform: scale(1.05);
}

.hnlen-labor-card > img {
    flex: 1 1 0;
    height: 244px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-labor-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: start;
}

.hnlen-labor-badge {
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    padding: 8px 0;
}

.hnlen-labor-content > p {
    color: #131313;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 25px;
    min-height: 145px;
    display: flex;
    align-items: center;
}

/* Success Section */
.hnlen-success {
    padding: 50px 0 0;
    text-align: center;
}

/* Gallery Section */
.hnlen-gallery {
    padding: 0px 0 50px;
    max-width: 1221px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hnlen-gallery-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hnlen-gallery-slider:active {
    cursor: grabbing;
}

.hnlen-gallery-slides {
    position: relative;
    width: 100%;
    height: 598px;
    overflow: hidden;
    border-radius: 20px;
    contain: layout style paint;
    touch-action: pan-y;
}

.hnlen-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hnlen-gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.hnlen-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.hnlen-gallery-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.hnlen-dot {
    width: 12px;
    height: 12px;
    background: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hnlen-dot:hover {
    background: #3E622E;
}

.hnlen-dot.active {
    width: 39px;
    background: #3E622E;
    border-radius: 40px;
}

/* Training Section */
.hnlen-training {
    padding: 20px 0 50px;
}

.hnlen-training-grid {
    max-width: 1222px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hnlen-training-card {
    flex: 1 1 0;
    min-width: 500px;
    max-width: 591px;
    padding: 20px;
    background: linear-gradient(169deg, white 30%, #F6F5F2 30%);
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hnlen-training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hnlen-training-card:hover > img {
    transform: scale(1.05);
}

.hnlen-training-card > img {
    flex: 1 1 0;
    height: 282px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-training-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hnlen-training-badge {
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hnlen-training-badge-icon {
    width: auto;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.hnlen-training-content p {
    color: black;
    font-size: 18px;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 28px;
    min-height: 190px;
    display: flex;
    align-items: center;
}

/* Process Section */
.hnlen-process {
    padding: 50px 0;
    text-align: center;
    background: #F7F7F4;
}

.hnlen-process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    min-height: 300px;
    background-image: url('../images/line.svg');
    background-repeat: no-repeat;
    background-position: 158px 92px;
    background-size: 1040px;
}

.hnlen-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Hàng 1: 1-4 (từ trái sang phải) */
.hnlen-step-1 {
    grid-column: 1;
    grid-row: 1;
}

.hnlen-step-2 {
    grid-column: 2;
    grid-row: 1;
}

.hnlen-step-3 {
    grid-column: 3;
    grid-row: 1;
}

.hnlen-step-4 {
    grid-column: 4;
    grid-row: 1;
}

/* Hàng 2: 5-8 (từ phải sang trái) */
.hnlen-step-5 {
    grid-column: 4;
    grid-row: 2;
}

.hnlen-step-6 {
    grid-column: 3;
    grid-row: 2;
}

.hnlen-step-7 {
    grid-column: 2;
    grid-row: 2;
}

.hnlen-step-8 {
    grid-column: 1;
    grid-row: 2;
}

.hnlen-step-start-icon {
    width: auto;
    height: 24px;
    margin-top: 10px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hnlen-step-end-icon {
    width: auto;
    height: 29px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hnlen-step-dot {
    width: auto;
    height: 22px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hnlen-step-dot-bottom {
    margin-top: 13px;
}

.hnlen-step-dot-top {
    margin-bottom: 5px;
}

.hnlen-step-number {
    width: 38px;
    height: 30px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #97AC54;
    font-size: 30px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    line-height: 31px;
    margin: 5px 0;
    position: relative;
    z-index: 2;
}

.hnlen-process-step > p {
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

/* Industries Section */
.hnlen-industries {
    padding: 60px 0;
}

.hnlen-industries-grid {
    max-width: 1221px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hnlen-industry-card {
    background: linear-gradient(169deg, white 30%, #F6F5F2 30%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hnlen-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hnlen-industry-card:hover > img {
    transform: scale(1.05);
}

.hnlen-industry-card:hover .hnlen-industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.hnlen-industry-card > img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-industry-label {
    padding: 10px 20px 20px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.hnlen-industry-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-industry-label span:last-child {
    flex: 1 1 0;
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
}

/* Training Center Section */
.hnlen-training-center {
    padding: 50px 0 0;
    text-align: center;
}

/* Achievements & Partners Section */
.hnlen-achievements-partners {
    background: #F7F7F4;
    padding: 50px 0;
}

/* Achievements Section */
.hnlen-achievements {
    padding: 0;
}

.hnlen-achievements-grid {
    max-width: 1216px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hnlen-achievement-item {
    flex: 1 1 0;
    min-width: 300px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-achievement-item:hover {
    transform: translateY(-5px);
}

.hnlen-achievement-item:hover .hnlen-achievement-number {
    transform: scale(1.1);
    color: #3E622E;
}

.hnlen-achievement-item::before {
    content: '';
    width: 72px;
    height: 1px;
    background: #97AC54;
    transform: rotate(90deg);
}

.hnlen-achievement-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.hnlen-achievement-number {
    color: #4D7B3A;
    font-size: 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-achievement-content p {
    color: black;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin: 0;
}

/* Partners Section */
.hnlen-partners {
    padding: 50px 0 0;
    text-align: center;
    max-width: 1178px;
    margin: 0 auto;
    position: relative;
}

.hnlen-partners .hnlen-badge {
    position: relative;
    display: inline-block;
    border:0;
    padding:0;

}
.hnlen-partners .hnlen-badge span {
    position: relative;
    display: inline-block;
    z-index: 1;
    background: #F7F7F4;
    padding: 8px 12px;
    border: 1px solid #4D7B3A;
    border-radius: 40px;
}
.hnlen-partners .hnlen-badge::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100vw;
    max-width: 1178px;
    height: 1px;
    background: #3E622E;
    z-index: 0;
}

.hnlen-partners-logos-wrapper {
    margin-top: 20px;
    position: relative;
}

.hnlen-partners-logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hnlen-partners-logos-slider:active {
    cursor: grabbing;
}

.hnlen-partners-logos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    justify-content: space-between;
    touch-action: pan-y;
}

.hnlen-partners-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hnlen-partners-logo-item img {
    height: 70px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.hnlen-partners-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hnlen-partners-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.hnlen-partners-dot.active {
    background: #4D7B3A;
}

.hnlen-partners-slide-mode .hnlen-partners-logos-track {
    gap: 0;
}

.hnlen-partners-slide-mode .hnlen-partners-logo-item {
    padding: 0 10px;
}

.hnlen-partners-slide-mode .hnlen-partners-logos-slider {
    overflow: hidden;
}

@media (min-width: 769px) {
    .partners-logos-wrapper:not(.partners-slide-mode) .hnlen-partners-logos-track {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .partners-logos-wrapper:not(.partners-slide-mode) .hnlen-partners-dots {
        display: none;
    }
}
@media (max-width: 1200px) {
    .hnlen-process-timeline {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
        max-width: 900px;
        margin: 50px auto 0;
        position: relative;
        background-image: none;
        min-height: auto;
    }
    .hnlen-partners .hnlen-badge::after{display: none;}
    .hnlen-process-timeline::before {
        content: '';
        position: absolute;
        left: 36px;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: linear-gradient(180deg, #97AC54 0%, rgba(151, 172, 84, 0.3) 50%, #97AC54 100%);
        z-index: 0;
        border-radius: 2px;
    }
    
    .hnlen-process-step {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 0;
        text-align: left;
        z-index: 1;
        transition: transform 0.3s ease;
    }
    
    .hnlen-process-step:hover {
        transform: translateX(5px);
    }
    
    .hnlen-process-step::before {
        content: '';
        position: absolute;
        left: 25.5px;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #97AC54;
        border: 5px solid #F7F7F4;
        box-shadow: 0 2px 8px rgba(151, 172, 84, 0.3);
        z-index: 1;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .hnlen-process-step:hover::before {
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 4px 12px rgba(151, 172, 84, 0.5);
    }
    
    .hnlen-step-number {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        border: 3px solid #97AC54;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #97AC54;
        font-size: 28px;
        font-family: 'Baloo 2', sans-serif;
        font-weight: 700;
        margin: 0;
        flex-shrink: 0;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .hnlen-process-step:hover .hnlen-step-number {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(151, 172, 84, 0.25);
        border-color: #7a9544;
    }
    
    .hnlen-process-step > p {
        flex: 1;
        margin: 0;
        font-size: 17px;
        line-height: 26px;
        color: #131313;
        text-align: left;
        max-width: 100%;
        font-weight: 400;
        background: white;
        padding: 20px 28px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }
    
    .hnlen-process-step:hover > p {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }
    
.hnlen-step-start-icon,
.hnlen-step-end-icon,
    .hnlen-step-dot {
        display: none !important;
    }
    
.hnlen-step-1,
.hnlen-step-2,
.hnlen-step-3,
.hnlen-step-4,
.hnlen-step-5,
.hnlen-step-6,
.hnlen-step-7,
    .hnlen-step-8 {
        grid-column: auto;
        grid-row: auto;
    }
    
.hnlen-step-1::before,
.hnlen-step-8::before {
        background: #97AC54;
        border-color: #F7F7F4;
        box-shadow: 0 2px 8px rgba(151, 172, 84, 0.4);
    }
}

@media (max-width: 768px) {
    .hnlen-process-timeline {
        padding: 0 16px;
        max-width: 100%;
        gap: 20px;
        margin-top: 40px;
    }
    
    .hnlen-process-timeline::before {
        left: 28px;
        width: 2px;
        top: 10px;
    }
    
    .hnlen-process-step {
        gap: 16px;
        align-items: center;
    }
    
    .hnlen-process-step::before {
        left: 17px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-width: 4px;
    }
    
    .hnlen-process-step:hover::before {
        transform: translateY(-50%) scale(1.15);
    }
    
    .hnlen-step-number {
        width: 56px;
        height: 56px;
        font-size: 22px;
        border-width: 2px;
    }
    
    .hnlen-process-step > p {
        padding: 16px 24px;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .hnlen-process-timeline {
        padding: 0 12px;
        gap: 16px;
        margin-top: 30px;
    }
    
    .hnlen-process-timeline::before {
        left: 24px;
        width: 2px;
        top: 10px;
    }
    
    .hnlen-process-step {
        gap: 12px;
        align-items: center;
    }
    
    .hnlen-process-step::before {
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border-width: 3px;
    }
    
    .hnlen-process-step:hover::before {
        transform: translateY(-50%) scale(1.15);
    }
    
    .hnlen-step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-width: 2px;
    }
    
    .hnlen-process-step > p {
        padding: 14px 20px;
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .hnlen-partners-logo-item img {
        height: 60px;
    }
}

/* Commitments Section */
.hnlen-commitments {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hnlen-commitments-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.hnlen-commitments-content {
    flex: 1 1 0;
    min-width: 300px;
}

.hnlen-commitments-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.hnlen-commitments-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hnlen-commitments-list li:hover {
    transform: translateX(10px);
}

.hnlen-commitments-list li:hover .hnlen-commitment-icon {
    transform: scale(1.2) rotate(5deg);
}

.hnlen-commitment-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-commitments-list li span:last-child {
    color: #131313;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 20px;
}

.hnlen-world-map {
    flex: 1 1 0;
    min-width: 300px;
    position: relative;
}

.hnlen-world-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-world-map:hover img {
    transform: scale(1.02);
}

.hnlen-map-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hnlen-map-label {
    position: absolute;
    color: white;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Section */
.hnlen-contact {
    padding: 50px 0;
    max-width: 1221px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.hnlen-contact-form {
    flex: 1 1 0;
    padding: 50px;
    background: #F6F5F2;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-right: -20px;
}

.hnlen-contact-form .hnlen-section-header {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 15px;
}
.hnlen-contact-form .hnlen-section-header p{
    font-size: 20px;
    color: #131313;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.hnlen-contact-image {
    flex: 1 1 0;
    position: relative;
}

.hnlen-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-contact-image:hover img {
    transform: scale(1.02);
}

/* Form Styles */
.hnlen-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hnlen-form-row {
    display: flex;
    gap: 10px;
}

.hnlen-form-group {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hnlen-form-group label {
    color: #131313;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 21px;
}

.hnlen-form-group input {
    height: 52px;
    padding: 14px 16px;
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #131313;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hnlen-form-group input:focus {
    outline: none;
    border-color: #3E622E;
    box-shadow: 0 0 0 3px rgba(62, 98, 46, 0.1);
    transform: translateY(-2px);
}

.hnlen-form-group input::placeholder {
    color: #D9D9D9;
}

/* Contact Info Section */
.hnlen-contact-info {
    padding: 20px;
    background: #F6F5F2;
    border-radius: 20px;
    text-align: center;
    max-width: 785px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hnlen-contact-info-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    flex-shrink: 0;
    position: absolute;
    left: 15px;
}

.hnlen-contact-info p {
    color: black;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 32px;
    margin: 0;
    text-align: center;
}

.hnlen-contact-info strong {
    font-weight: 700;
}

/* Footer */
.hnlen-footer {
    padding: 40px 48px 24px;
    background: #4d7b3a;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #FAFAFA;
}

.hnlen-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-footer-logo img {
    width: 312px;
    height: 84px;
}

.hnlen-footer-spacer {
    width: 312px;
    height: 84px;
    background: white;
}

.hnlen-footer-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hnlen-footer-nav a {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    padding-right: 12px;
    border-right: 1px solid #6CA057;
}

.hnlen-footer-nav a:last-child {
    border-right: none;
    padding-right: 0;
}

.hnlen-footer-nav a:hover {
    text-decoration: underline;
}

.hnlen-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-footer-column {
    flex: 1 1 0;
    min-width: 250px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hnlen-footer-social-column {
    max-width: 450px;
}

.hnlen-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hnlen-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hnlen-social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.hnlen-social-icons .hnlen-social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hnlen-footer-column .hnlen-footer-logo {
    margin-bottom: 0;
}

.hnlen-footer-column .hnlen-footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 12px;
}

.hnlen-footer-column h3 {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.hnlen-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: white;
}

.hnlen-footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hnlen-footer-column ul li {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hnlen-footer-column ul li a {
    color: #FAFAFA;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hnlen-footer-column ul li a:hover {
    color: #98DB7C;
    text-decoration: underline;
}

.hnlen-footer-column p {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.hnlen-footer-column p a {
    color: #FAFAFA;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hnlen-footer-column p a:hover {
    color: #98DB7C;
    text-decoration: underline;
}

.hnlen-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.hnlen-footer-social {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-social-group {
    flex: 1 1 0;
    min-width: 150px;
}

.hnlen-social-group h3 {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hnlen-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.hnlen-social-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 12px;
    border-left: 1px solid white;
    margin-left: 10px;
}

.hnlen-social-group ul li {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.hnlen-social-group a {
    color: #fff;
    text-decoration: none;
}

.hnlen-social-group a:hover {
    text-decoration: underline;
    color: #98DB7C;
}

.hnlen-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.hnlen-certificate {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

.hnlen-certificate img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.hnlen-certificate span {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hnlen-footer-legal {
    text-align: right;
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

.hnlen-footer-legal p {
    margin: 0;
}

/* Responsive Design */

/* Laptop nhỏ (1024px - 1366px) */
@media (max-width: 1366px) {
    .hnlen-hero {
        padding: 0 24px 80px 120px;
    }
    
    .hnlen-hero-logo {
        max-width: 150px;
    }
    
    .hnlen-about-grid {
        gap: 24px;
    }
    
    .hnlen-contact-form {
        padding: 40px;
    }
}

/* Laptop nhỏ và Tablet lớn (1024px - 1200px) */
@media (max-width: 1200px) {
    .hnlen-container {
        padding: 0 20px;
    }
    
    .hnlen-hero {
        padding: 0 24px 80px 80px;
        height: 700px;
    }
    
    .hnlen-hero-logo {
        left: 20px;
        top: 20px;
        max-width: 140px;
    }
    
    .hnlen-hero-title {
        font-size: 36px;
    }
    
    .hnlen-hero-subtitle {
        font-size: 28px;
    }
    
    .hnlen-hero-content {
        max-width: 600px;
    }
    
    .hnlen-section-title {
        font-size: 28px;
    }
    
    .hnlen-about-grid {
        padding: 0 20px;
        gap: 20px;
    }
    
    .hnlen-about-card {
        padding: 24px 16px 0;
    }
    
    .hnlen-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hnlen-contact {
        padding: 40px 20px;
    }
    
    .hnlen-contact-form {
        padding: 35px;
    }
    
    .hnlen-commitments-wrapper {
        gap: 30px;
    }
    
    .hnlen-certificate {
        max-width: 240px;
    }
    
    .hnlen-certificate span {
        max-width: 180px;
    }
    
    .hnlen-footer-legal {
        max-width: 450px;
    }
}

/* iPad và Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    
    .hnlen-hero {
        padding: 0 20px 60px 60px;
        height: 600px;
    }
    
    .hnlen-hero-logo {
        left: 16px;
        top: 16px;
        max-width: 120px;
    }
    
    .hnlen-hero-title {
        font-size: 32px;
    }
    
    .hnlen-hero-subtitle {
        font-size: 24px;
    }
    
    .hnlen-hero-content {
        max-width: 500px;
        gap: 20px;
    }
    
    .hnlen-about-grid {
        flex-wrap: wrap;
    }
    
    .hnlen-about-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }
    
    .hnlen-advantages-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hnlen-advantage-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 180px;
    }
    
    .hnlen-labor-grid {
        flex-wrap: wrap;
    }
    
    .hnlen-labor-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 250px;
    }
    
    .hnlen-training-grid {
        flex-wrap: wrap;
    }
    
    .hnlen-training-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }
    
    .hnlen-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hnlen-gallery {
        padding: 0 20px 40px;
    }
    
    .hnlen-gallery-slides {
        height: 500px;
    }
    
    .hnlen-contact {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .hnlen-contact-form {
        padding: 30px;
        margin-right: 0;
    }
    
    .hnlen-contact-image {
        width: 100%;
    }
    
    .hnlen-commitments-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .hnlen-world-map {
        order: -1;
    }
    
    .hnlen-video-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 16px;
    }
    
    .hnlen-video-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .hnlen-footer-content {
        flex-wrap: wrap;
    }
    
    .hnlen-footer-column {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }
    
    .hnlen-footer-social {
        flex-wrap: wrap;
    }
    
    .hnlen-social-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 180px;
    }
    
    .hnlen-footer-bottom {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hnlen-certificate {
        flex: 1 1 calc(50% - 12px);
        max-width: 100%;
    }
    
    .hnlen-certificate span {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hnlen-footer-legal {
        flex: 1 1 100%;
        text-align: left;
        max-width: 100%;
    }
}

/* Mobile và Tablet nhỏ (max-width: 768px) */
@media (max-width: 768px) {
    .hnlen-language-switcher {
        top: 16px;
        right: 16px;
    }

    .hnlen-language-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hnlen-language-dropdown {
        min-width: 150px;
    }

    .hnlen-lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }
    .hnlen-hero {
        height: auto;
        min-height: 500px;
        padding: 20px 16px 40px;
        align-items: center;
        justify-content: flex-end;
    }
    
    .hnlen-hero-logo {
        left: 16px;
        top: 16px;
        max-width: 100px;
    }
    
    .hnlen-hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hnlen-hero-title {
        font-size: 28px;
        text-align: center;
    }
    
    .hnlen-hero-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .hnlen-hero .hnlen-btn-primary {
        align-self: center;
    }
    
    .hnlen-about {
        padding: 40px 0;
    }
    
    .hnlen-about-grid {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }
    
    .hnlen-video {
        padding: 40px 0;
    }
    
    .hnlen-video-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 16px;
    }
    
    .hnlen-video-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .hnlen-about-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .hnlen-about-card-green {
        padding: 20px 16px 30px;
    }
    
    .hnlen-labor-grid,
    .hnlen-training-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .hnlen-labor-card,
    .hnlen-training-card {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .hnlen-training-card {
        flex-direction: column;
        padding: 16px;
    }
    
    .hnlen-training-card > img {
        width: 100%;
        height: auto;
        flex: none;
    }
    
    .hnlen-labor-card > img{
        height: auto;
    }
    .hnlen-training-content {
        flex: none;
    }
    
    .hnlen-training-content p {
        min-height: auto;
        font-size: 18px;
        line-height: 24px;
    }
    
    .hnlen-advantages-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .hnlen-advantage-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    
    .hnlen-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hnlen-industry-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .hnlen-achievements-grid {
        padding: 0 16px;
    }
    
    .hnlen-achievement-item {
        gap: 0;
    }
    
    .hnlen-achievement-item::before {
        display: none;
    }
    
    .hnlen-achievement-content {
        padding-left: 0;
    }
    
    .hnlen-gallery {
        padding: 0 16px 40px;
    }
    
    .hnlen-gallery-slides {
        height: 400px;
    }
    
    .hnlen-gallery-slider {
        height: auto;
    }
    
    .hnlen-contact {
        flex-direction: column;
        padding: 30px 16px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .hnlen-contact-form {
        padding: 25px;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hnlen-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .hnlen-form-group {
        width: 100%;
    }
    
    .hnlen-form-group input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hnlen-contact-image img {
        border-radius: 16px 16px 0 0;
    }
    
    .hnlen-contact-info {
        padding: 0 16px;
        margin-bottom: 40px;
    }
    
    .hnlen-contact-info-icon {
        left: 16px;
    }
    
    .hnlen-commitments {
        padding: 40px 16px;
    }
    
    .hnlen-commitments-wrapper {
        flex-direction: column;
    }
    
    .hnlen-world-map {
        order: -1;
    }
    
    .hnlen-footer {
        padding: 30px 24px 20px;
    }
    
    .hnlen-footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .hnlen-footer-logo img {
        width: 250px;
        height: auto;
    }
    
    .hnlen-footer-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hnlen-footer-nav a {
        border-right: none;
        border-bottom: 1px solid #6CA057;
        padding-right: 0;
        padding-bottom: 8px;
    }
    
    .hnlen-footer-nav a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .hnlen-footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hnlen-footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .hnlen-footer-social {
        flex-direction: column;
        gap: 30px;
    }
    
    .hnlen-social-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .hnlen-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hnlen-certificate {
        max-width: 100%;
        width: 100%;
    }
    
    .hnlen-certificate span {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hnlen-footer-legal {
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile nhỏ (max-width: 480px) */
@media (max-width: 480px) {
    .hnlen-language-switcher {
        top: 12px;
        right: 12px;
    }

    .hnlen-language-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .hnlen-language-dropdown {
        min-width: 140px;
    }

    .hnlen-lang-option {
        padding: 8px 10px;
        font-size: 12px;
    }
    .hnlen-container {
        padding: 0;
    }
    
    .hnlen-hero {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 16px 12px 30px;
        min-height: 400px;
    }
    
    .hnlen-hero-logo {
        left: 12px;
        top: 12px;
        max-width: 80px;
    }
    
    .hnlen-hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hnlen-hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .hnlen-hero-content {
        gap: 16px;
    }
    
    .hnlen-btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .hnlen-section-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hnlen-about {
        padding: 30px 0;
    }
    
    .hnlen-about-grid {
        padding: 0 12px;
    }
    
    .hnlen-video {
        padding: 30px 0;
    }
    
    .hnlen-video-grid {
        padding: 0 12px;
        gap: 20px;
    }
    
    .hnlen-video-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .hnlen-about-card {
        padding: 20px 16px 0;
    }
    
    .hnlen-about-card > img {
        height: 200px;
    }
    
    .hnlen-section-header {
        padding: 0 12px;
    }
    
    .hnlen-section-header p {
        font-size: 14px;
    }
    
    .hnlen-badge {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .hnlen-industries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hnlen-industry-card > img {
        height: 250px;
    }
    
    .hnlen-industry-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .hnlen-training-card {
        padding: 12px;
    }
    
    .hnlen-training-card > img {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
    
    .hnlen-training-content p {
        font-size: 16px;
        line-height: 22px;
        min-height: auto;
    }
    
    .hnlen-training-badge {
        font-size: 14px;
    }
    
    .hnlen-gallery {
        padding: 0 12px 30px;
    }
    
    .hnlen-gallery-slides {
        height: 300px;
    }
    
    .hnlen-gallery-slider {
        height: auto;
    }
    
    .hnlen-gallery-dots {
        margin-top: 20px;
    }
    
    .hnlen-contact {
        padding: 20px 12px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .hnlen-contact-form {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hnlen-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .hnlen-form-group {
        width: 100%;
    }
    
    .hnlen-form-group input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hnlen-contact-form .hnlen-section-header {
        margin-bottom: 20px;
    }
    
    .hnlen-form-group label {
        font-size: 14px;
    }
    
    .hnlen-form-group input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .hnlen-contact-image img {
        border-radius: 12px;
    }
    
    .hnlen-contact-info {
        padding: 0 12px;
        margin-bottom: 30px;
    }
    
    .hnlen-contact-info-icon {
        left: 12px;
        width: 45px;
        height: 45px;
    }
    
    .hnlen-contact-info p {
        font-size: 14px;
        padding-left: 60px;
    }
    
    .hnlen-commitments {
        padding: 30px 12px;
    }
    
    .hnlen-commitments-list {
        gap: 20px;
    }
    
    .hnlen-commitments-list li span:last-child {
        font-size: 18px;
    }
    
    .hnlen-achievements-grid {
        gap: 20px;
        padding: 0 12px;
    }
    
    .hnlen-achievement-item {
        gap: 0;
        min-width: 100%;
    }
    
    .hnlen-achievement-item::before {
        display: none;
    }
    
    .hnlen-achievement-content {
        padding-left: 0;
        width: 100%;
    }
    
    .hnlen-achievement-number {
        font-size: 36px;
    }
    
    .hnlen-partners-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .hnlen-partners-logos img {
        height: 50px;
    }
    
    .hnlen-footer {
        padding: 30px 16px 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .hnlen-footer-logo img {
        width: 200px;
    }
    
    .hnlen-footer-column h3 {
        font-size: 18px;
    }
    
    .hnlen-footer-column ul li,
    .hnlen-social-group ul li {
        font-size: 13px;
    }
    
.hnlen-certificate span,
.hnlen-footer-legal {
    font-size: 12px;
}
}

@media (max-width: 603px) {
    .hnlen-contact-info {
        flex-direction: column;
    }
    .hnlen-contact-info p {
        padding-left: 0;
    }
    .hnlen-contact-info-icon {
        position: relative;
    }
}
@media (max-width: 392px) {
    .hnlen-labor-card,.hnlen-contact-info{
        flex-direction: column;
    }
    .hnlen-labor-content>p{
        min-height: auto;
    }
    .hnlen-partners{
        max-width: 100%;
    }
    .hnlen-badge{
        text-wrap:inherit
    }
    .hnlen-contact-info-icon{
        position: relative;
    }
    .hnlen-contact-info p{
        padding-left: 0;
    }
}