body {
  background-color: #fff;
  font-family: 'Manrope', sans-serif;
}

:root {
  --bs-primary: #00379d;
  --bs-primary-rgb: 36, 102, 201;
  --bs-dark: #343a40;
  --bs-dark-rgb: 52, 58, 64;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-load-more {
  font-size: 16px;
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  background: linear-gradient(270deg, #00379D 0%, #2466C9 100%);
  border-radius: 10px;
  border: none !important;
  line-height: 22px;
}

.select2-selection__placeholder, .form-control::placeholder {
  color: #959595 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.btn-primary:hover {
  background-color: darken(var(--bs-primary), 10%);
  border-color: darken(var(--bs-primary), 10%);
}

.btn-load-more:hover {
  /* background: linear-gradient(270deg, #2466C9 0%, #00379D 100%); */
  /* color: #fff; */
  border: none !important;
}

/* Form validation styles */
.error-text {
  color: #dc3545 !important;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  font-weight: 400;
}

.is-invalid,
.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.valid-text {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.select2-container.error .select2-selection--single {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.select2-container--default.error .select2-selection--single {
  border-color: #dc3545 !important;
}

.form-group {
  position: relative;
  /* margin-bottom: 1.5rem; */
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-register {
  background-color: #F1F7FF;
  color: #2466C9;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 10px 15px;
  border-radius: 10px !important;
}

.btn-login {
  background: linear-gradient(270deg, #00379D 0%, #2466C9 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px !important;
  border-radius: 10px !important;
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

/* Navbar specific styles */
.navbar-brand .slogan {
  font-size: 1.2rem;
  /* Adjust as needed */
  color: #0d6efd;
  /* Blue color from your image */
}

.navbar .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--bs-primary);
}

/* Hero Section */
.hero-section {
  background: url("/_2025/img/homepage/banner.jpg") no-repeat center center;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}

/* Làm tối ảnh nền cho mobile để nội dung rõ hơn */
@media (max-width: 767.98px) {
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/_2025/img/homepage/banner.jpg") no-repeat center center;
    background-size: cover;
  }
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-section ul {
  padding-left: 0;
}

.hero-section ul li {
  font-size: 1.1rem;
}

.hero-section .fa-check-circle {
  color: #ffc107;
  /* Warning yellow */
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Form Card */
.card {
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.card.mt-n5 {
  /* Negative margin to overlap with hero */
  margin-top: -50px !important;
  /* Adjust this value to control overlap */
}

.form-label {
  font-weight: 600;
  color: #333;
}

/* Compact form styles */
.form-compact .form-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #272727;
}

.form-compact .form-control,
.form-compact .form-select {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
}

.form-compact .input-group-text {
  font-size: 12px;
  padding: 8px 10px;
}

.form-compact input[type="number"] {
  font-size: 14px;
  font-weight: 500;
}

/* Select2 compact styling */
.select2-container--default .select2-selection--single {
  height: 38px;
  border: 1px solid #ced4da;
  border-radius: 6px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 36px;
  font-size: 14px;
  padding-left: 12px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 36px;
}

.select2-dropdown {
  border-radius: 6px;
  border: 1px solid #ced4da;
}

.select2-container--default .select2-results__option {
  font-size: 14px;
  padding: 8px 12px;
}

.form-compact .btn {
  font-size: 14px;
  padding: 10px 20px;
}

/**** block 2 */

#section-form {
  background: linear-gradient(90deg, #f1f9fa 0%, #ceeffb 100%);
  /* Nền xanh nhạt */
}

.page-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.page-title h2 span {
  color: #2196f3;
  /* Màu xanh của chữ "chúng tôi" */
}

.page-title p {
  font-size: 14px;
  color: #272727;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.box-taisao {
  background-color: #fff;
  border-radius: 15px;
  padding: 0px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  /* Chiều cao bằng 100% của container */
  /* min-height: 300px; */
  /* Tăng chiều cao tối thiểu */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border-bottom: 3px solid #2196f3;
  /* Thêm border bottom màu xanh */
}

.box-taisao:hover {
  transform: translateY(-10px);
}

.box-taisao h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(36, 102, 201, 1) !important;
  margin-bottom: 15px;
}

.box-taisao p {
  font-size: 16px;
  color: #666;
  flex-grow: 1;
  /* Cho phép đoạn văn bản chiếm không gian còn lại */
}

.box-taisao img {
  max-width: 100px;
  /* Điều chỉnh kích thước icon */
  height: auto;
  margin-top: 20px;
}

/* CSS để đảm bảo các cột có chiều cao bằng nhau */
.row-equal-height {
  display: flex;
  flex-wrap: wrap;
}

.row-equal-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Custom images for the boxes - Placeholder for now */
.img-1 {
  background-image: url("https://via.placeholder.com/100x100?text=1.6M");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.img-2 {
  background-image: url("https://via.placeholder.com/100x100?text=AI");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.img-3 {
  background-image: url("https://via.placeholder.com/100x100?text=Multi");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.img-4 {
  background-image: url("https://via.placeholder.com/100x100?text=24/7");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* For smaller screens, adjust padding and font sizes */
@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 26px;
  }

  #section-form .card {
    padding: 0 !important;
  }

  #section-form h2 {
    font-size: 22px;
  }

  .section-padding h2, .section-padding h2 a {
    font-size: 22px !important;
  }

  .page-title h2, .hotline-title {
    font-size: 22px;
  }
  /* #section-form .container {
      padding: 0;
      margin: 0;
    } */
  .card.mt-n5 {
    /* Negative margin to overlap with hero */
    margin-top: 0 !important;
    /* Adjust this value to control overlap */
  }

  .page-title h2 {
    font-size: 28px;
  }

  .page-title p {
    font-size: 16px;
  }

  .box-taisao {
    padding: 20px;
    min-height: 250px;
  }

  .box-taisao h3 {
    font-size: 20px;
  }

  .box-taisao p {
    font-size: 14px;
  }

  .box-taisao img {
    max-width: 70px;
  }

  /* Đảm bảo layout 2x2 trên mobile */
  .row-equal-height .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Xóa rounded-4 trên mobile */
  .rounded-4 {
    border-radius: 0 !important;
  }

  .card {
    border-radius: 0 !important;
  }

  .shadow-lg {
    box-shadow: none !important;
  }
}

/* CSS cho màn hình mobile rất nhỏ */
@media (max-width: 576px) {
  .rounded-4 {
    border-radius: 0 !important;
  }

  .card {
    border-radius: 0 !important;
  }

  .shadow-lg {
    box-shadow: none !important;
  }
}

/*** Block3 */
/* .section-padding {
    padding: 60px 0;
  } */

.white-bg {
  background-color: #fff;
}

.page-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

.page-title h2 span {
  color: #fd7e14;
  /* JobsGO orange color */
}

.page-title p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.card {
  border-radius: 10px;
  /* transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; */
  border: 1px solid #eee;
  /* Light border */
}

.card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.card-body .text-danger.fs-4 {
  color: #dc3545 !important;
  /* Bootstrap danger color */
  font-size: 1.75rem !important;
  margin-bottom: 15px;
}

.card-body .text-muted {
  font-size: 15px;
  color: #6c757d !important;
  /* margin-bottom: 20px; */
}

.list-unstyled li {
  font-size: 16px !important;
  color: #fff;
  line-height: 24px;
}

.list-unstyled li i.bi-check-circle-fill {
  font-size: 1.2em;
  color: #28a745;
  /* Bootstrap success color */
}

.btn-muangay {
  background-color: #fd7e14;
  /* JobsGO orange color */
  border-color: #fd7e14;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-muangay:hover {
  background-color: #e66a0a;
  /* Darker orange on hover */
  border-color: #e66a0a;
  color: #fff;
}

/* Custom 5-column layout */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  /* margin-top: 2rem; */
}

.pricing-item {
  flex: 1 1 calc(20% - 12px);
  /* 5 columns with gap */
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.pricing-card {
  border-radius: 20px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: 1px solid #e9ecef;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.pricing-card-header {
  background: linear-gradient(135deg, #ff9a56 0%, #ffc371 100%);
  padding: 1.2rem 1rem;
  border-radius: 15px;
  /* margin: 1.2rem 1.2rem 0 1.2rem; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  /* margin: 0 1.2rem 1.2rem 1.2rem; */
}

.pricing-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  width: fit-content;
  background: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pricing-price {
  color: #272727;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pricing-description {
  font-size: 0.85rem;
  color: #000;
  /* margin-bottom: 1.5rem; */
  margin-top: 1rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
  flex: 1;
  padding: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.pricing-features li i {
  color: #28a745;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pricing-btn {
  background: #f1f7ff;
  border: none;
  color: #2466c9;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: auto;
}

.hotline-box .phone-number {
  color: #FF612D !important;
}

.hotline-box {
  border-radius: 20px !important;
}

.hotline-info  p {
  font-size: 20px;
}
/* Different gradient colors for premium packages */
.pricing-card.standard .pricing-card-header {
  background: rgba(241, 247, 255, 1);
  color: rgba(36, 102, 201, 1);
}

.pricing-card.silver .pricing-card-header {
  background: linear-gradient(360deg, #D2D2D2 -7.52%, #E8E8E8 107.52%);
  color: #333;
}

.pricing-card.gold .pricing-card-header {
  background: linear-gradient(218.21deg, rgba(249, 137, 111, 0.5) -34.16%, rgba(245, 243, 75, 0.5) 189.47%);
  color: #333;
}

.pricing-card.gold-plus .pricing-card-header {
  background: linear-gradient(180deg, #FFC56D 0%, #FCE3B6 100%);
  color: white;
}

.pricing-card.premium .pricing-card-header {
  background: linear-gradient(180deg, #6BDFFF 0%, #DAFBFF 100%);
  color: white;
}

.pricing-card.premium .pricing-btn:hover {
  box-shadow: 0 6px 20px rgba(70, 130, 180, 0.4);
}


.pricing-card.platinum-15 .pricing-card-header {
  background: linear-gradient(180deg, #C8FBFF 0%, #F1F9FA 100%);
  color: white;
}

.pricing-card.platinum .pricing-btn:hover {
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}

.pricing-card.diamond-15 .pricing-card-header {
  background: linear-gradient(180deg, #BBFFEC 0%, #DAFFF2 100%);
  color: white;
}

.pricing-card.diamond .pricing-card-header {
  background: linear-gradient(180deg, #6BFFD5 0%, #DAFFF2 100%);
  color: white;
}

.pricing-card.diamond .pricing-btn:hover {
  box-shadow: 0 6px 20px rgba(177, 156, 217, 0.4);
}

.pricing-card.ruby-15 .pricing-card-header {
  background: linear-gradient(180deg, #FFB0B0 0%, #FFDADA 100%);
  color: white;
}

.pricing-card.ruby .pricing-card-header {
  background: linear-gradient(180deg, #FF5D5D 0%, #FFC8AC 100%);
  color: white;
}

.pricing-card.ruby .pricing-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .pricing-item {
    flex: 1 1 calc(33.333% - 10px);
    /* 3 columns on medium screens */
  }
}

@media (max-width: 768px) {
  .pricing-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-item {
    flex: 0 0 280px;
    /* Fixed width for mobile scroll */
    min-width: 280px;
    max-width: 280px;
  }

  .pricing-card-body {
    padding: 1rem;
  }

  .pricing-title {
    font-size: 0.9rem;
  }

  .pricing-price {
    font-size: 1.2rem;
  }

  .pricing-features li {
    font-size: 0.8rem;
  }

  /* Scroll indicator */
  .pricing-container::-webkit-scrollbar {
    height: 6px;
  }

  .pricing-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .pricing-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }

  .pricing-container::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    gap: 10px;
    padding: 5px 0;
  }

  .pricing-item {
    flex: 0 0 260px;
    /* Slightly smaller for very small screens */
    min-width: 260px;
    max-width: 260px;
  }

  .pricing-card-body {
    padding: 0.8rem;
  }

  .pricing-title {
    font-size: 0.85rem;
  }

  .pricing-price {
    font-size: 1.1rem;
  }

  .pricing-features li {
    font-size: 0.75rem;
  }
}

/* Scroll hint for mobile */
@media (max-width: 768px) {
  .pricing-container-wrapper {
    position: relative;
  }

  .pricing-container-wrapper::after {
    content: "← Vuốt để xem thêm →";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
    text-align: center;
    opacity: 0.7;
  }

  .pricing-container {
    position: relative;
  }

  /* Fade effect on the edges */
  .pricing-container::before,
  .pricing-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 2;
  }

  .pricing-container::before {
    left: 0;
  }

  .pricing-container::after {
    right: 0;
  }
}

/* Tab System Styles */
.nav-pills .nav-link {
  color: #ffffff !important;
  background: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 15px 20px !important;
  margin: 0 10px !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
}

.nav-pills .nav-link:hover {
  border-bottom-color: #007bff !important;
  border-radius: 15px !important;
}

.nav-pills .nav-link.active {
  border-bottom-color: #007bff !important;
  color: #ffffff !important;
  border-radius: 15px !important;
}

/* Responsive tabs */
@media (max-width: 768px) {
  .nav-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 0 !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
  }

  .nav-pills::-webkit-scrollbar {
    display: none !important;
    /* Chrome/Safari */
  }

  .nav-pills .nav-link {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    margin: 0 8px !important;
    min-width: fit-content !important;
    border-radius: 25px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
  }

  .nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px !important;
    border-bottom: none !important;
  }

  .nav-pills .nav-link.active {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 25px !important;
    border-bottom: none !important;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
  }

  /* Add fade effect on edges */
  .nav-pills {
    position: relative !important;
  }

  .nav-pills::before,
  .nav-pills::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 30px !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  .nav-pills::before {
    left: 0 !important;
  }

  .nav-pills::after {
    right: 0 !important;
  }

  @media (max-width: 576px) {
    .nav-pills .nav-link {
      font-size: 13px !important;
      padding: 10px 16px !important;
      margin: 0 6px !important;
    }
  }

  /* Tab section background adjustment for mobile */
  @media (max-width: 768px) {
    #about-us {
      background-size: cover !important;
    }

    /* Add scroll hint for mobile */
    #about-us .container {
      position: relative;
    }

    #about-us .container::after {
      content: "← Vuốt để xem thêm →";
      position: absolute;
      top: 60px;
      right: 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      opacity: 0.8;
      z-index: 1;
    }
  }

  @media (max-width: 576px) {
    #about-us .container::after {
      top: 50px;
      right: 15px;
      font-size: 10px;
    }
  }

  /* Hotline Section Styles */
  .hotline-section {
    position: relative;
    height: auto !important;
  }

  .robot-wrapper {
    position: relative;
    z-index: 2;
    height: auto !important;
  }

  .robot-image {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
  }

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

    50% {
      transform: translateY(-10px);
    }
  }

  .hotline-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .hotline-title span {
    color: #007bff !important;
  }

  .hotline-boxes {
    width: 100%;
  }

  .hotline-box {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
  }

  .hotline-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }

  /* .hotline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
} */

  .phone-number {
    color: #dc3545 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
  }

  .hotline-info p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #6c757d;
    font-weight: 600;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .hotline-title {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .robot-image {
      max-width: 300px !important;
      /* margin-bottom: 2rem; */
    }

    .hotline-content {
      padding-left: 0 !important;
    }
  }

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

    .robot-image {
      max-width: 250px !important;
    }

    .hotline-box {
      padding: 1rem !important;
    }

    .phone-number {
      font-size: 1.1rem !important;
    }

    .hotline-section {
      min-height: auto;
      /* padding: 3rem 0; */
    }
  }

  @media (max-width: 576px) {
    .hotline-title {
      font-size: 1.5rem;
    }
  }

  /* Animation for hotline boxes */
  .hotline-boxes .hotline-box {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
  }

  .hotline-boxes .hotline-box:nth-child(1) {
    animation-delay: 0.2s;
  }

  .hotline-boxes .hotline-box:nth-child(2) {
    animation-delay: 0.4s;
  }

  .hotline-boxes .hotline-box:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Hover effects for phone numbers */
  .phone-number {
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .phone-number:hover {
    color: #ff6b6b !important;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
  }

  /* Border colors for different regions */
  .hotline-boxes .hotline-box:nth-child(1) {
    border-left-color: #007bff !important;
  }

  .hotline-boxes .hotline-box:nth-child(2) {
    border-left-color: #ffc107 !important;
  }

  .hotline-boxes .hotline-box:nth-child(3) {
    border-left-color: #28a745 !important;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .text-content {
      padding-right: 0;
      text-align: center;
      margin-bottom: 40px;
    }

    .text-content h2.jobsgo-title {
      font-size: 36px;
    }

    .image-content {
      height: 450px;
    }

    .image-overlay-buttons {
      gap: 12px;
      bottom: 15px;
      width: calc(100% - 30px);
    }

    .overlay-button {
      padding: 16px 18px;
    }

    .overlay-button .overlay-text {
      font-size: 22px;
    }

    .overlay-button .overlay-description {
      font-size: 12px;
    }
  }

  @media (max-width: 768px) {

    .text-content h2.jobsgo-title {
      font-size: 32px;
    }

    .text-content p {
      font-size: 16px;
    }

    .image-content {
      height: 400px;
    }

    .image-overlay-buttons {
      gap: 10px;
      bottom: 12px;
    }

    .overlay-button {
      padding: 14px 16px;
    }

    .overlay-button .overlay-text {
      font-size: 20px;
    }

    .overlay-button .overlay-description {
      font-size: 11px;
    }
  }

  @media (max-width: 576px) {
    .text-content h2.jobsgo-title {
      font-size: 28px;
    }

    .text-content p {
      font-size: 15px;
    }

    .image-content {
      height: 350px;
    }

    .image-overlay-buttons {
      gap: 8px;
      bottom: 10px;
      width: calc(100% - 20px);
    }

    .overlay-button {
      padding: 12px 14px;
    }

    .overlay-button .overlay-text {
      font-size: 18px;
      margin-bottom: 1px;
    }

    .overlay-button .overlay-description {
      font-size: 10px;
    }
  }

  #client-page-ntd {
    padding-top: 50px;
    padding-bottom: 50px;
    background: url("/_2025/img/homepage/bg-ntd.jpg") no-repeat center center;
    /* Gradient nền */
  }

  .page-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    /* Màu chữ tiêu đề */
  }

  .page-title p {
    font-size: 1.1rem;
    color: #777;
    /* Màu chữ mô tả */
  }

  .carousel-clients .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* Khoảng cách giữa các logo */
  }

  .carousel-clients .item img {
    max-width: 100px;
    /* Kích thước tối đa của logo */
    height: 100px;
    object-fit: contain;
    /* Đảm bảo logo hiển thị đầy đủ */
    border-radius: 8px;
    /* Bo góc nhẹ cho logo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Đổ bóng nhẹ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Hiệu ứng chuyển động */
    background-color: #fff;
    /* Nền trắng cho logo */
  }

  .carousel-clients .item img:hover {
    transform: translateY(-5px);
    /* Nâng lên khi hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Đổ bóng đậm hơn khi hover */
  }
}

/* Ẩn các nút điều hướng và chấm chỉ báo của Owl Carousel */
.owl-nav,
.owl-dots {
  display: none;
}
.about-jobsgo-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-content {
  flex: 1;
  padding-right: 40px;
  max-width: 500px;
  /* Giới hạn chiều rộng cho nội dung văn bản */
}

.image-content {
  flex: 1;
  position: relative;
  max-width: 600px;
  /* Giới hạn chiều rộng cho phần hình ảnh */
  height: 450px;
  /* Chiều cao cố định cho phần hình ảnh */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/_2025/img/homepage/bg-about.jpg");
  background-size: cover;
  /* filter: brightness(0.7); */
  border-radius: 15px;
}

.main-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Để ảnh cô gái và robot đè lên nền */
}

.image-overlay-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 15px;
  width: calc(100% - 150px);
  max-width: 500px;
}

.overlay-button {
  background: url("/_2025/img/homepage/overlay-bg.jpg") no-repeat;
  background-size: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 400;
  flex: 1;
  color: #ffffff;
  opacity: 0.95;
}

.overlay-button strong {
  font-size: 22px;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #64f5ff;
}

h2.jobsgo-title {
  color: #007bff;
  font-weight: 700;
  margin-bottom: 20px;
}

strong {
  font-weight: 700 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-jobsgo-section {
    flex-direction: column;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
  }

  .image-content {
    max-width: 100%;
    height: 400px;
  }

  .image-overlay-buttons {
    flex-direction: column;
    gap: 10px;
    bottom: 15px;
    width: calc(100% - 30px);
    max-width: none;
  }

  .overlay-button {
    flex: none;
  }

  /* .overlay-button {
                min-width: unset;
                width: 250px;
                padding: 12px 20px;
                font-size: 1em;
            }
            .overlay-button strong {
                font-size: 1.3em;
            } */
}

@media (max-width: 576px) {
  .image-content {
    height: 350px;
  }

  .image-overlay-buttons {
    flex-direction: row;
    /* width: calc(100% - 20px); */
    gap: 8px;
  }

  .overlay-button {
    flex: 1;
    padding: 10px 8px;
    font-size: 12px;
  }

  .overlay-button strong {
    font-size: 16px;
    margin-bottom: 3px;
  }
}

.nav-pills-container .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: transparent !important;
}

.nav-pills-container .nav-tabs .nav-link.active {
  color: #F9C268 !important;
  border-color: #F9C268 !important;
}

.nav-pills-container .nav-tabs .nav-link {
  color: #fff !important;
}

#client-page-ntd {
  background: url("/_2025/img/homepage/bg-ntd.jpg");
}

#submit {
    background: linear-gradient(135deg, #2466c9 0%, #00379d 100%) !important;
}

/* CSS cho ảnh trong tab content */
.tab-content .caption-photo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.tab-content .caption-photo.one img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

.tab-content .caption-photo.two img {
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

/* Điều chỉnh cho các ảnh trong row 2 cột */
.tab-content .row .col-6 .caption-photo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Lùi chữ sang phải trong tab content */
.tab-content .row.align-items-center > .col-12.col-md-6:first-child {
  padding-left: 4rem;
}

/* Responsive cho mobile */
@media (max-width: 767.98px) {
  .tab-content .caption-photo.one img,
  .tab-content .caption-photo.two img {
    max-width: 100%;
  }
  
  .tab-content .row .col-6 {
    margin-bottom: 15px;
  }

  .tab-content .row.align-items-center > .col-12.col-md-6:first-child {
    padding-left: 15px;
  }
}