@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;
}

.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;
  }
} */

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;
}

.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);
}

/* 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;
}


#home {
  position: relative;
  background-image: url(../assets/image/home-page.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  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: column;
  height: 100%;
  align-items: center;
  position: relative;
  margin-top: 20px;
}

.home-content {
  flex: 1;
  width: 100vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.home-title_1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
}

.home-title_2 {
  font-family: "Bungee", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
  letter-spacing: 3px;
}

.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;
}

#create {
  background-image: linear-gradient(
      to right,
      rgb(6, 15, 156, 0.9),
      rgba(6, 15, 156, 0.95)
    ),
    url(../assets/image/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: 40px;
  color: white;
}

.creat-container h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  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: #f0f0f0;
  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: #f0f0f0;
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

/* Utility classes để điều chỉnh chiều cao sections */
.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;
}

/* 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;
  }
}

@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;
  }
}

@media (max-width: 576px) {
  section {
    min-height: 300px;
  }

  .home-content {
    padding: 15px 20px 0px 25px;
  }

  .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;
  }
}

/* Hiệu ứng xuất hiện */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
#orgarnize {
  background: linear-gradient(
    to right,
    rgb(7, 19, 197),
    rgb(7, 15, 141),
    rgb(6, 15, 156)
  );
  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: #ffffff;
  font-weight: bold;
}
.orgarnize-img img {
  width: 90%;
  height: auto;
  max-width: 1000px;
  object-fit: contain;
}
.rdsic {
  padding: 60px 40px;
  background: linear-gradient(
    to right,
    rgb(7, 19, 197),
    rgb(7, 15, 141),
    rgb(6, 15, 156)
  );
}

.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;
}

.rdsic h1 {
  font-family: "myriadpro-black", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: bold;
}

.rdsic-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0px;
  max-width: 1400px;
  margin: 0 auto;
}

.rdsic-intro img {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.rdsic-intro p {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #f0f0f0;
  text-align: justify;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .rdsic {
    padding: 50px 30px;
  }

  .rdsic h1 {
    font-size: 3rem;
  }

  .rdsic-intro {
    gap: 40px;
  }

  .rdsic-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .rdsic {
    padding: 40px 20px;
  }

  .rdsic h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .rdsic-intro {
    flex-direction: column;
    gap: 30px;
  }

  .rdsic-intro img {
    max-width: 100%;
  }

  .rdsic-intro p {
    font-size: 1rem;
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .rdsic {
    padding: 30px 15px;
  }

  .rdsic h1 {
    font-size: 2rem;
  }

  .rdsic-intro p {
    font-size: 0.95rem;
    padding: 15px;
  }
}
.mission-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
  padding-left: 0;
}

.mission-card {
  background: #b5eaff;
  padding: 15px;
  width: 300px;
  height: 320px;
  color: white;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.mission-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 7px;
}

.mission-card h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5px;
  font-family: "myriadpro-black", sans-serif;
  font-weight: bold;
  color: #060f9c;
}

.mission-card p {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "myriadpro-regular", sans-serif;
  padding-bottom: 5px;
  color: #040a6a;
}
#spc {
  background-color: #060f9c;
  background-image: linear-gradient(
      to right,
      rgb(7, 19, 197, 0.9),
      rgba(6, 15, 156, 0.9)
    ),
    url(../assets/image/spc-back.png);
  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;
}

.spc-container {
  width: 100%;
  padding: 40px;
  color: white;
}

.spc-container h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: bold;
}

.spc-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.spc-des {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
}

.spc-des p {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
  font-weight: bold;
}

.spc-img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spc-img img {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
}
#introduce {
  background-color: #060f9c;
  background-image: linear-gradient(
      to right,
      rgb(7, 19, 197, 0.8),
      rgba(6, 15, 156, 0.8)
    ),
    url(../assets/image/wave2.png);
  height: auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.training-field {
  width: 100%;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.training-field h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.field-card {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  flex-wrap: wrap;
}

.field-card-item {
  background: linear-gradient(
    135deg,
    rgba(139, 255, 249, 0.4),
    rgba(139, 255, 249, 0.4)
  );
  border: 3px solid rgb(139, 255, 249);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Điều chỉnh vị trí các card để tạo hiệu ứng so le */
.field-card-item:nth-child(1) {
  height: 300px;
  margin-bottom: 60px;
}

.field-card-item:nth-child(2) {
  height: 300px;
  margin-bottom: 0px;
}

.field-card-item:nth-child(3) {
  height: 300px;
  margin-bottom: 40px;
}

.field-card-item:nth-child(4) {
  height: 300px;
  margin-bottom: -20px;
}

.field-card-item:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 195, 247, 0.6);
  box-shadow: 0 15px 30px rgba(79, 195, 247, 0.2);
}

.field-card-item img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.field-card-item h3 {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 15px 10px;
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Responsive Design - Giữ nguyên các media queries hiện có */
@media (max-width: 1200px) {
  .field-card {
    gap: 20px;
  }

  .field-card-item {
    width: 240px;
  }

  .field-card-item img {
    width: 150px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .field-card {
    flex-wrap: wrap;
    justify-content: center;
  }

  .field-card-item:nth-child(1),
  .field-card-item:nth-child(2),
  .field-card-item:nth-child(3),
  .field-card-item:nth-child(4) {
    height: 350px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .field-card {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .training-field {
    padding: 40px 20px;
  }

  .training-field h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .field-card-item {
    width: 90%;
    max-width: 300px;
  }

  .field-card-item:nth-child(1),
  .field-card-item:nth-child(2),
  .field-card-item:nth-child(3),
  .field-card-item:nth-child(4) {
    height: 320px;
    margin-bottom: 0;
  }

  .field-card-item img {
    width: 120px;
    height: 100px;
  }

  .field-card-item h3 {
    font-size: 1rem;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .nav-link {
    padding: 6px 10px;
    font-size: 13px;
  }
  .training-field h1 {
    font-size: 2rem;
  }

  .field-card-item {
    width: 95%;
  }

  .field-card-item:nth-child(1),
  .field-card-item:nth-child(2),
  .field-card-item:nth-child(3),
  .field-card-item:nth-child(4) {
    height: 280px;
  }

  .field-card-item img {
    width: 100px;
    height: 80px;
  }

  .field-card-item h3 {
    font-size: 0.95rem;
  }
}
.training-software {
  width: 100%;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.training-software h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.software-card {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  flex-wrap: wrap;
}

.software-card-item {
  background: linear-gradient(
    135deg,
    rgba(139, 255, 249, 0.4),
    rgba(139, 255, 249, 0.4)
  );
  border: 3px solid rgb(139, 255, 249);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 15px;
}

/* Điều chỉnh vị trí các card để tạo hiệu ứng so le */
.software-card-item:nth-child(1) {
  height: 230px;
  margin-bottom: 60px;
}

.software-card-item:nth-child(2) {
  height: 230px;
  margin-bottom: 0px;
}

.software-card-item:nth-child(3) {
  height: 230px;
  margin-bottom: 40px;
}

.software-card-item:nth-child(4) {
  height: 230px;
  margin-bottom: -20px;
}
.software-card-item:nth-child(5) {
  height: 230px;
  margin-bottom: 20px;
}

.software-card-item:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 195, 247, 0.6);
  box-shadow: 0 15px 30px rgba(79, 195, 247, 0.2);
}

.software-card-item img {
  background-color: #ffffff;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  padding: 15px;
}

.software-card-item h3 {
  font-family: "myriadpro-semibold", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 15px 10px;
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Responsive Design - Giữ nguyên các media queries hiện có */
@media (max-width: 1200px) {
  .software-card {
    gap: 20px;
  }

  .software-card-item {
    width: 240px;
  }

  .software-card-item img {
    width: 150px;
    height: 120px;
  }
}

@media (max-width: 992px) {
  .software-card {
    flex-wrap: wrap;
    justify-content: center;
  }

  .software-card-item:nth-child(1),
  .software-card-item:nth-child(2),
  .software-card-item:nth-child(3),
  .software-card-item:nth-child(4) {
    height: 350px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .software-card {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .software-card {
    padding: 40px 20px;
  }

  .software-card h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .software-card-item {
    width: 90%;
    max-width: 300px;
  }

  .software-card-item:nth-child(1),
  .software-card-item:nth-child(2),
  .software-card-item:nth-child(3),
  .software-card-item:nth-child(4) {
    height: 320px;
    margin-bottom: 0;
  }

  .software-card-item img {
    width: 120px;
    height: 100px;
  }

  .software-card-item h3 {
    font-size: 1rem;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .training-software h1 {
    font-size: 2rem;
  }

  .software-card-item {
    width: 95%;
  }

  .software-card-item:nth-child(1),
  .software-card-item:nth-child(2),
  .software-card-item:nth-child(3),
  .software-card-item:nth-child(4) {
    height: 280px;
  }

  .software-card-item img {
    width: 100px;
    height: 80px;
  }

  .software-card-item h3 {
    font-size: 0.95rem;
  }
  
}
#media {
  background-color: #060f9c;
  background-image: url(../assets/image/media.png),
    linear-gradient(to right, rgba(7, 19, 197, 0.8), rgba(6, 15, 156, 0.8));
  height: auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}

.app {
  width: 100%;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.app h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.app-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.app-card-item {
  background: white;
  border: 4px solid #8bfff9;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.app-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 255, 249, 0.2);
  border-color: rgba(139, 255, 249, 0.8);
}

.app-card-item img {
  width: 240px;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.app-card-des {
  text-align: left;
  flex: 1;
}

.app-card-des h3 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 1.5rem;
  color: #060f9c;
  margin-bottom: 15px;
  font-weight: bold;
}

.app-card-des p {
  font-family: "myriadpro-regular", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #060b59;
  font-weight: bold;
}

.app-card-des p br {
  margin-bottom: 10px;
  display: block;
  content: "";
}

/* Responsive Design */
@media (max-width: 992px) {
  .app {
    padding: 50px 30px;
  }

  .app h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .app-card-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .app-card-des {
    text-align: center;
  }

  .app-card-item img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .app {
    padding: 40px 20px;
  }

  .app h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .app-card-item {
    padding: 20px;
    gap: 20px;
  }

  .app-card-item img {
    width: 150px;
    height: 150px;
  }

  .app-card-des h3 {
    font-size: 1.3rem;
  }

  .app-card-des p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .app {
    padding: 30px 15px;
  }

  .app h1 {
    font-size: 1.8rem;
  }

  .app-card-item {
    padding: 15px;
  }

  .app-card-item img {
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  .app-card-des h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .app-card-des p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.project {
  width: 100%;
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.project h1 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.project-card {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.project-card-item {
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  width: calc(
    50% - 15px
  ); /* Quan trọng: mỗi card chiếm 50% chiều rộng trừ đi gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box; /* Đảm bảo padding không làm vượt quá kích thước */
}

.project-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(139, 255, 249, 0.3);
}

.project-card-item img {
  background: linear-gradient(
    135deg,
    rgba(139, 255, 249, 0.3),
    rgba(139, 255, 249, 0.3)
  );
  border: 3px solid rgb(139, 255, 249);
  border-radius: 40px;
  width: 400px;
  height: 220px;
  object-fit: contain;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 10px;
}

.project-card-item h3 {
  font-family: "myriadpro-bold", sans-serif;
  font-size: 1.3rem;
  color: white;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .project-card {
    gap: 25px;
  }

  .project-card-item {
    width: 250px;
  }

  .project-card-item img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 992px) {
  .project {
    padding: 50px 30px;
  }

  .project h1 {
    font-size: 3rem;
    margin-bottom: 50px;
  }

  .project-card-item {
    width: 220px;
  }

  .project-card-item img {
    width: 160px;
    height: 160px;
  }

  .project-card-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .project {
    padding: 40px 20px;
  }

  .project h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .project-card {
    gap: 20px;
  }

  .project-card-item {
    width: 200px;
  }

  .project-card-item img {
    width: 140px;
    height: 140px;
  }

  .project-card-item h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .project {
    padding: 30px 15px;
  }

  .project h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .project-card {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .project-card-item {
    width: 90%;
    max-width: 280px;
  }

  .project-card-item img {
    width: 120px;
    height: 120px;
  }

  .project-card-item h3 {
    font-size: 1rem;
  }

}
.footer {
  background: linear-gradient(135deg, #090e70, #0812b6);
  color: white;
  padding: 40px 0;
  font-family: "myriadpro-regular", sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-right {
  flex: 2;
  min-width: 300px;
  padding: 20px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "myriadpro-semibold", sans-serif;
  color: white;
  /* text-align: left; */
  font-weight: bold;
}

.contact-details {
  text-align: start;
}

.contact-details p {
  /* text-align: center; */
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: "myriadpro-semibold", sans-serif;
  font-weight: bold;
}

.training-info {
  text-align: center;
  margin-top: 30px;
}

.training-info p {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: "myriadpro-regular", sans-serif;
}

.corporate-training {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.system-info h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: "myriadpro-bold", sans-serif;
  color: white;
  text-align: center;
}

.system-info p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "myriadpro-semibold", sans-serif;
  color: white;
  /* text-align: left; */
  line-height: 1.4;
  font-weight: bold;
}

/* .locations {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .location h4 {
            font-size: 18px;
            margin-bottom: 8px;
            font-family: 'myriadpro-bold', sans-serif;
            color: white;
            font-weight: bold;
        }

        .location p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 15px;
            font-family: 'myriadpro-semibold', sans-serif;
            font-weight: bold;
        } */

.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.location {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.location h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: 20px;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 30px;
  }

  .footer-right {
    padding-top: 30px;
  }

  .contact-info h3,
  .system-info h3 {
    text-align: center;
  }

  .system-info p {
    text-align: center;
  }
}
