
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto";
    color: var(--color-text-base);
}

@font-face {
    font-family: "UTM Bebas";
    src: url("../fonts/UTM-Bebas.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Search section */
.search-section {
    background-color: var(--color-primary);
    padding: 60px 0 80px;
}

.search-section .container {
    max-width: 1109px;
    margin: 0 auto;
}

.search-filters {
    background-color: var(--color-bg-white);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}
.search-filters .search-btn img{
    width: 24px;
    height: 24px;
}
.filter-group {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.filter-group select {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: var(--color-text-dark);
    appearance: none;
    font-weight: 400;
}

.filter-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.filter-group:not(:last-child) {
    border-right: 1px solid var(--color-border-light);
}

.search-btn {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 11px 34px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: var(--color-primary-hover);
}

.search-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--color-bg-white);
}

.categories {
    display: flex;
    gap: 26px;
}

.category-list {
    background-color: var(--color-bg-white);
    border-radius: 30px;
    width: 380px;
    box-shadow: var(--shadow-lg);
    height: 316px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.category-list ul {
    list-style: none;
    padding: 20px 26px 10px 27px;
    margin: 0;
    flex: 1;
    overflow: hidden;
}

.category-list ul::-webkit-scrollbar {
    display: none;
}

/* Category Pagination */
.category-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 15px;
    border-top: 1px solid #eee;
}

.category-page-indicator {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.category-nav-buttons {
    display: flex;
    gap: 8px;
}

.category-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.category-nav-btn:hover:not(:disabled) {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.category-nav-btn:hover:not(:disabled) img {
    filter: brightness(0) invert(1);
}

.category-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.category-nav-btn.category-prev img {
    transform: rotate(90deg);
}

.category-nav-btn.category-next img {
    transform: rotate(-90deg);
}

.category-list li {
    padding: 0;
    margin-bottom: 5px;
    display: none;
}

.category-list li.visible {
    display: block;
}

.category-list a {
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0%;
    font-weight: 700;
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list a:hover {
    color: var(--color-primary);
}

.category-list a svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text-placeholder);
}

.featured-course {
    position: relative;
    height: 316px;
    flex: 1;
}

.featured-course-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 2;
}

.featured-course-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Category Dropdown Content */
.category-dropdown-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-white);
    border-radius: 10px;
    padding: 20px 25px;
    overflow-y: auto;
    z-index: 3;
}

/* Custom scrollbar for dropdown */
.category-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.category-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}

.category-dropdown-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.category-dropdown-content::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.category-dropdown-content::-webkit-scrollbar-button {
    display: none;
}

.dropdown-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.dropdown-row:last-child {
    border-bottom: none;
}

.dropdown-label {
    width: 180px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    font-family: "Inter";
    padding-top: 6px;
}

.dropdown-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.dropdown-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: "Inter";
    transition: all 0.3s;
}

.dropdown-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dropdown-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.dropdown-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-muted);
    font-family: "Inter";
    font-size: 14px;
}

.dropdown-tag.hot {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.dropdown-tag.hot::before {
    content: "◉ ";
    font-size: 10px;
}

.dropdown-tag.hot:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
}

/* HBR Holdings Ecosystem Section */
.ecosystem-section {
    background-image: url(../images-test/bg-about.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 74px 0 90px;
}

.ecosystem-section .container {
    max-width: 1109px;
    margin: 0 auto;
    padding: 0 20px;
}

.ecosystem-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    font-family: "Inter";
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 77px;
}

.ecosystem-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 93px;
    max-width: 1261px;
    height: 255px;
    margin-left: auto;
    margin-right: auto;
}

.brand-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-white);
    position: relative;
    flex-shrink: 0;
}

/* Gradient border using pseudo-element */
.brand-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 9.67px;
    background: linear-gradient(180deg, #00285A 0%, #4E97F3 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.brand-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Outer circles (1st and 5th) */
.brand-circle.size-sm {
    width: 216px;
    height: 216px;
}

.brand-circle.size-sm::before {
    padding: 9.67px;
}

/* Inner circles (2nd and 4th) */
.brand-circle.size-md {
    width: 239px;
    height: 239px;
}

.brand-circle.size-md::before {
    padding: 10.7px;
}

/* Center circle (3rd) */
.brand-circle.size-lg {
    width: 255px;
    height: 255px;
}

.brand-circle.size-lg::before {
    padding: 11.4px;
}

.stats-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    font-family: "Inter";
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.ecosystem-stats {
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: center;
}

.stats-row {
    display: flex;
    justify-content: center;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.stat-desc {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: "Inter";
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 8px;
}

/* Vision & Mission Section */
.vision-mission {
    position: relative;
    height: 745px;
    max-width: 100%;
    overflow: visible;
}

/* Ảnh dưới cùng */
.vision-mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images-test/bg-vision-mission-2.png") center/cover no-repeat;
    z-index: 0;
}

/* Ảnh trên + gradient */
.vision-mission::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,21,47,.9) 0%,
            rgba(0,49,109,.9) 90%,
            rgba(0,25,56,.95) 98.52%
        ),
        url("../images-test/bg-vision-mission.png") center/cover no-repeat;
    z-index: 1;
}

/* Nội dung */
.vision-mission > * {
    position: relative;
    z-index: 2;
}



.vision-mission-inner {
    display: flex;
    align-items: stretch;
    max-width: 1270px;
    margin: 0 auto;
    height: 100%;
}

.vision-image {
    flex-shrink: 0;
    width: 48%;
    position: relative;
    align-self: flex-end;
    overflow: visible;
}

.vision-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: translateY(-15px);
}

.vision-content {
    flex: 1;
    padding: 60px 0px 60px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-block,
.mission-block {
    margin-bottom: 30px;
}

.vision-heading,
.mission-heading {
    font-size: 96px;
    font-weight: 400;
    background: linear-gradient(180deg, #ffffff82 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent ;
    background-clip: text;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: -8px;
    font-family: "UTM Bebas", sans-serif;
}

.vision-block p,
.mission-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-bg-white);
}

.vision-block p strong,
.mission-block p strong {
    font-weight: 700;
}

/* Core Values */
.core-values-block {
    margin-top: 20px;
}

.core-values-block .mission-heading {
    margin-bottom: 15px;
}

.core-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.core-value-item {
    position: relative;
    padding: 6px 26px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    color: #6FC0FD;
    font-family: "Inter";
    background: transparent;
    text-align: justify;
}

.core-value-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(291deg, #00285A 0%, #999999 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Job Categories Section */
.job-categories-section {
    background-image: url("../images-test/bg-about.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 85px 0 65px 0;
}

.job-categories-section .container {
    max-width: 1109px;
    margin: 0 auto;
    padding: 0 20px;
}

.job-categories-section .job-section-title {
    margin-bottom: 46px;
}

.job-categories-section .job-categories {
    margin-bottom: 0;
}

/* Job Section */
.job-section {
    background-color: var(--color-bg-white);
    padding: 20px 0 68px;
}

.job-section .container {
    max-width: 1240px;
    margin: 0 auto;
}
.job-section .container .job-section-title {
    margin-bottom: 54px;
}

.job-section-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    font-family: "Inter";
    line-height: 37px;
    text-transform: uppercase;
}

/* Job Category Tags */
.job-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.job-cat-tag {
    display: inline-block;
    padding: 12px 42px;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    background-color: transparent;
}

.job-cat-tag:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* Job Table */
.job-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-table-header {
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-weight: 700;
    font-size: 28px;
    padding: 13px 30px;
    border-radius: 10px;
    line-height: 38px;
    text-transform: uppercase;
}

.job-table-header .col-position {
    color: var(--color-bg-white);
}

.job-table-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-row {
    display: flex;
    align-items: center;
    padding: 14px 26px;
    font-size: 23px;
    background-color: var(--color-bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-card);
    line-height: 100%;
    color: var(--color-primary);
}

.col-position {
    flex: 2.6;
    font-weight: 700;
    line-height: 35px;
}
.col-position a{
    color: var(--color-primary);
    text-decoration: none;
}
.badge-hot {
    display: inline-block;
    padding: 0.35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background: #DC3545;
}

.col-salary {
    flex: 2;
    text-align: left;
    font-weight: 700;
}

.col-deadline {
    flex: 1;
    text-align: center;
    font-weight: 700;

}

.col-action {
    flex: 1;
    text-align: right;
}

.btn-apply {
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-apply:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* View More Button */
.job-view-more {
    text-align: center;
    margin-top: 32px;
}

.btn-view-more {
    display: inline-block;
    padding: 10px 40px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.btn-view-more:hover {
    background-color: var(--color-primary-hover);
}

/* Job Register Section */
.job-register {
    position: relative;
    background-image: url(../images-test/bg-register.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 342px;
}

.job-register-overlay {
    display: none;
}

.job-register-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
    max-width: 100%;
}

.job-register-bg {
    flex: 1;
}

.job-register-content {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 67px 48px;
    background-color: rgba(0, 40, 90, 0.9);
}

.job-register-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 33px;
}

.job-register-title .title-line1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-white);
    font-family: "Inter";
    line-height: 1.2;
}

.job-register-title .title-line2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-white);
    font-family: "Inter";
    line-height: 37px;
}

.btn-register {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
    width: fit-content;
    line-height: 16px;
}

.btn-register:hover {
    background-color: var(--color-accent-hover);
}

/* Career Guide Section */
.career-guide {
    background-color: var(--color-primary);
    background-image: url(../images-test/bg-career-guide.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    padding: 91px 0 81px 0;
    position: relative;
}

.career-guide .container {
    max-width: 1109px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-guide-title {
    font-size: 33px;
    font-weight: 700;
    color: var(--color-bg-white);
    text-align: center;
    font-family: "Inter";
    text-transform: uppercase;
    margin-bottom: 63px;
    line-height: 37px;
}

.career-guide-layout {
    display: grid;
    grid-template-columns: 393px 359px 393px;
    grid-template-rows: auto auto auto;
    gap: 34px;
    align-items: center;
    justify-content: center;
}

.career-guide-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.career-guide-col.left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.career-guide-col.right {
    grid-column: 3;
    grid-row: 1 / 3;
}

.career-guide-center {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-guide-center img {
    max-width: 100%;
    height: auto;
}

.career-guide-bottom {
    grid-column: 1 / 4;
    display: flex;
    justify-content: center;
}

.career-guide-bottom .guide-card {
    width: 393px;
    padding: 60px 29px 0;
    text-align: center;
}

.career-guide-col.left .guide-card {
    padding: 31px 59px 0 35px;
}

.career-guide-col.right .guide-card {
    padding: 31px 20px 0 59px;
    text-align: left;
}

/* Guide Card */
.guide-card {
    background-image: url("../images-test/career-object.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 393px;
    height: 239px;
}

.guide-card-icon {
    width: 73px;
    height: 73px;
    background-color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.guide-card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

/* Left cards: icon centered on right edge */
.career-guide-col.left .guide-card-icon {
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
}

/* Right cards: icon centered on left edge */
.career-guide-col.right .guide-card-icon {
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
}

/* Bottom card: icon centered on top edge */
.career-guide-bottom .guide-card-icon {
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
}

.guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-bg-light);
    margin-bottom: 9px;
    text-transform: uppercase;
    font-family: "Roboto";
}

.guide-card p {
    font-size: 17px;
    line-height: 27px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    font-style: regular;
    font-weight: 400;
    font-family: "Inter";
}

.btn-guide {
    display: inline-block;
    padding: 7px 32px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 100%;
    background-color: var(--color-bg-white);
}

.btn-guide:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
}

/* Career Guide Slider base styles */
.career-guide-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

/* Career Guide Mobile Slider - Hidden on desktop */
.career-guide-slider.career-guide-mobile {
    display: none;
}

.guide-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.guide-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.guide-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.guide-slider-arrow {
    border: none;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: opacity 0.3s;
}

.guide-slider-arrow img {
    filter: brightness(0) invert(1);
}

.guide-slider-arrow:hover {
    opacity: 0.7;
}

/* Workplace & Success Story Section */
.workplace-section {
    background-color: var(--color-bg-light);
    padding: 70px 0;
}

.workplace-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.workplace-row {
    display: flex;
    align-items: center;
    gap: 92px;
    margin-bottom: 60px;
}

.workplace-row:last-child {
    margin-bottom: 0;
}

.workplace-row.reverse {
    flex-direction: row;
}

.workplace-text {
    flex: 1;
}

.workplace-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: "Inter";
    line-height: 52px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.workplace-text p {
    font-size: 18px;
    line-height: 27px;
    color: var(--color-primary);
    font-family: "Inter";
    font-weight: 600;
    text-align: justify;
}

.workplace-video {
    flex: 1.2;
    display: flex;
    align-items: center;
    gap: 17px;
}

.video-placeholder {
    flex: 1;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 616px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333;
    cursor: pointer;
}

.play-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-arrow {
    border: none;
    background: none;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.video-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.video-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Show first slide by default only when no slide has .active class */
.video-slider:not(:has(.active)) .video-slide:first-child {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Why Join HBR Section */
.why-join {
    background-image: url(../images-test/bg-why-join.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 444px;
}

.why-join-inner {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.why-join-image {
    flex: 1;
}

.why-join-content {
    width: 49%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background: linear-gradient(90deg, rgba(0, 40, 90, 0.6) 0%, #00285A 75%);
    height: 444px;
}

.why-join-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-bg-light);
    font-family: "Inter";
    line-height: 52px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.why-join-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-join-list li {
    display: flex;
    align-items: center;
    gap: 13px;
}

.why-join-list li img {
    flex-shrink: 0;
}

.why-join-list li span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-bg-light);
    font-family: "Inter";
    line-height: 27px;
}
/* ===== Apply Form Section ===== */
.apply-form-section {
    background-color: var(--color-bg-gray);
    padding: 60px 0;
}

.apply-form-section .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.apply-form-wrapper {
    background-image: url('../images-test/bg-apply-form.png');
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    border-radius: 8px;
    padding: 42px 47px;
    text-align: center;
}

.apply-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-white);
    font-family: "Inter";
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 32px;
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.apply-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Inter";
    color: var(--color-text-base);
    background-color: var(--color-bg-white);
}

.apply-input::placeholder {
    color: var(--color-text-placeholder);
}

/* Select dropdown styling */
.apply-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.apply-select option {
    padding: 10px;
}

.apply-file-upload {
    display: flex;
    align-items: center;
    background-color: var(--color-bg-white);
    border-radius: 8px;
    padding: 0 20px;
    gap: 14px;
}

.apply-file-label {
    font-size: 15px;
    font-family: "Inter";
    color: var(--color-text-base);
}

.apply-file-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-btn-secondary);
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter";
    color: var(--color-text-base);
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-file-btn:hover {
    background-color: var(--color-btn-secondary-hover);
}

.apply-submit-btn {
    display: inline-block;
    padding: 16px 63px;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    font-size: 17px;
    font-weight: 700;
    font-family: "Inter";
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 16px;
}

.apply-submit-btn:hover {
    background-color: var(--color-accent-hover);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .search-filters {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .filter-group:not(:last-child) {
        border-right: none;
    }

    /* Ecosystem Section Tablet */
    .ecosystem-section {
        padding: 50px 0 60px;
    }

    .ecosystem-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 50px;
    }

    .ecosystem-brands {
        gap: 15px;
        margin-bottom: 60px;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-circle.size-sm {
        width: 160px;
        height: 160px;
    }

    .brand-circle.size-md {
        width: 180px;
        height: 180px;
    }

    .brand-circle.size-lg {
        width: 200px;
        height: 200px;
    }

    .stats-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-badge {
        flex: 0 0 auto;
    }

    .stat-value img {
        max-width: 280px;
    }

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

    /* Vision & Mission Section Tablet */
    .vision-mission {
        height: auto;
        min-height: 600px;
    }

    .vision-mission-inner {
        flex-direction: row;
        max-width: 100%;
        padding: 0 20px;
    }

    .vision-image {
        width: 45%;
    }

    .vision-content {
        padding: 40px 0 40px 20px;
    }

    .vision-heading,
    .mission-heading {
        font-size: 72px;
    }

    .vision-block p,
    .mission-block p {
        font-size: 15px;
        line-height: 1.6;
    }

    .core-values-grid {
        gap: 10px;
    }

    .core-value-item {
        font-size: 14px;
        padding: 5px 15px;
        line-height: 24px;
    }

    /* Job Categories Section Tablet */
    .job-categories-section {
        padding: 60px 0 50px;
    }

    .job-categories-section .job-section-title {
        margin-bottom: 35px;
    }

    .job-section-title {
        font-size: 28px;
        line-height: 32px;
    }

    .job-categories {
        gap: 20px;
    }

    .job-cat-tag {
        padding: 10px 30px;
        font-size: 20px;
    }

    /* Job Register Section Tablet */
    .job-register {
        height: auto;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: none;
    }

    .job-register-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(../images-test/bg-register-mb.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .job-register-inner {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .job-register-bg {
        display: none;
    }

    .job-register-content {
        width: 100%;
        background-color: transparent;
        align-items: center;
        text-align: center;
        padding: 50px 20px;
    }

    .job-register-title {
        align-items: center;
        margin-bottom: 25px;
    }

    .job-register-title .title-line1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .job-register-title .title-line2 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .btn-register {
        padding: 14px 32px;
        font-size: 18px;
    }

    /* Job Table Tablet */
    .job-table-header {
        display: none;
    }

    .job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .col-position,
    .col-salary,
    .col-deadline,
    .col-action {
        flex: none;
        width: 100%;
        text-align: left !important;
    }

    .col-salary::before {
        content: "Lương: ";
        font-weight: 400;
    }

    .col-deadline::before {
        content: "Hạn nộp: ";
        font-weight: 400;
    }

    .col-action {
        margin-top: 5px;
    }

    .btn-apply {
        width: 100%;
        text-align: center;
    }

    /* Career Guide Section Tablet */
    .career-guide {
        padding: 60px 0;
        background-image: url(../images-test/bg-career-guide-mb.png);
        background-color: transparent;
        background-blend-mode: normal;
        overflow: hidden;
    }

    .career-guide .container {
        max-width: 100%;
        padding: 0 20px;
        overflow: visible;
    }

    .career-guide-slider {
        max-width: 100%;
        gap: 0;
    }

    .career-guide-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 40px;
    }

    .career-guide-desktop {
        display: none;
    }

    .career-guide-slider.career-guide-mobile {
        display: flex;
        width: 100%;
    }

    .guide-slider-wrapper {
        max-width: 393px;
        flex: 1;
    }

    .career-guide-mobile .guide-card {
        width: 393px;
        height: 239px;
        max-width: 100%;
        padding: 25px;
        text-align: left;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .career-guide-mobile .guide-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: left;
    }

    .career-guide-mobile .guide-card p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 0;
        text-align: left;
    }

    .career-guide-mobile .guide-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }

    .career-guide-mobile .guide-card-icon {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        margin: 0;
        width: 60px;
        height: 60px;
    }

    .career-guide-mobile .btn-guide {
        padding: 8px 25px;
        font-size: 14px;
    }

    /* Workplace Section Tablet */
    .workplace-section {
        padding: 50px 0;
    }

    .workplace-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .workplace-row.reverse {
        flex-direction: column;
    }

    .workplace-text {
        text-align: center;
        order: 1;
    }

    .workplace-text h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .workplace-text p {
        font-size: 16px;
        line-height: 24px;
        text-align: justify;
    }

    .workplace-video {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .video-placeholder {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .slider-arrow img {
        width: 18px;
        height: 36px;
    }

    /* Why Join HBR Section Tablet */
    .why-join {
        min-height: auto;
    }

    .why-join-inner {
        flex-direction: column;
        min-height: auto;
    }

    .why-join-image {
        display: none;
    }

    .why-join-content {
        width: 100%;
        height: auto;
        padding: 50px 40px;
        background: linear-gradient(180deg, rgba(0, 40, 90, 0.8) 0%, #00285A 100%);
    }

    .why-join-content h2 {
        font-size: 28px;
        line-height: 38px;
        text-align: center;
    }

    .why-join-list {
        gap: 20px;
    }

    .why-join-list li span {
        font-size: 16px;
        line-height: 24px;
    }

    /* Apply Form Section Tablet */
    .apply-form-section {
        padding: 40px 0;
    }

    .apply-form-section .container {
        padding: 0;
    }

    .apply-form-wrapper {
        border-radius: 0;
        padding: 30px 20px;
        background-image: url(../images-test/bg-apply-form-mb.png);
    }

    .apply-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .apply-form-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 16px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Search Section Mobile */
    .search-section {
        background-color: #F9F9F9;
        padding: 20px 0 30px;
    }

    .search-section .container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .search-filters {
        flex-direction: column;
        border-radius: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .filter-group {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-border-light);
        padding-bottom: 10px;
        box-sizing: border-box;
    }

    .filter-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .filter-group:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Categories Mobile */
    .categories {
        flex-direction: column;
        gap: 20px;
    }

    .category-list {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .featured-course {
        height: 200px;
    }

    /* Ecosystem Section Mobile */
    .ecosystem-section {
        padding: 40px 0 50px;
    }

    .ecosystem-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .ecosystem-brands {
        display: grid;
        grid-template-columns: repeat(4, auto);
        justify-content: center;
        justify-items: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .brand-circle.size-sm,
    .brand-circle.size-md,
    .brand-circle.size-lg {
        width: 100px;
        height: 100px;
    }

    .brand-circle.size-lg {
        width: 120px;
        height: 120px;
        grid-column: 1 / -1;
        order: -1;
    }

    .brand-circle.size-sm::before {
        padding: 4.67px;
    }

    .brand-circle.size-md::before {
        padding: 5.7px;
    }

    .brand-circle.size-lg::before {
        padding: 6.4px;
    }

    .stats-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 25px;
    }

    .ecosystem-stats {
        gap: 20px;
    }

    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .stat-badge {
        width: auto;
        min-width: 140px;
        flex: 0 1 auto;
    }

    .stat-value img {
        max-width: 200px;
        height: auto;
    }

    .stat-desc {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Vision & Mission Section Mobile */
    .vision-mission {
        height: auto;
        min-height: auto;
        padding: 0 0 40px;
        overflow: visible;
    }

    .vision-mission-inner {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .vision-image {
        width: 100%;
        max-width: 346px;
        align-self: center;
        order: 1;
        margin-top: -73px;
        position: relative;
        z-index: 3;
    }

    .vision-image img {
        transform: none;
        width: 100%;
        height: auto;
    }

    .vision-content {
        order: 2;
        padding: 30px 20px;
        text-align: center;
        width: 100%;
    }

    .vision-block,
    .mission-block {
        margin-bottom: 12px;
    }

    .vision-heading,
    .mission-heading {
        font-size: 96px;
        margin-bottom: 5px;
    }

    .vision-block p,
    .mission-block p {
        font-size: 16px;
        line-height: 27px;
        text-align: center;
    }

    /* Core Values Section Mobile */
    .core-values-block {
        display: block;
        margin-top: 20px;
    }

    .core-values-block .mission-heading {
        font-size: 96px;
        margin-bottom: 10px;
    }

    .core-values-grid {
        gap: 8px;
        justify-content: center;
    }

    .core-value-item {
        font-size: 14px;
        padding: 5px 12px;
        line-height: 22px;
    }

    /* Job Categories Section Mobile */
    .job-categories-section {
        padding: 40px 0;
    }

    .job-categories-section .job-section-title {
        margin-bottom: 25px;
    }

    .job-section-title {
        font-size: 22px;
        line-height: 28px;
    }

    .job-categories {
        gap: 12px;
        justify-content: center;
    }

    .job-cat-tag {
        padding: 8px 20px;
        font-size: 14px;
        border-radius: 8px;
        background-color: var(--color-bg-white);
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
        text-align: center;
        box-sizing: border-box;
    }

    /* Job Table Mobile */
    .job-row {
        font-size: 15px;
    }

    .col-position a {
        font-size: 16px;
        line-height: 1.4;
    }

    .btn-apply {
        font-size: 15px;
        padding: 12px 15px;
    }

    /* Job Register Section Mobile */
    .job-register {
        min-height: 280px;
    }

    .job-register-content {
        padding: 40px 15px;
    }

    .job-register-title {
        margin-bottom: 20px;
    }

    .job-register-title .title-line1 {
        font-size: 20px;
    }

    .job-register-title .title-line2 {
        font-size: 26px;
    }

    .btn-register {
        padding: 12px 24px;
        font-size: 17px;
    }

    /* Career Guide Section Mobile */
    .career-guide {
        padding: 40px 0;
        overflow: hidden;
    }

    .career-guide .container {
        padding: 0 15px;
    }

    .career-guide-slider {
        max-width: 100%;
        gap: 0;
    }

    .career-guide-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .guide-slider-wrapper {
        max-width: 320px;
    }

    .career-guide-mobile .guide-card {
        width: 320px;
        height: 195px;
        padding: 20px;
    }

    .career-guide-mobile .guide-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .career-guide-mobile .guide-card p {
        font-size: 13px;
        line-height: 20px;
    }

    .career-guide-mobile .guide-card-footer {
        margin-top: 12px;
    }

    .career-guide-mobile .guide-card-icon {
        width: 50px;
        height: 50px;
    }

    .career-guide-mobile .guide-card-icon img {
        width: 32px;
        height: 32px;
    }

    .career-guide-mobile .btn-guide {
        padding: 6px 20px;
        font-size: 13px;
    }

    .guide-slider-arrow {
        padding: 8px;
    }

    .guide-slider-arrow img {
        width: 10px;
        height: 20px;
    }

    /* Workplace Section Mobile */
    .workplace-section {
        padding: 40px 0;
    }

    .workplace-row {
        gap: 25px;
        margin-bottom: 40px;
    }

    .workplace-text h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .workplace-text p {
        font-size: 15px;
        line-height: 22px;
    }

    .video-placeholder {
        max-width: 100%;
    }

    .slider-arrow {
        padding: 5px;
    }

    .slider-arrow img {
        width: 10px;
        height: 20px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .play-btn img {
        width: 40px;
        height: 40px;
    }

    /* Why Join HBR Section Mobile */
    .why-join {
        background-image: url(../images-test/bg-why-join-mb.png);
        min-height: auto;
    }

    .why-join-content {
        padding: 40px 20px;
        background: transparent;
    }

    .why-join-content h2 {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
        margin-bottom: 24px;
    }

    .why-join-list {
        gap: 16px;
    }

    .why-join-list li {
        gap: 20px;
    }

    .why-join-list li img {
        width: 24px;
        height: 24px;
    }

    .why-join-list li span {
        font-size: 17px;
        line-height: 24px;
    }

    /* Apply Form Section Mobile */
    .apply-form-section {
        padding: 30px 0;
    }

    .apply-form-wrapper {
        padding: 25px 15px;
    }

    .apply-form-grid {
        gap: 12px;
    }

    .apply-form-title {
        font-size: 20px;
        line-height: 26px;
    }

    .apply-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .apply-submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    color: var(--color-text-dark);
    font-weight: 400;
    text-align: left;
}

.custom-select-trigger .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
}

.custom-select-wrapper.open .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-dark);
    transition: background-color 0.2s;
    word-wrap: break-word;
    white-space: normal;
}

.custom-select-option:hover {
    background-color: var(--color-bg-light);
}

.custom-select-option.selected {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

/* Hide native select when using custom */
.filter-group .native-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* Custom scrollbar for options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

@media (max-width: 480px) {
    .search-section {
        padding: 15px 0 20px;
    }

    .search-section .container {
        padding: 0 15px;
    }

    .search-filters {
        padding: 12px;
    }

    .filter-group select {
        font-size: 13px;
        padding: 8px 25px 8px 10px;
    }

    .search-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .category-list {
        min-height: 250px;
    }

    .category-list ul {
        padding: 15px 20px 10px;
    }

    .category-list a {
        font-size: 14px;
        line-height: 28px;
    }

    .featured-course {
        height: 180px;
    }

    /* Ecosystem Section Small Mobile */
    .ecosystem-section {
        padding: 30px 0 40px;
    }

    .ecosystem-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .ecosystem-brands {
        gap: 10px;
        margin-bottom: 30px;
    }

    .brand-circle.size-sm,
    .brand-circle.size-md,
    .brand-circle.size-lg {
        width: 80px;
        height: 80px;
    }

    .brand-circle.size-lg {
        width: 90px;
        height: 90px;
        grid-column: 1 / -1;
        order: -1;
    }

    .brand-circle.size-sm::before {
        padding: 4.67px;
    }

    .brand-circle.size-md::before {
        padding: 5.7px;
    }

    .brand-circle.size-lg::before {
        padding: 6.4px;
    }

    .stats-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .ecosystem-stats {
        gap: 15px;
    }

    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .stat-badge {
        min-width: 120px;
    }

    .stat-value img {
        max-width: 160px;
    }

    .stat-desc {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 5px;
    }

    /* Vision & Mission Section Small Mobile */
    .vision-mission {
        padding: 0 0 30px;
    }

    .vision-image {
        max-width: 346px;
    }

    .vision-content {
        padding: 20px 15px;
    }

    .vision-block,
    .mission-block {
        margin-bottom: 12px;
    }

    .vision-heading,
    .mission-heading {
        font-size: 96px;
    }

    .vision-block p,
    .mission-block p {
        font-size: 16px;
        line-height: 27px;
    }

    /* Core Values Section Small Mobile */
    .core-values-block .mission-heading {
        font-size: 77px;
        margin-bottom: 8px;
    }

    .core-values-grid {
        gap: 6px;
    }

    .core-value-item {
        font-size: 12px;
        padding: 4px 10px;
        line-height: 20px;
    }

    /* Job Categories Section Small Mobile */
    .job-categories-section {
        padding: 30px 0;
    }

    .job-categories-section .job-section-title {
        margin-bottom: 20px;
    }

    .job-section-title {
        font-size: 22px;
        line-height: 24px;
    }

    .job-categories {
        gap: 10px;
    }

    .job-cat-tag {
        padding: 6px 6px;
        font-size: 10px;
        border-radius: 6px;
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }

    .job-section .container .job-section-title {
        margin-bottom: 16px;
    }

    /* Job Table Small Mobile */
    .job-row {
        padding: 12px;
        font-size: 14px;
    }

    .badge-hot {
        font-size: 10px;
        padding: 2px 6px;
    }

    .btn-apply {
        font-size: 14px;
        padding: 10px 12px;
    }

    .job-section {
        padding: 15px 0 50px;
    }

    /* Job Register Section Small Mobile */
    .job-register {
        min-height: 220px;
    }

    .job-register-content {
        padding: 30px 15px;
    }

    .job-register-title {
        margin-bottom: 9px;
    }

    .job-register-title .title-line1 {
        font-size: 22px;
    }

    .job-register-title .title-line2 {
        font-size: 22px;
    }

    .btn-register {
        padding: 10px 20px;
        font-size: 17px;
    }

    /* Career Guide Section Small Mobile */
    .career-guide {
        padding: 30px 0;
        overflow: hidden;
    }

    .career-guide .container {
        padding: 0 10px;
    }

    .career-guide-slider {
        max-width: 100%;
        gap: 0;
    }

    .career-guide-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .guide-slider-wrapper {
        max-width: calc(100vw - 120px);
    }

    .career-guide-mobile .guide-card {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 20px;
        background-size: contain;
        justify-content: center;
    }

    .career-guide-mobile .guide-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .career-guide-mobile .guide-card p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .career-guide-mobile .guide-card-footer {
        margin-top: 10px;
    }

    .career-guide-mobile .guide-card-icon {
        width: 45px;
        height: 45px;
    }

    .career-guide-mobile .guide-card-icon img {
        width: 30px;
        height: 30px;
    }

    .career-guide-mobile .btn-guide {
        padding: 6px 18px;
        font-size: 12px;
    }

    .guide-slider-arrow {
        padding: 8px;
    }

    .guide-slider-arrow img {
        width: 12px;
        height: 24px;
    }

    /* Workplace Section Small Mobile */
    .workplace-section {
        padding: 30px 0;
    }

    .workplace-row {
        gap: 20px;
        margin-bottom: 30px;
    }

    .workplace-text h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .workplace-text p {
        font-size: 17px;
        line-height: 20px;
    }

    .slider-arrow {
        padding: 3px;
    }

    .slider-arrow img {
        width: 8px;
        height: 16px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }

    .play-btn img {
        width: 32px;
        height: 32px;
    }

    /* Why Join HBR Section Small Mobile */
    .why-join-content {
        padding: 30px 15px;
    }

    .why-join-content h2 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .why-join-list {
        gap: 14px;
    }

    .why-join-list li img {
        width: 24px;
        height: 24px;
    }

    .why-join-list li span {
        font-size: 17px;
        line-height: 22px;
    }

    /* Apply Form Section Small Mobile */
    .apply-form-section {
        padding: 25px 0;
    }

    .apply-form-wrapper {
        padding: 20px 15px;
    }

    .apply-form-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 14px;
    }

    .apply-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .apply-file-upload {
        padding: 0 12px;
    }

    .apply-file-label {
        font-size: 13px;
    }

    .apply-file-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .apply-submit-btn {
        padding: 12px 15px;
        font-size: 15px;
    }
}
