/* CSS để tùy biến giao diện, bạn có thể thay đổi màu sắc, font chữ tại đây */
:root {
    --primary-color: #0d6efd;
    /* Màu chủ đạo (Bootstrap Blue) */
    --secondary-color: #6c757d;
    /* Màu phụ */
}

.navbar {
    padding: 0px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x1080.png/333/fff?text=Company+Background') no-repeat center center;
    background-size: cover;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
}

footer {
    background-color: #212529;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* --- CSS MỚI CHO HERO SLIDER --- */
#heroCarousel .carousel-item {
    height: 90vh;
    /* Chiều cao gần toàn màn hình */
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-image: url('{{ asset(' public/front_end/img/banner/banner2.jpg') }}');
}

#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(39, 39, 39, 0.1);
    /* Lớp phủ tối để làm nổi bật chữ */
}

/* Tùy chỉnh cho nội dung trên slide */
#heroCarousel .carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    color: white;
    z-index: 10;
}

#heroCarousel .carousel-caption-custom h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#heroCarousel .carousel-caption-custom p {
    font-size: 1.25rem;
    margin: 20px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        height: 70vh;
    }

    #heroCarousel .carousel-caption-custom h1 {
        font-size: 2.5rem;
    }

    #heroCarousel .carousel-caption-custom p {
        font-size: 1rem;
    }
}

/* --- CSS ĐỂ FIX KÍCH CỠ LOGO --- */
.logo-navbar {
    height: 60px;
    /* Đây là chiều cao của logo, bạn có thể thay đổi */
    width: auto;
    /* Tự động tính toán chiều rộng để giữ đúng tỷ lệ */
}

/* --- CSS TÙY CHỈNH CHO SLIDER DỰ ÁN --- */
.logo-slider-section {
    background-color: #f8f9fa;
    /* Màu nền xám nhạt để tách biệt */
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Chiều cao cố định cho mỗi item để logo được căn giữa */
}

.logo-item img {
    max-height: 50px;
    /* Chiều cao tối đa của logo */
    width: auto;
    opacity: 0.7;
    filter: grayscale(0%);
    /* Hiệu ứng trắng đen mặc định */
    transition: all 0.3s ease-in-out;
}

.logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    /* Hiển thị màu gốc khi hover */
    transform: scale(1.1);
}

.tns-controls {
    /* Ẩn nút mũi tên mặc định của Tiny Slider */
    display: none;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
}

footer {
    background-color: #212529;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}




:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

footer {
    background-color: #212529;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.development-timeline {
    position: relative;
    padding: 20px 0;
}

.development-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.timeline-event {
    position: relative;
    margin-bottom: 40px;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

.timeline-event::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.event-content {
    width: 45%;
    padding: 15px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.timeline-event:nth-child(odd) .event-content {
    left: 55%;
}

.timeline-event:nth-child(even) .event-content {
    left: 5%;
}

.event-year {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Mũi tên nhỏ kết nối điểm mốc với nội dung */
.event-content::before {
    content: '';
    position: absolute;
    top: 10px;
    border-style: solid;
}

.timeline-event:nth-child(odd) .event-content::before {
    left: -10px;
    border-width: 5px 10px 5px 0;
    border-color: transparent white transparent transparent;
}

.timeline-event:nth-child(even) .event-content::before {
    right: -10px;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .development-timeline::before {
        left: 10px;
    }

    .timeline-event .event-content {
        width: 90%;
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .timeline-event:nth-child(odd) .event-content {
        left: auto;
    }

    .timeline-event:nth-child(even) .event-content {
        left: auto;
    }

    .event-content::before {
        left: -10px !important;
        border-width: 5px 10px 5px 0 !important;
        border-color: transparent white transparent transparent !important;
    }
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

footer {
    background-color: #212529;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.development-timeline {
    position: relative;
    padding: 20px 0;
}

.development-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.timeline-event {
    position: relative;
    margin-bottom: 40px;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

.timeline-event::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.event-content {
    width: 45%;
    padding: 15px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.timeline-event:nth-child(odd) .event-content {
    left: 55%;
}

.timeline-event:nth-child(even) .event-content {
    left: 5%;
}

.event-year {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Mũi tên nhỏ kết nối điểm mốc với nội dung */
.event-content::before {
    content: '';
    position: absolute;
    top: 10px;
    border-style: solid;
}

.timeline-event:nth-child(odd) .event-content::before {
    left: -10px;
    border-width: 5px 10px 5px 0;
    border-color: transparent white transparent transparent;
}

.timeline-event:nth-child(even) .event-content::before {
    right: -10px;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .development-timeline::before {
        left: 10px;
    }

    .timeline-event .event-content {
        width: 90%;
        margin-left: 40px !important;
    }

    .timeline-event:nth-child(odd) .event-content {
        left: auto;
    }

    .timeline-event:nth-child(even) .event-content {
        left: auto;
    }

    .event-content::before {
        left: -10px !important;
        border-width: 5px 10px 5px 0 !important;
        border-color: transparent white transparent transparent !important;
    }
}



:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
}

.page-header {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 40px;
    font-weight: bold;
}

.post-card img {
    height: 200px;
    object-fit: cover;
}

.sidebar .card {
    margin-bottom: 1.5rem;
}

footer {
    background-color: #212529;
    color: white;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}



.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
}


:root {
    --primary-color: #007bff;
    /* Màu xanh dương chủ đạo /
--secondary-color: #6c757d; / Màu xám phụ */
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-gray);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[https://via.placeholder.com/1920x600.png/555/fff?Text=Join+Our+Talented+Team](https://via.placeholder.com/1920x600.png/555/fff?Text=Join+Our+Talented+Team)') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 50px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: white;
    border: 1px solid #eee;
    border-radius: 5px !important;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.accordion-body {
    padding: 20px;
    background-color: white;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
}

.job-info {
    margin-bottom: 15px;
}

.job-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.apply-button {
    background-color: #28a745;
    /* Màu xanh lá cây cho nút ứng tuyển */
    color: white !important;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none !important;
    display: inline-block;
}

.apply-button:hover {
    background-color: #218838;
}

.application-process ol {
    padding-left: 20px;
}

.application-process li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.application-process i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.cta-section {
    background-color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none !important;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* --- CSS MỚI CHO SƠ ĐỒ QUY TRÌNH --- */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 19px;
    /* Canh giữa vòng tròn 40px */
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.timeline-step {
    display: flex;
    position: relative;
    margin-bottom: 30px;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    /* Không bị co lại */
}

.step-content {
    margin-left: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.step-content h6 {
    font-weight: bold;
    color: var(--primary-color);
}


/*Nút back top*/
#backToTopBtn {
    display: none;
    /* Ẩn nút mặc định */
    position: fixed;
    /* Vị trí cố định theo màn hình */
    bottom: 20px;
    /* Cách mép dưới 20px */
    right: 30px;
    /* Cách mép phải 30px */
    z-index: 99;
    /* Đảm bảo nút luôn nằm trên các phần tử khác */

    /* --- Kiểu dáng cho nút --- */
    border: none;
    outline: none;
    background-color: #007bff;
    /* Màu nền */
    color: white;
    /* Màu mũi tên */
    cursor: pointer;
    /* Biểu tượng bàn tay khi di chuột */
    padding: 15px;
    border-radius: 50%;
    /* Bo tròn thành hình tròn */
    font-size: 18px;
    width: 50px;
    /* Chiều rộng */
    height: 50px;
    /* Chiều cao */
    text-align: center;
    line-height: 20px;
    /* Căn giữa mũi tên theo chiều dọc */

    /* Hiệu ứng mờ dần */
    transition: opacity 0.4s;
}

#backToTopBtn:hover {
    background-color: #0056b3;
    /* Màu nền khi di chuột vào */
    opacity: 0.8;
}


/*Modal ứng tuyển*/
.modal {
    display: none;
    /* Mặc định ẩn modal */
    position: fixed;
    /* Vị trí cố định */
    z-index: 1000;
    /* Luôn nằm trên cùng */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Cho phép cuộn nếu nội dung dài */
    background-color: rgba(0, 0, 0, 0.5);
    /* Nền đen mờ */
}

/* Khung nội dung của modal */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    /* Canh giữa theo chiều dọc và ngang */
    padding: 20px 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    /* Chiều rộng tối đa */
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

    /* Hiệu ứng xuất hiện */
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Animation cho modal */
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}


/* Nút đóng (X) */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* CSS cho Form bên trong modal */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    /* Quan trọng để padding không làm tăng width */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-cv-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
}

.submit-cv-btn:hover {
    background-color: #218838;
}



/* === BẮT ĐẦU CSS CHO SECTION ĐỐI TÁC === */
.partners-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.partners-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.partners-section .section-subtitle {
    font-size: 1.15rem;
    color: #718096;
    max-width: 650px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
}

/* Container chính cho slider, giới hạn chiều rộng và căn giữa */
.partners-slider-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
    /* Thêm padding để mũi tên không bị dính vào cạnh */
    position: relative;
}

/* Cấu trúc của Swiper */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    /* Tạo chiều cao đồng nhất cho các slide */
}

.swiper-slide img {
    height: 65px;
    /* Chiều cao cố định của logo */
    width: auto;
    max-width: 160px;
    /* Đảm bảo logo không quá rộng */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hiệu ứng hover cho logo */
.swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Thêm bóng đổ tinh tế */
}

/* Tùy chỉnh màu sắc và vị trí cho các thành phần điều hướng */
.swiper-button-next,
.swiper-button-prev {
    color: #4a5568;
    transition: color 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #1a202c;
}

.swiper-pagination {
    position: relative;
    /* Đưa pagination ra ngoài slider */
    bottom: -50px !important;
    /* Đẩy xuống dưới một chút */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e0;
}

.swiper-pagination-bullet-active {
    background-color: #4a5568;
}

/* === KẾT THÚC CSS CHO SECTION ĐỐI TÁC === */


#btn-back-to-top {
    position: fixed;
    /* Nút luôn đứng yên tại một vị trí trên màn hình */
    bottom: 20px;
    /* Cách mép dưới 20px */
    right: 20px;
    /* Cách mép phải 20px */
    display: none;
    /* Mặc định ẩn nút đi */
    z-index: 99;
    /* Đảm bảo nút luôn nằm trên các phần tử khác */
}