.gthieu{
    background-color: red;
    width: 150px;
    height: 50px;
    padding: 12px 0 0 0;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 15px 15px 15px 15px ;
    margin: 13px 0px 5px 0px;
    
}
.gthieu:hover{
  background-color: yellow;
  text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #ff0000;
  width: 150px;
  text-align: center;
  padding: 3px 3 3 3;
  text-decoration: none;
  color: black;
}
.tieude{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}

.tieude1{
  font-size: 50px; /* Adjusted font size */
  color: black; /* Changed color to black for better visibility */
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: inline-block;
  animation: slideInFromLeft 2s ease-in-out; /* Áp dụng animation */
}

.tieude2 {
  font-family: sans-serif;
  font-size: 23pt;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin: 50px 0 50px 0;
  animation: slideInFromLeft 2s ease-in-out; /* Áp dụng animation */
}

.noidung {
    font-family: sans-serif;
    font-size: 17pt;
    line-height: 1.6;
    opacity: 0.7; /* Make the text slightly transparent */
    margin: auto;
    text-align: center;
    max-width: 608px;
    animation: slideInFromLeft 2s ease-in-out; /* Áp dụng animation */
}
.core-values {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .value-box {
    background-color: #f8f9fc;
    width: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    overflow: hidden;
  }

  .value-title {
    background-color: #00008b; /* navy blue */
    color: white;
    padding: 12px 0;
    font-weight: bold;
  }

  .value-content {
    padding: 16px;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
  }

  @media screen and (max-width: 800px) {
    .value-box {
      width: 100%;
    }
  }

  .card-img-top {
    height: 400px; /* Chiều cao cố định cho ảnh */
    object-fit: cover; /* Cắt ảnh để vừa khung mà không làm méo ảnh */
    width: 100%; /* Đảm bảo ảnh chiếm toàn bộ chiều rộng của card */
    border-radius: 6px; /* Bo góc nhẹ cho ảnh */
  }

a {
    text-decoration: none !important; /* Force removal of underline */
  }
  @keyframes slideInFromLeft {
    0% {
      opacity: 0; /* Bắt đầu với độ mờ */
      transform: translateX(-100%); /* Bắt đầu từ ngoài màn hình bên trái */
    }
    100% {
      opacity: 1; /* Hiển thị hoàn toàn */
      transform: translateX(0); /* Kết thúc ở vị trí ban đầu */
    }
  }
