@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;700&family=Manrope:wght@400;500&display=swap');
* {
    font-family: 'Fredoka One', cursive;
}
/* Main Navigation Styles */


.main-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #FFF8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8a1b1b;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.nav-logo span {
    
    font-size: 1.8rem;
    font-weight: 700;
    color: #8a1b1b;
    letter-spacing: 2px;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icon {
    color: #8a1b1b;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10%;
    padding: 5%;
    background-color: #FFF8F0;
}

.nav-button {
    display: inline-block;
    transition: transform 0.5s ease;
    border-radius: 50%;
    overflow: visible;
    width: 100%px;
    height: auto;
}

.nav-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.nav-button:hover {
    animation: spin 100s linear infinite;
}

.nav-button:hover img {
    animation: spin 10s linear infinite;
}

.careers-banner {
    width: 100%;
    background-color: #8a1b1b;
    color: #FFF8F0;
}

.careers-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    align-items: center;
}

.careers-container h1, .careers-container span {
    font-weight: bold;
}

@media (min-width: 640px) {
    .careers-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.careers-content {
    max-width: 600px;
    margin: 0 auto;
}

.careers-heading {
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .careers-heading {
        font-size: 7.75rem;
        line-height: 4rem;
    }
}

.careers-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .careers-description {
        font-size: 1.25rem;
        margin: 40px 0px;
    }
}

.careers-btn {
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FFF8F0;
    color: #8a1b1b;
}

.careers-btn:hover {
    opacity: 0.8;
}

.careers-image-wrap {
    display: flex;
    justify-content: center;
}

.careers-illustration {
    max-width: 100%;
    height: auto;
}

/* Responsive Visibility */
.careers-hide-sm {
    display: none;
}

.careers-show-sm {
    display: inline-block;
}

@media (min-width: 640px) {
    .careers-hide-sm {
        display: inline-block;
    }

    .careers-show-sm {
        display: none;
    }
}
.mission-containt{
    width: 100%;
    background-color: #FFF8F0;
}
.mission-section {
    padding: 2.5rem 1rem;
    text-align: center;
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .mission-section {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .mission-section {
        padding: 6rem 2rem;
    }
}

.mission-heading {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
    background-color: #8a1b1b; /* Replace with actual primary color */
    border-radius: 20px;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    color: #FFF8F0;
}

@media (min-width: 1440px) {
    .mission-heading {
        font-size: 1.375rem;
        line-height: 1.625rem;
    }
}

.mission-description {
    font-weight: bold;
    color: #8a1b1b;
    font-size: 2.125rem;
    line-height: 2.5rem;
}

@media (min-width: 1024px) {
    .mission-description {
        font-size: 2.875rem;
        line-height: 2.875rem;
    }
}

@media (min-width: 1440px) {
    .mission-description {
        font-size: 3.4375rem;
        line-height: 4.0625rem;
    }
}

@media (min-width: 640px) {
    .mission-description {
        font-size: 3.75rem !important;
        line-height: 4.125rem !important;
    }
}

@media (min-width: 1024px) {
    .mission-description {
        font-size: 4.6875rem !important;
        line-height: 5rem !important;
    }
}
/* Values Section */
.values-containt{
    width: 100%;
    background-color: #FFF8F0;
}
.values-section {
    padding: 2.5rem 1rem;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
}

@media (min-width: 640px) {
    .values-section {
        padding: 4rem 2rem;
        flex-direction: row;
    }
}

.values-header {
    flex-shrink: 0;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .values-header {
        margin-right: 2.5rem;
    }
}

.values-title {
    color: #8a1b1b; /* Replace with your primary color */
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .values-title {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .values-title {
        font-size: 1.75rem;
        line-height: 2rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Values Item */
.values-item {
    text-align: left;
}

.values-tag {
    color: #FFF8F0;
    font-size: 1rem;
    line-height: 1.25rem;
    background-color: #8a1b1b; /* Replace with your primary color */
    border-radius: 0.375rem;
    padding: 0.375rem 0.625rem;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (min-width: 1440px) {
    .values-tag {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }
}

.values-description {
    color: #8a1b1b;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .values-description {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .values-description {
        font-size: 1.75rem;
        line-height: 2rem;
    }
}
/* Benefits Section */
.benefits-containt{
    width: 100%;
    background-color: #FFF8F0;
}
.benefits-container {
    max-width: 1440px;
    margin: 0 auto;
}

.benefits-card {
    background-color: #8a1b1b; /* Replace with your primary color */
    padding: 2rem;
    padding-bottom: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .benefits-card {
        padding: 3rem 3.5rem;
    }
}

@media (min-width: 1024px) {
    .benefits-card {
        padding: 3.5rem 6rem;
    }
}

/* Benefits Tag */
.benefits-tag {
    background-color: #FFF8F0; /* Replace with your primary color */
    border-radius: 20px;
    padding: 1px 30px;
    display: inline-block;
    margin-bottom: 1rem;
}

.benefits-tag-text {
    color: #8a1b1b; /* Replace with your primary color */
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.25rem;
}

@media (min-width: 1440px) {
    .benefits-tag-text {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }
}

@media (min-width: 640px) {
    .benefits-tag-text {
        font-size: 1.25rem !important;
        line-height: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    .benefits-tag-text {
        font-size: 1.375rem !important;
        line-height: 1.625rem !important;
    }
}

/* Benefits Description */
.benefits-description {
    color: #FFF8F0; /* Replace with your primary color */
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

@media (min-width: 1440px) {
    .benefits-description {
        font-size: 1.375rem;
        line-height: 1.625rem;
    }
}

@media (min-width: 640px) {
    .benefits-description {
        font-size: 1.5rem !important;
        line-height: 1.875rem !important;
    }
}

@media (min-width: 1024px) {
    .benefits-description {
        font-size: 2.5rem !important;
        line-height: 3.125rem !important;
    }
}
.growth-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 5%;
}
.growth-text-h1{
    font-size: 450%;
    color: #8a1b1b;
    font-weight: bold;
    padding: 20px;
    margin: 0px;
}
.growth-text-p{
    font-size: 150%;
    max-width: 1440px;
    margin: 0 auto;
    color: #8a1b1b;
    font-weight: bold;
    padding: 20px;
}
.growth-text-p span{
    color: #8a1b1b;
    font-weight: bold;
    font-size: 1.25rem;
}
.growth-containt{
    padding-top: 3%;
    text-align: center;
    width: 100%;
    background-color: #FFF8F0;
}
.growth-section {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    margin-bottom: -4rem; /* Reduced margin for closer spacing */
}

@media (min-width: 640px) {
    .growth-section {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        margin-bottom: -4em; /* Adjusted for larger screens */
    }
}

.growth-content {
    max-width: 75%;
    margin: 0 auto;
}

.growth-heading {
    color: #8a1b1b; /* Replace with your primary color */
    font-weight: 800;
    font-size: 2.125rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .growth-heading {
        font-size: 2.875rem;
        line-height: 2.875rem;
    }
}

.growth-text {
    color: #8a1b1b; /* Replace with your primary color */
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 0.625rem;
}

@media (min-width: 1024px) {
    .growth-text {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
}

/* Growth Image Wrapper */
.growth-image-wrapper {
    position: relative;
}

@media (min-width: 1024px) {
    .growth-image-background {
        top: 3rem;
        bottom: 2.5rem;
    }
}

.growth-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
}
/* Job Openings Section */
.job-openings-container {
    background-color: #FFF8F0;
    text-align: center;
    padding-bottom: 2rem;
}

.job-openings-heading {
    color: #8a1b1b; /* Replace with your primary color */
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0px;
}

.job-openings-description {
    color: #8a1b1b; /* Replace with your primary color */
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.job-openings-description .highlight {
    font-weight: bold;
    color: #8a1b1b;
}

.job-openings-links {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 6rem;
}
.job-opening-link {
    border: 1px solid #8a1b1b;
    padding: 5px 25px;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #8a1b1b;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}
.job-opening-link.active {
    background-color: #8a1b1b; /* Màu nâu */
    color: #FFF8F0; /* Màu trắng */
}
/* Job Details Section */
.job-details-container {
    background-color: #FFF8F0; /* Nền full màn hình */
    width: 100%;
    display: flex; /* Thêm flex để căn giữa nội dung */
    justify-content: center; /* Căn giữa nội dung theo chiều ngang */
    align-items: center; /* Căn giữa nội dung theo chiều dọc */
    padding: 2rem; /* Thêm khoảng cách bên trong */
    box-sizing: border-box; /* Bao gồm padding trong kích thước */
    min-height: 100vh; /* Đảm bảo chiều cao tối thiểu là toàn màn hình */
}

.job-details {
    background-color: #FFF8F0; /* Nền của container */
    padding: 2rem;
    border: 1px solid #8a1b1b;
    border-radius: 1rem;
    max-width: 1200px; /* Giới hạn chiều rộng tối đa */
    width: 100%; /* Chiều rộng đầy đủ trong giới hạn tối đa */
    margin-bottom: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Thêm hiệu ứng đổ bóng */
}

.hidden {
    display: none;
}

.job-title {
    color: #8a1b1b;
    padding-left: 25%;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.job-title a {
    border: 1px solid #8a1b1b;
    background-color: #8a1b1b;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    color: #FFF8F0;
}
.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.job-description {
    color: #8a1b1b;
    flex: 2;
}

.job-apply {
    border: 1px solid #8a1b1b;
    padding: 5%;
    border-radius: 15px;
    flex: 1;
    color: #8a1b1b;
}

.job-apply form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-apply form input {
    border: 1px solid #8a1b1b;
    padding: 0.5rem;
    border-radius: 15px;
}

.apply-btn {
    background-color: #8a1b1b;
    color: #FFF8F0;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.apply-btn:hover {
    opacity: 0.8;
}

/* Custom File Upload Styles */
.custom-file-upload {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.custom-file-upload label {
    width: 85%;
    display: inline-block;
    border: 1px solid #8a1b1b;
    background-color: #fefefe; /* Background color for the label */
    color: #8a1b1b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.custom-file-upload input[type="file"] {
    display: none; /* Hide the default file input */
}

.custom-file-upload .file-name {
    font-size: 0.875rem;
    color: #8a1b1b;
    text-align: center;
}
/* General styling for job details */
.job-details ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 1rem; /* Add indentation */
}

.job-details ul > li {
    position: relative;
    padding-left: 1.5rem; /* Space for the custom marker */
}

.job-details ul > li::before {
    content: "-"; /* Add a dash for top-level list */
    position: absolute;
    left: 0;
    color: #8a1b1b; /* Match theme color */
    font-weight: bold;
}

.job-details ul ul { /* Nested UL (inside LI) */
    margin-top: 0.5rem; /* Add spacing between nested lists */
    padding-left: 1.5rem; /* Indent nested lists */
}

.job-details ul ul > li::before {
    content: "+"; /* Add a plus for nested list items */
    position: absolute;
    left: 0;
    color: #8a1b1b; /* Match theme color */
    font-weight: bold;
}
/* Styling for Image inside .job-apply */
.job-apply img {
    max-width: 100%; /* Ensure the image fits within the container */
    height: auto; /* Maintain aspect ratio */
}