.elementor-15265 .elementor-element.elementor-element-f664f15{--display:flex;--background-transition:0.3s;}.elementor-15265 .elementor-element.elementor-element-f664f15.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-15265 .elementor-element.elementor-element-f664f15{--width:327.131px;}}/* Start custom CSS for html, class: .elementor-element-f6b310a *//* =========================
   Biến & Reset
========================= */
:root {
  --primary-blue: #0072CE;
  --primary-green: #67B547;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --border-color: #E2E8F0;
  --hero-gradient: linear-gradient(110deg, #DDEBFF 0%, #E2F8E1 100%);
  --btn-gradient: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 10px 0;
}

/* =========================
   Branding
========================= */
.logo-blue, .logo-green {
  display: inline;
  line-height: inherit;
  font-weight: 700;
}
.logo-blue { color: var(--primary-blue); }
.logo-green { color: var(--primary-green); }

.brand-lock {
  white-space: nowrap;
}

/* =========================
   Title chung
========================= */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
  overflow-wrap: break-word;
  max-width: 100%;
}

.section-title::before {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--btn-gradient);
  margin: 0 auto 15px;
  border-radius: 2px;
}

/* =========================
   Media responsive chung
========================= */
img, video, iframe, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}
/* =========================
   Hero
========================= */
.hero {
  background: var(--hero-gradient);
  color: var(--text-dark);
  padding: 70px 0;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px; /* Thêm padding ở đây để chữ không dính vào lề */
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--primary-blue);
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   About Cards
========================= */
.about-text {
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* =========================
   Job Details
========================= */
.job-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;   /* <– Thêm dòng này */
}

.job-specs .grid-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  transition: all .3s ease;
  height: 100%;           /* <– Và thêm dòng này */
}

/* Mobile/Tablet: về 1 cột */
@media (max-width: 992px) {
  .job-specs {
    grid-template-columns: 1fr;
  }
}

/* ===== Benefits: dùng class rõ ràng thay vì nth-child ===== */
.benefit-card.full-width {
  grid-column: 1 / -1;
}

/* Hiệu ứng hover cho benefit-card */
.benefit-card {
  transition: all .3s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* ===== (tuỳ chọn) nếu muốn dùng large-gap ===== */
.large-gap {
  gap: 32px;
  transition: background .3s ease;
}

/* Hiệu ứng hover cho grid có large-gap */
.large-gap:hover {
  background: rgba(0, 114, 206, 0.04);
}


@media (min-width: 993px) {
    .job-inner-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 28px;
    }
}

.subsection-title {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 18px;
  font-weight: 800;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 12px;
  align-items: start;
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: #4B5563;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-word;
}

.icon-list li i { color: var(--primary-blue); }
.icon-list.check li i { color: var(--primary-green); }

.job-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  margin: 0 auto;
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
    .job-image {
        grid-row: 2;
    }
}
.job-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* =========================
   Apply Section
========================= */
.apply-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  text-align: center;
  color: #fff;
  padding: 10px 20px 40px;
  
}

.apply-section .section-title {
  color: #fff;
  margin-bottom: 28px;
}
.apply-section .section-title::before { background: #fff; }

.apply-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.apply-method {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  font-weight: 500;
}

.apply-method h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.apply-method i {
  margin-right: 10px;
  color: #fff;
  font-size: 1.2em;
}

.apply-method p { margin-bottom: 8px; font-size: 1rem; }

.apply-method .contact-info {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  word-break: break-all;
}

.apply-section a,
.apply-section a:hover,
.apply-section a:focus {
  color: #fff;
  text-decoration: none;
}

.apply-method .apply-subject {
  font-size: .95rem;
  opacity: .95;
  color: #F1F5F9;
}

/* =========================
   Company Info Section
========================= */
.company-info {
  background: var(--bg-white);
  padding: 10px 20px;
}

.company-info .section-title { margin-bottom: 32px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.info-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all .3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.info-item h3 i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.info-item p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  overflow-wrap: break-word;
}

.info-item a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.info-item a:hover { text-decoration: underline; }

/* =============================================================
   MEDIA QUERIES - ĐIỀU CHỈNH GIAO DIỆN CHO CÁC MÀN HÌNH
============================================================= */

/* == TABLET & LAPTOP NHỎ (<= 1024px) == */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

/* == TABLET DỌC (<= 768px) == */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  .container {
    padding: 0 20px;
  }

  /* === SỬA LỖI HERO TRÊN MOBILE === */
  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }
  /* ================================ */

  .brand-lock {
    white-space: normal;
  }

  .btn.btn-header {
    padding: 10px 16px;
    font-size: .85rem;
  }

  .hero {
    padding: 50px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apply-section {
    padding: 60px 20px 80px;
  }

  .apply-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* == MOBILE (<= 480px) == */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  /* Đảm bảo hero vẫn tràn lề trên mobile nhỏ nhất */
  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  /*
  =================================
    PHẦN FIX THÊM VÀO
  =================================
  */
  .hero-content {
    /* Cho padding của hero-content
      khớp với padding 16px của container
      chung trên mobile nhỏ.
    */
    padding-left: 16px;
    padding-right: 16px;
  }
  /* ================================ */
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  /* ... (phần còn lại của CSS) */
}

/* =================================
   BỐ CỤC MỚI CHO PHẦN QUYỀN LỢI
================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.benefits-grid .card:nth-child(3) {
  grid-column: 1 / -1; 
}

@media (max-width: 768px) {
  .benefits-grid {
    /* Trả về 1 cột trên mobile */
    grid-template-columns: 1fr;
  }
}
.benefits-grid .card h3 {
  color: var(--primary-blue);
}/* End custom CSS */