@font-face {
  font-family: "myriadpro-bold";
  src: url("assets/fonts/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "myriadpro-semibold";
  src: url("assets/fonts/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "americanSans";
  src: url("assets/fonts/UTM American Sans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "myriadpro-regular";
  src: url("assets/fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Bungee";
  src: url("assets/fonts/._Bungee-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "myriadpro-black";
  src: url("assets/fonts/MYRIADPRO-BLACK.OTF") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;

  justify-content: center;
}

a {
  text-decoration: none;
  color: inherit;
}

body[data-lang="vi"] .vi {
  display: inline;
}
body[data-lang="vi"] .en {
  display: none;
}

body[data-lang="en"] .vi {
  display: none;
}
body[data-lang="en"] .en {
  display: inline;
}

/* From Uiverse.io by cbolson */
.switch {
  --_switch-bg-clr: #70a9c5;
  --_switch-padding: 2px; /* padding around button*/
  --_slider-bg-clr: rgba(12, 74, 110, 0.65); /* slider color unchecked */
  --_slider-bg-clr-on: rgba(12, 74, 110, 1); /* slider color checked */
  --_slider-txt-clr: #ffffff;
  --_label-padding: 0.5rem 1rem; /* padding around the labels -  this gives the switch it's global width and height */
  --_switch-easing: cubic-bezier(
    0.47,
    1.64,
    0.41,
    0.8
  ); /* easing on toggle switch */
  color: white;
  width: fit-content;
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  isolation: isolate;
}

.switch input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.switch > span {
  display: grid;
  place-content: center;
  transition: opacity 300ms ease-in-out 150ms;
  padding: var(--_label-padding);
}
.switch::before,
.switch::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: inset 150ms ease-in-out;
}
/* switch slider */
.switch::before {
  background-color: var(--_slider-bg-clr);
  inset: var(--_switch-padding) 50% var(--_switch-padding)
    var(--_switch-padding);
  transition: inset 500ms var(--_switch-easing),
    background-color 500ms ease-in-out;
  z-index: -1;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.3);
}
/* switch bg color */
.switch::after {
  background-color: var(--_switch-bg-clr);
  inset: 0;
  z-index: -2;
}
/* switch hover & focus */
.switch:focus-within::after {
  inset: -0.25rem;
}
.switch:has(input:checked):hover > span:first-of-type,
.switch:has(input:not(:checked)):hover > span:last-of-type {
  opacity: 1;
  transition-delay: 0ms;
  transition-duration: 100ms;
}
/* switch hover */
.switch:has(input:checked):hover::before {
  inset: var(--_switch-padding) var(--_switch-padding) var(--_switch-padding)
    45%;
}
.switch:has(input:not(:checked)):hover::before {
  inset: var(--_switch-padding) 45% var(--_switch-padding)
    var(--_switch-padding);
}
/* checked - move slider to right */
.switch:has(input:checked)::before {
  background-color: var(--_slider-bg-clr-on);
  inset: var(--_switch-padding) var(--_switch-padding) var(--_switch-padding)
    50%;
}
/* checked - set opacity */
.switch > span:last-of-type,
.switch > input:checked + span:first-of-type {
  opacity: 0.75;
}
.switch > input:checked ~ span:last-of-type {
  opacity: 1;
}


/* Feature Box Styles */
#feature-box {
  width: 70%;
  display: flex;
  justify-content: center;
  margin: 0 auto -80px;
  position: relative;
  z-index: 5;
}

.feature-wrapper {
  display: flex;
  background-color: white;
  border-radius: 30px;
  padding: 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  gap: 40px;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1400px;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 15px;
}

.feature-item img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.feature-item p {
  font-family: "myriadpro-regular", sans-serif;
  font-size: 18px;
  color: #f85b24;
  transition: all 0.3s ease;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 75, 153, 0.15);
  background-color: rgba(0, 75, 153, 0.05);
}

.feature-item:hover img {
  transform: scale(1.1);
}

.feature-item:hover p {
  color: #f85b24;
  font-weight: bold;
}

/* Hiệu ứng border animation */
.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #f85b24;
  transition: width 0.3s ease;
}

.feature-item:hover::after {
  width: 100%;
}

.lang-switch button {
  margin: 0 5px;
  padding: 8px 15px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.lang-switch button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lang-switch button:active {
  transform: translateY(0);
}

.nav {
  position: relative;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  /* Full-bleed across viewport like homepage */
  width: 100vw;
  z-index: 10;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffeb3b;
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 16px;
}

.datetime {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-wrapper {
  /* width: 1360px;
  max-width: 100%; */
  background-color: #fff;
  overflow-x: hidden;
}

/* @media (min-width: 576px) {
  .page-wrapper {
    min-width: 576px;
  }
}

@media (min-width: 768px) {
  .page-wrapper {
    min-width: 768px;
  }
}

@media (min-width: 992px) {
  .page-wrapper {
    min-width: 992px;
  }
}

@media (min-width: 1200px) {
  .page-wrapper {
    max-width: 1040px;
  }
}

@media (min-width: 1400px) {
  .page-wrapper {
    max-width: 1320px;
  }
} */

/* HOME SECTION */
#home {
  position: relative;
  background-image: url(../assets/images/sbim-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  color: white;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: visible;
}

.home-logo {
  display: flex;
  gap: 10px;
  justify-content: start;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.custom-logo-size {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.custom-logo-size:hover {
  transform: scale(1.05);
}

.home-main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.home-content {
  flex: 1;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  flex-direction: row;
}

.home-content-inside {
  display: flex;
  flex-direction: column;
  max-width: 40%;
}

.home-title_1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
}

.home-title_2 {
  font-family: "Bungee", sans-serif;
  font-size: 5.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 40px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
  letter-spacing: 3px;
}

.home-line {
  width: 20vw;
  height: 4px;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 2px;
}

.home-title-sub {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 1px;
}

.home_des {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 800px;
  margin-right: auto;
}

.home-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-img img {
  max-width: 80%;
  height: auto;
}

/* CREATE SECTION */
#create {
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.95)
    ),
    url(../assets/images/dhxd.jpg);
  height: auto;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}

.creat-container {
  width: 100%;
  padding: 80px;
  color: white;
}

.creat-container h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f85b24;
  font-weight: bold;
}

.create-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.create-des {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
}

.create-des p {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #001554;
  text-align: justify;
  font-weight: bold;
}

.create-img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.create-img img {
  width: 100%;
  height: auto;
  max-height: 35vh;
  object-fit: contain;
}

.create-img p {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
  color: #001554;
  font-weight: bold;
  text-align: start;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

/* ORGANIZE SECTION */
#orgarnize {
  background: linear-gradient(
      to right,
      rgb(255, 255, 255, 0.3),
      rgb(255, 255, 255, 0.3),
      rgb(255, 255, 255, 0.3)
    ),
    url(../assets/images/cer-back.png);
  padding: 40px 0;
  text-align: center;
}

.orgarnize-img {
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.orgarnize-img h1 {
  font-family: "myriadpro-black", sans-serif;
  font-size: 3.5rem;
  color: #f85b24;
  font-weight: bold;
}

.orgarnize-img img {
  width: 90%;
  height: auto;
  max-width: 1000px;
  object-fit: contain;
}

/* RDSIC SECTION */
#rdsic {
  background: linear-gradient(
      to right,
      rgb(248, 91, 36, 0.9),
      rgb(248, 91, 36, 0.9)
    ),
    url(../assets/images/rdsic-back.png);
  padding: 40px 0;
  text-align: center;
}

.rdsic h1 {
  font-family: "myriadpro-black", sans-serif;
  font-size: 3.5rem;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

.rdsic-intro {
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.rdsic-intro h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

.rdsic-intro img {
  padding-top: 2%;
  width: 90%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.rdsic-feature {
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.rdsic-feature img {
  width: 80%;
  height: auto;
  max-width: 270px;
  object-fit: contain;
  margin: 10px 20px;
}

/* TABLE SECTION */
#section-table {
  position: relative;
  background-image: url("images/Hồ\ Sơ\ Năng\ Lực_web-12.png");
  padding: 120px 20px 60px;
  height: auto;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  z-index: 1;
  overflow: hidden;
}

.section-table-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.section-table-container {
  padding-top: 20%;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: auto;
}

.section-table-container h1 {
  font-weight: bold;
  text-align: center;
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3.5rem;
  color: #f85b24;
}

.section-table-title {
  text-align: center;
  font-size: 40px;
  color: #f85b24;
  font-family: "myriadpro-bold", sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#data-table {
  margin-top: 5%;
  padding-top: 40%;
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.315);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #000;
}

#data-table th {
  background-color: rgb(248, 91, 36);
  color: white;
  font-size: 18px;
  font-family: "myriadpro-bold", sans-serif;
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

#data-table td {
  padding: 12px 15px;
  font-size: 16px;
  font-family: "myriadpro-regular", sans-serif;
  border: 1px solid #ddd;
  text-align: left;
}

#data-table tr:nth-child(even) {
  background-color: rgba(248, 91, 36, 0.5);
}

/* FUNCTION SECTION - Chỉ sửa kích thước, khoảng cách và hình dạng */
#function {
  position: relative;
  background: url("../assets/images/sbim-func-back.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  color: white;
  overflow: hidden;
}

#function::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.function-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.function-title {
  margin-bottom: 80px;
}

.function-title h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3.2rem;
  color: white;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 2px;
}

/* Chức năng chính - nổi bật hơn */
.function-title .function-item {
  background: linear-gradient(135deg, #2d81c5, #1e5799);
  padding: 40px 30px;
  margin: 0 auto 60px auto;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.function-title .function-item img {
  max-width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.function-title .function-item p {
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
  line-height: 1.6;
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  justify-items: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.function-item {
  background: linear-gradient(135deg, #2d81c5, #2d81c5);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 300px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.function-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.function-item img {
  max-width: 260px;
  height: 120px;
  margin-bottom: 25px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.function-item:hover img {
  transform: scale(1.1);
}

.function-item p {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  color: #001554;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  #function {
    padding: 80px 30px;
  }

  .function-title h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .function-title {
    margin-bottom: 60px;
  }

  .function-title .function-item {
    padding: 35px 25px;
    margin-bottom: 50px;
    transform: scale(1.02);
  }

  .function-title .function-item img {
    max-width: 100px;
  }

  .function-title .function-item p {
    font-size: 1.2rem;
  }

  #feature-box {
    flex-direction: column;
    width: 90%;
    height: auto;
    transform: none;
    margin: 0 auto;
  }

  .feature-wrapper {
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  .feature-item {
    max-width: 100%;
  }

  .feature-item img {
    width: 40px;
    height: 40px;
  }

  .feature-item p {
    font-size: 16px;
  }

  .function-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 25px;
    max-width: 600px;
  }

  .function-item {
    max-width: 280px;
    min-height: 260px;
    padding: 30px 20px;
  }

  .function-item img {
    max-width: 80px;
    height: 80px;
  }

  .function-item p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #function {
    padding: 60px 20px;
    min-height: auto;
  }

  .nav-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .function-title h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }

  .function-title {
    margin-bottom: 50px;
  }

  .function-title .function-item {
    padding: 30px 20px;
    margin-bottom: 40px;
    transform: scale(1);
    max-width: 100%;
  }

  .function-title .function-item img {
    max-width: 90px;
  }

  .function-title .function-item p {
    font-size: 1.1rem;
  }

  .function-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 350px;
  }

  .function-item {
    max-width: 100%;
    min-height: 240px;
    padding: 25px 20px;
  }

  .function-item img {
    max-width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }

  .function-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  #function {
    padding: 50px 15px;
  }

  .home-img {
    display: none;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }

  .function-title h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .function-title {
    margin-bottom: 40px;
  }

  .function-title .function-item {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  #feature-box {
    margin: 0 auto;
    width: 95%;
  }

  .feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .feature-item {
    max-width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .feature-item p {
    font-size: 14px;
    text-align: center;
    word-break: keep-all;
    white-space: nowrap;
  }

  .feature-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 75, 153, 0.1);
  }

  .feature-item:hover img {
    transform: scale(1.05);
  }

  .function-title .function-item img {
    max-width: 80px;
  }

  .function-title .function-item p {
    font-size: 1rem;
  }

  .function-item {
    min-height: 220px;
    padding: 20px 15px;
  }

  .function-item img {
    max-width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .function-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Utility classes for section heights */
.section-small {
  min-height: 300px;
  height: auto;
}

.section-medium {
  min-height: 500px;
  height: 70vh;
}

.section-large {
  min-height: 700px;
  height: 100vh;
}

.section-auto {
  height: auto;
  min-height: 400px;
  padding: 60px 0;
}

/* Fade animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .home-content {
    padding: 20px 40px 0px 60px;
  }

  .home-title_1 {
    font-size: 1.8rem;
  }

  .home-title_2 {
    font-size: 3.5rem;
  }

  .home-title-sub {
    font-size: 1.3rem;
  }

  .home_des {
    font-size: 1rem;
  }

  .custom-logo-size {
    max-height: 70px;
  }

  .creat-container h1 {
    font-size: 2.5rem;
  }

  .create-des {
    padding: 20px;
  }

  .create-des p {
    font-size: 1rem;
  }

  .function-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .function-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  section {
    min-height: 350px;
  }

  .home-content {
    padding: 20px 30px 0px 40px;
  }

  .home-logo {
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 30px;
  }

  .home-title_1 {
    font-size: 1.5rem;
  }

  .home-title_2 {
    font-size: 2.8rem;
  }

  .home-title-sub {
    font-size: 1.1rem;
  }

  .home_des {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .custom-logo-size {
    max-height: 60px;
  }

  .creat-container {
    padding: 30px 20px;
  }

  .creat-container h1 {
    font-size: 2rem;
  }

  .create-des {
    padding: 15px;
  }

  .create-des p {
    font-size: 0.95rem;
  }

  .create-img {
    padding: 15px;
  }

  .create-img p {
    font-size: 0.95rem;
  }

  .function-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .function-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .function-item {
    min-height: 250px;
    padding: 15px;
  }

  .function-item img {
    width: 100px;
    height: 70px;
  }

  .function-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  section {
    min-height: 300px;
  }

  .home-content {
    padding: 15px 20px 0px 25px;
  }

  .home-content-inside {
    display: flex;
    flex-direction: column;
    max-width: 80%;
  }

  .home-logo {
    gap: 15px;
    padding: 15px 20px;
  }

  .home-title_1 {
    font-size: 1.3rem;
  }

  .home-title_2 {
    font-size: 2.2rem;
  }

  .home-title-sub {
    font-size: 1rem;
  }

  .home_des {
    font-size: 0.9rem;
  }

  .custom-logo-size {
    max-height: 50px;
  }

  .creat-container {
    padding: 20px 15px;
  }

  .creat-container h1 {
    font-size: 1.8rem;
  }

  .create-des {
    padding: 10px;
  }

  .create-des p {
    font-size: 0.9rem;
  }

  .create-img {
    padding: 10px;
  }

  .create-img p {
    font-size: 0.9rem;
  }

  .function-container {
    padding: 60px 15px;
  }

  .function-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .function-item {
    min-height: 220px;
    padding: 12px;
  }

  .function-item img {
    width: 90px;
    height: 60px;
  }

  .function-item p {
    font-size: 0.85rem;
  }
}
#project {
  position: relative;
  background: url("../assets/images/Group\ 5.png") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  color: white;
  overflow: hidden;
}
.project-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 auto;
  text-align: center;
  align-items: center;
}
.project-container img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  padding-bottom: 10%;
}
.project-container h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3.2rem;
  color: #f85b24;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 2px;
}
.footer {
  background: linear-gradient(#f85b24, #f85b24),
    /* Lớp phủ màu xanh mờ */ url("images/Hồ\ Sơ\ Năng\ Lực_web-18.png")
      center/cover no-repeat;
  color: white;
  padding: 40px 0;
  /* Giảm padding từ 60px xuống 40px */
  font-family: "myriadpro-regular", sans-serif;
  position: relative;
  min-height: auto;
  /* Thay đổi từ 60vh xuống auto */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 0;
  /* Đảm bảo không có margin-top */
  margin-bottom: 0;
  /* Đảm bảo không có margin-bottom */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
}

/* .footer-left {
  flex: 1;
  padding-top: 30px;
  padding-right: 40px;
  text-align: center;
} */

/* .footer-left {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-right {
  flex: 2;
  padding-left: 40px;
} */

.footer-left {
  flex: 1;
  min-width: 300px;
  padding: 5px;
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
}

.footer-right {
  flex: 2;
  min-width: 300px;
  padding: 5px;
}

.contact-info {
  text-align: center;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "myriadpro-regular", sans-serif;
  color: white;
  text-align: center;
  font-weight: normal;
}
.system-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: "myriadpro-regular", sans-serif;
  color: white;
  text-align: center;
  font-weight: bold;
}
.contact-details {
  text-align: center;
}

.contact-details p,
.training-info p {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "myriadpro-regular", sans-serif;
  font-weight: normal;
  text-align: center;
}

.training-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.corporate-training {
  margin-top: 20px;
  padding-top: 20px;
}

.system-info p {
  font-size: 20px;
  font-family: "myriadpro-regular", sans-serif;
  color: white;
  text-align: center;
  font-weight: normal;
}

/* .locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'myriadpro-bold', sans-serif;
}

.location p {
  font-size: 16px;
  line-height: 1.5;
} */

.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location {
  padding: 15px;
  display: flex;
  align-items: start;
  gap: 20px;
}

.location-title {
  font-size: 16px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 120px;
  color: white;
  margin: 0;
}

.location-address {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: white;
  margin: 0;
  flex: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .location {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .location-title {
    min-width: auto;
    width: 100%;
  }

  .location-address {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-left {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-right {
    padding-left: 0;
    padding-top: 40px;
  }
}

/* Thêm vào file style.css */
#media .training-content-simple {
  max-width: 77%;
  height: auto;
  margin: 20px auto 40px;
  padding: 40px;
  padding-bottom: 5px;
  background-color: white;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  font-family: "myriadpro-regular", sans-serif;
  color: rgb(19, 53, 112);
  line-height: 1.8;
  font-size: 18px;
}

#media .training-content-simple p {
  font-family: "myriadpro-semibold", sans-serif;
  margin-bottom: 50px;
  line-height: 1.1;
  padding-bottom: 0px;
}

#media .training-content-simple strong {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 32px;
}

.feature-box {
  flex: 0 0 calc(33.33% - 30px);
  text-align: center;
  padding: 30px 20px;
  background: #f0f7ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 75, 153, 0.15);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 22px;
  color: #f85b24;
  margin-bottom: 15px;
  font-family: "myriadpro-bold", sans-serif;
}

.feature-box p {
  font-size: 16px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .training-header h1 {
    font-size: 28px;
  }

  .training-features {
    flex-direction: column;
  }

  .feature-box {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .training-content {
    padding: 30px 20px;
  }
}

