.header {
    padding: 10px 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    color: #004a99;
    font-size: 12px;
    line-height: 1.2;
    margin-left: 8px;
}

.nav-link {
    color: #1E1E1E;
    font-size: 14px;
    padding: 0.5rem 0.8rem;
}

.nav-link:hover {
    color: #004a99;
}

.login-btn {
    color: #1E1E1E;
    text-decoration: none;
    font-size: 16px;
    padding: 0.5rem 0.8rem;
}

.register-btn {
    border-radius: 20px;
    padding: 0.3rem 1.5rem;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    border-width: 2px;
}

.register-btn:hover {
    background-color: #0089c1;
    color: white;
}

.home-banner {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .home-banner {
        height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .home-banner {
        height: 220px;
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        margin-top: 15px;
    }

    .auth-buttons {
        margin-top: 10px;
        display: flex;
        justify-content: flex-start;
    }
}

body {
    background-color: #f0f8ff;
    min-height: 100vh;
}

.search-container {
    width: 100%;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
}



.search-icon {
    color: #6c757d;
    font-size: 18px;
    margin-right: 10px;
}

.search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
}

.search-input::placeholder {
    color: #adb5bd;
}

.location-dropdown {
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    padding: 0 15px;
    margin: 0 10px;
    color: #6c757d;
    background: none;
    border-top: none;
    border-bottom: none;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

.search-button {
    background-color: #00a8e8;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 9px 26px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #0089c1;
}

@media (max-width: 576px) {
    .search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }

    .search-input-group {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
        align-items: center;
    }

    .location-dropdown {
        border: 1px solid #e9ecef;
        border-radius: 50px;
        padding: 8px 15px;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .search-button {
        width: 100%;
    }
}

.main-image-container {
    position: relative;
    margin-bottom: 15px;
    /* border-radius: 8px; */
    overflow: hidden;
    height: 400px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.5s ease;
}

.main-image.active {
    display: block;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    border: 2px solid #ffff;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 15px;
}

.next-button {
    right: 15px;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 120px;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border: 3px solid #0d6efd;
}

.intro-section-content {
    padding-left: 80px;
}

.intro-section {
    padding: 0 20px;
    background: #fff;
}

.intro-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.intro-text {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}



.stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.see-more-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.see-more-btn:hover {
    background-color: #0d6efd;
    color: white;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-image-container {
        height: 300px;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 32px;
}

.carousel-container {
    position: relative;
    padding: 0 10px;
    margin-bottom: 40px;
}

.job-card {
    width: 210px;
    height: 220px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: rgba(179, 213, 225, 0.1);
    box-shadow: none;
    padding: 0;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    box-sizing: border-box;
}

.job-card:hover,
.job-card:focus {
    box-shadow: 0 6px 24px rgba(0, 146, 199, 0.08);
    transform: translateY(-4px) scale(1.03);
}

.job-icon {
    width: 124px;
    height: 124px;
    border-radius: 62px;
    background: #00529C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    margin-bottom: 18px;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 150%;
    margin-bottom: 4px;
    text-align: center;
}

.job-count {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 150%;
    text-align: center;
}

.avatar-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 5;
}

.avatar-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* left: 0; */
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    background-color: white !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #333 !important;
    font-size: 18px !important;
    transition: background-color 0.3s, color 0.3s !important;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #f8f9fa !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-prev span,
.owl-next span {
    font-size: 24px;
    line-height: 1;
    position: relative;
    top: -3px;
}

/* Hide default dots */
/* .owl-dots {
    display: none;
} */

@media (max-width: 768px) {
    .job-icon {
        width: 60px;
        height: 60px;
    }

    .job-icon i {
        font-size: 24px;
    }
}

.jobs-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px 0;
    padding-top: 0;
}

.job-title, .job-count{
    text-align: center !important;
}

.section-header {
    background: rgba(0, 82, 156, 1);
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
    padding: 16px;
    text-align: center;
}

.job-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    padding: 18px 10px;
    margin: 0 8px 24px 8px;
    min-width: 240px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    box-sizing: border-box;
}

.job-card:hover,
.job-card:focus {
    box-shadow: 0 6px 24px rgba(0, 176, 224, 0.08);
    transform: translateY(-4px) scale(1.03);
}

.job-card .job-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}



.job-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 6px;
    text-align: center;
}

.job-salary {
    font-size: 16px;
    color: #00B0E0;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
}

.job-date {
    font-size: 14px;
    color: #888;
    text-align: center;
}

.priority-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF3B30;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    padding: 2px 10px;
    z-index: 2;
}

.see-more-btn {
    margin: 0 auto;
    display: block;
    width: 200px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    background: #00B0E0;
    color: #fff;
    border: none;
    padding: 12px 0;
    margin-top: 16px;
    transition: background 0.2s, color 0.2s;
}

.see-more-btn:hover,
.see-more-btn:focus {
    background: #0092C7;
    color: #fff;
}

@media (max-width: 991px) {
    .jobs-section {
        padding: 18px 0;
    }

    .section-header {
        font-size: 28px;
        padding: 10px;
    }

    .job-card {
        min-width: 180px;
        padding: 10px 4px;
    }

    .job-title {
        font-size: 16px;
    }

    .see-more-btn {
        width: 140px;
        font-size: 15px;
        padding: 8px 0;
    }
}

.benefits-section {
    background: linear-gradient(135deg, #0066b2 0%, #1e90ff 100%);
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    padding: 30px 0;
}

.benefits-content {
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefits-description {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefits-cta {
    width: 100%;
    background-color: #00a8e8;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.benefits-cta:hover {
    background-color: #0089c1;
    transform: translateY(-2px);
}

.icon-box {
    text-align: center;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container svg {
    width: 100%;
    height: 100%;
}

.icon-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.icon-description {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2rem;
    }

    .benefits-section {
        padding: 50px 0;
    }
}

.view-more {
    color: #00a8e8;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.view-more:hover {
    color: #0089c1;
}

.view-more i {
    margin-left: 5px;
}

.news-card {
    height: 100%;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1E1E1E;
}

.news-text {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.news {
    margin-bottom: 10px;
}

.card-body {
    padding: 16px 0px;
}

.news-link {
    color: rgba(51, 216, 64, 1);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.news-link:hover {
    color: #0089c1;
    text-decoration: underline;
}

.main-banner {
    overflow: hidden;
    position: relative;
}

.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.university-intro h1 {
    font-size: 50px;
}

.banner-container-about {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-container-about img {
    width: 100%;
    aspect-ratio: 4.8;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 82, 156, 0.43);
    filter: blur(10px);
    z-index: -1;
}

h1.text-white.text-4xl.font-bold {
    text-align: center;
}

.blue-line {
    width: 15px;
    background-color: #00529C;
    min-height: 100%;
    display: block;
}

.text-primary {
    color: #00529C !important;
}

.container.py-4 p.text-secondary {
    font-size: 16px;
    color: #000 !important;
}

.fs-2 {
    font-size: 2rem;
}

.d-flex {
    align-items: stretch;
}

.about-banner-wrapper {
    position: relative;
    padding: 60px 30px;
    border-radius: 12px;
    overflow: hidden;
}

.about-banner-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00529C 3.43%, rgba(0, 146, 199, 0.9) 100%);
    opacity: 0.7;
    filter: blur(8.5px);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.about-banner-wrapper>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .banner-container-about {
        height: 200px;
    }

    .university-intro h1 {
        font-size: 36px;
    }

    .main-banner {
        margin-bottom: 20px;
        height: 300px;
    }

    .news-card {
        margin-bottom: 20px;
    }
}

.contact-section {
    position: relative;
    width: 100%;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.contact-form-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 470px;
    width: 90%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 10;
}

.form-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
    color: rgba(77, 77, 77, 1);
    margin-bottom: 8px;
    font-size: 18px;
}

.gtt {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.submit-btn {
    background-color: rgba(0, 176, 224, 1);
    border: none;
    padding: 12px;
    font-weight: 500;
    width: 100%;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    display: block;
    width: 50%;
    font-size: 18px;
}

.submit-btn:hover {
    background-color: #0089c1;
}

@media (max-width: 768px) {
    .contact-form-container {
        right: 50%;
        transform: translate(50%, -50%);
        width: 85%;
    }
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.contact-subheading {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.contact-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    height: 480px;
}

.contact-form {
    background-color: #e6f0f9;
    border-radius: 8px;
    padding: 25px;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.submit-btn {
    background-color: rgba(0, 176, 224, 1);
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    display: block;
    width: 50%;
    font-size: 18px;
}

.submit-btn:hover {
    background-color: #0089c1;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-image-container {
        margin-bottom: 30px;
    }
}

/* --- INTRODUCTION SECTION CUSTOM CSS (Figma specs) --- */
.intro-content,
.intro-content * {
    font-family: 'Roboto', Arial, sans-serif !important;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    text-align: left;
}

.intro-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #000;
    text-align: left;
    border-left: 4px solid #00529C;
    padding-left: 18px;
    margin-bottom: 2.2rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #00529C;
    line-height: 201%;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #1E1E1E;
    line-height: 201%;
}

.see-more-btn {
    border-radius: 10px;
    border: 2px solid rgba(0, 176, 224, 1);
    background: rgba(0, 176, 224, 1);
    /* background: #fff; */
    font-size: 18px;
    font-weight: 400;
    padding: 10px 38px;
    transition: all 0.2s;
    min-width: 196px;
    min-height: 50px;
    max-width: 196px;
}

.see-more-btn:hover,
.see-more-btn:focus {
    background: #00B0E0;
    color: #fff;
    border-color: #00B0E0;
}

.text-start {
    width: 100%;
    text-align: left !important;
    display: block;
}

@media (max-width: 991px) {
    .intro-content {
        padding-left: 0;
    }

    .stats-container {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .intro-title {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 18px;
    }
}

/* --- POSITION SECTION (Vị trí việc làm) --- */
.position-section {
    background: #fff;
    padding: 20px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 32px;
}

.carousel-container {
    padding: 0;
    margin-bottom: 0;
}

.owl-carousel .item {
    display: flex;
    align-items: stretch;
    height: 100%;
}



.job-card:hover {
    box-shadow: 0 6px 24px rgba(0, 176, 224, 0.08);
    transform: translateY(-4px) scale(1.03);
}

.job-icon {
    width: 120px;
    height: 120px;
    background: #00529C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    color: #fff;
    font-size: 60px;
}



.job-count {
    font-size: 16px;
    color: #222;
    font-weight: 400;
}

@media (max-width: 991px) {
    .job-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .job-card {
        padding: 18px 4px;
        min-width: 160px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* --- JOBS GRID LAYOUT --- */
.job-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.job-wrap {
    background: rgba(0, 82, 156, 0.1);
    padding: 40px 70px;
}

.job-list-grid .job-card {
    width: 100% !important;
}

@media (max-width: 991px) {
    .job-list-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .job-list-grid .job-card {
        width: 100%;
    }
}

/* --- JOB CARD FLEX ROW LAYOUT (giống hình 1) --- */
.job-card-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.job-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.job-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}




.job-location,
.job-salary,
.job-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.job-salary {
    color: #00cfff;
    font-weight: 500;
}

@media (max-width: 991px) {
    .job-card-flex {
        flex-direction: column;
        align-items: center;
    }

    .job-card-info {
        align-items: center;
    }

    .job-title {
        font-size: 18px;
    }

    .job-location,
    .job-salary,
    .job-date {
        font-size: 14px;
    }
}

/* --- NEWS HEADER ROW --- */
.news-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.news-header-link {
    color: #00B0E0;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 991px) {
    .news-header-link {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .intro-section {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .intro-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .intro-text {
        font-size: 16px;
        padding-left: 7px;
        margin-bottom: 0.8rem;
    }

    .stats-container {
        flex-direction: row !important;
        gap: 0;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 0.8rem;
    }

    .stat-item {
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 22px;
        margin-bottom: 0.05rem;
    }

    .stat-label {
        font-size: 14px;
        line-height: 1.2;
    }

    .see-more-btn {
        width: 40%;
        min-width: unset;
        max-width: unset;
        font-size: 14px;
        min-height: 36px;
        padding: 7px 0;
        margin-left: 0 !important;
    }

    .text-start {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .position-section {
        padding: 16px 0 10px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .carousel-container {
        padding: 0;
        margin-bottom: 0;
    }

    .owl-carousel .item {
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: 100%;
    }

    .job-card {
        margin: 0 auto 10px auto;
        padding: 22px 0 18px 0;
        border-radius: 18px;
        background: #fff;
        border: 2.5px solid #00B0E0;
        box-shadow: 0 2px 10px rgba(0, 176, 224, 0.07);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .job-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
        margin-bottom: 10px;
        background: #00529C;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .job-title {
        font-size: 1.08rem;
        font-weight: 700;
        color: #00529C;
        margin-bottom: 2px;
        text-align: center;
        margin-top: 0;
    }

    .job-count {
        font-size: 12px;
        color: #222;
        font-weight: 400;
        text-align: center;
        margin-bottom: 0;
    }

    .owl-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        /* left: 0; */
        z-index: 1;
    }

    .owl-prev,
    .owl-next {
        pointer-events: all;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff !important;
        border: 2px solid #e0e0e0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: #00529C !important;
        font-size: 18px !important;
    }

    .owl-prev {
        left: -18px;
    }

    .owl-next {
        right: -18px;
    }
}

button.owl-prev,
button.owl-next,
.prev-button,
.next-button {
    border: 2px solid rgba(0, 0, 0, 1) !important;
    width: 24px !important;
    height: 24px !important;
    background: #fff;
    color: #000;
}

button.owl-prev:hover,
button.owl-next:hover,
.prev-button:hover,
.next-button:hover {
    background: #000;
    color: #fff;
}

button.owl-prev i,
button.owl-next i {
    font-size: 14px;
}

section.new-home {
    background: #fff;
}