.outstanding-positions {
  padding: 80px 0;
  background: #fff;
}
.outstanding-positions h2 {
  font-size: 2.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.outstanding-positions h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px;
}
.outstanding-positions .positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .outstanding-positions .positions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.outstanding-positions .position-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.outstanding-positions .position-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.outstanding-positions .position-card:hover .position-image img {
  transform: scale(1.05);
}
.outstanding-positions .position-card .position-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.outstanding-positions .position-card .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.outstanding-positions .position-card .position-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}
.outstanding-positions .position-card .position-info {
  padding: 25px;
}
.outstanding-positions .position-card .position-info h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.outstanding-positions .position-card .position-info .position-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
}
.outstanding-positions .position-card .position-info .position-details .detail-item:last-child {
  margin-bottom: 0;
}
.outstanding-positions .position-card .position-info .position-details .detail-item .icon {
  font-size: 16px;
  width: 20px;
}

.positions-by-department {
  padding: 80px 0;
  background: #f5f5f5;
}
.positions-by-department h2 {
  font-size: 2.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.positions-by-department h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px;
}
.positions-by-department .departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .positions-by-department .departments-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .positions-by-department .departments-grid {
    grid-template-columns: 1fr;
  }
}
.positions-by-department .department-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
}
.positions-by-department .department-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.positions-by-department .department-card:hover .department-icon {
  transform: scale(1.1);
}
.positions-by-department .department-card:hover .view-btn {
  background: #0d47a1;
  transform: translateY(-2px);
}
.positions-by-department .department-card .department-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1976d2, #2196f3);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}
.positions-by-department .department-card .department-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}
.positions-by-department .department-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.positions-by-department .department-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}
.positions-by-department .department-card .view-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #1976d2;
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
}
.positions-by-department .department-card .view-btn:hover {
  text-decoration: none;
}

.other-positions {
  padding: 80px 0;
  background: #fff;
}
.other-positions h2 {
  font-size: 2.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}
.other-positions h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px;
}
.other-positions .positions-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.other-positions .position-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  cursor: pointer;
}
.other-positions .position-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.other-positions .position-item:hover .position-image img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .other-positions .position-item {
    flex-direction: column;
  }
}
.other-positions .position-item .position-image {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 150px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .other-positions .position-item .position-image {
    width: 100%;
    height: 180px;
  }
}
.other-positions .position-item .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.other-positions .position-item .position-content {
  padding: 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .other-positions .position-item .position-content {
    padding: 20px 25px;
  }
}
.other-positions .position-item .position-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.other-positions .position-item .position-content .position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #666;
  font-size: 14px;
}
@media (max-width: 600px) {
  .other-positions .position-item .position-content .position-meta {
    flex-direction: column;
    gap: 8px;
  }
}
.other-positions .position-item .position-content .position-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .outstanding-positions {
    padding: 60px 0;
  }
  .outstanding-positions h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .outstanding-positions .position-card .position-info {
    padding: 20px;
  }
  .outstanding-positions .position-card .position-info h3 {
    font-size: 1.2rem;
  }
  .positions-by-department {
    padding: 60px 0;
  }
  .positions-by-department h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .positions-by-department .department-card {
    padding: 30px 25px;
  }
  .positions-by-department .department-card .department-icon {
    width: 70px;
    height: 70px;
  }
  .positions-by-department .department-card .department-icon img {
    width: 35px;
    height: 35px;
  }
  .positions-by-department .department-card h3 {
    font-size: 1.2rem;
  }
  .other-positions {
    padding: 60px 0;
  }
  .other-positions h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .other-positions .position-item .position-content h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 350px;
  }
  .hero .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero .hero-content .search-form {
    padding: 20px;
    margin: 0 15px;
  }
  .outstanding-positions,
  .positions-by-department,
  .other-positions {
    padding: 40px 0;
  }
  .outstanding-positions h2,
  .positions-by-department h2,
  .other-positions h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .position-card .position-info {
    padding: 15px;
  }
  .position-card .position-info h3 {
    font-size: 1.1rem;
  }
  .department-card {
    padding: 25px 20px;
  }
  .position-item .position-content {
    padding: 15px 20px;
  }
  .position-item .position-content h3 {
    font-size: 1rem;
  }
  .position-item .position-content .position-meta {
    font-size: 13px;
  }
}
.position-card,
.department-card,
.position-item {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.positions-grid .position-card:nth-child(1) {
  animation-delay: 0.1s;
}
.positions-grid .position-card:nth-child(2) {
  animation-delay: 0.2s;
}
.positions-grid .position-card:nth-child(3) {
  animation-delay: 0.3s;
}

.departments-grid .department-card:nth-child(1) {
  animation-delay: 0.1s;
}
.departments-grid .department-card:nth-child(2) {
  animation-delay: 0.2s;
}
.departments-grid .department-card:nth-child(3) {
  animation-delay: 0.3s;
}
.departments-grid .department-card:nth-child(4) {
  animation-delay: 0.4s;
}
.departments-grid .department-card:nth-child(5) {
  animation-delay: 0.5s;
}
.departments-grid .department-card:nth-child(6) {
  animation-delay: 0.6s;
}

.positions-list .position-item:nth-child(1) {
  animation-delay: 0.1s;
}
.positions-list .position-item:nth-child(2) {
  animation-delay: 0.2s;
}
.positions-list .position-item:nth-child(3) {
  animation-delay: 0.3s;
}
.positions-list .position-item:nth-child(4) {
  animation-delay: 0.4s;
}
.positions-list .position-item:nth-child(5) {
  animation-delay: 0.5s;
}
.positions-list .position-item:nth-child(6) {
  animation-delay: 0.6s;
}

.job-details {
  padding: 60px 0 80px;
}
.job-details .job-header {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.job-details .job-header:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.job-details .job-header h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.job-details .job-header .job-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f5f5f5;
}
@media (max-width: 992px) {
  .job-details .job-header .job-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .job-details .job-header .job-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.job-details .job-header .job-meta .meta-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.job-details .job-header .job-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.job-details .job-header .job-meta .meta-item .meta-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.job-details .job-header .job-meta .meta-item .meta-icon svg {
  stroke: #fff;
  width: 20px;
  height: 20px;
}
.job-details .job-header .job-meta .meta-item .meta-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.job-details .job-header .job-meta .meta-item .meta-content .meta-label {
  font-size: 16.67px;
  color: #666;
  font-weight: 400;
}
.job-details .job-header .job-meta .meta-item .meta-content .meta-value {
  font-size: 16.67px;
  color: #333;
  font-weight: 600;
}
.job-details .job-header .job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .job-details .job-header .job-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.job-details .job-header .job-actions .action-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .job-details .job-header .job-actions .action-buttons {
    flex-direction: column;
  }
}
.job-details .job-header .job-actions .action-buttons .apply-btn {
  width: 400px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #1976d2;
  color: #fff;
  font-size: 16.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
}
.job-details .job-header .job-actions .action-buttons .apply-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.job-details .job-header .job-actions .action-buttons .apply-btn:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.job-details .job-header .job-actions .action-buttons .save-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
  font-size: 16.67px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 60px;
}
.job-details .job-header .job-actions .action-buttons .save-btn svg {
  width: 18px;
  height: 18px;
  stroke: #1976d2;
  fill: none;
}
.job-details .job-header .job-actions .action-buttons .save-btn:hover {
  background: #1976d2;
  color: #fff;
  transform: translateY(-2px);
}
.job-details .job-header .job-actions .action-buttons .save-btn:hover svg {
  stroke: #fff;
  fill: #fff;
}
.job-details .job-header .job-actions .share-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .job-details .job-header .job-actions .share-section {
    justify-content: center;
  }
}
.job-details .job-header .job-actions .share-section .share-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.job-details .job-header .job-actions .share-section .social-icons {
  display: flex;
  gap: 10px;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon svg {
  width: 20px;
  height: 20px;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.facebook {
  background: #1877f2;
  color: #fff;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
  transform: translateY(-3px);
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.zalo {
  background: #0068ff;
  color: #fff;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.zalo:hover {
  background: rgb(0, 83.2, 204);
  transform: translateY(-3px);
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.twitter {
  background: #1da1f2;
  color: #fff;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.twitter:hover {
  background: rgb(11.9665271967, 133.4728033473, 208.0334728033);
  transform: translateY(-3px);
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.linkedin {
  background: #0077b5;
  color: #fff;
}
.job-details .job-header .job-actions .share-section .social-icons .social-icon.linkedin:hover {
  background: rgb(0, 85.4696132597, 130);
  transform: translateY(-3px);
}
.job-details .job-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.job-details .job-content:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .job-details .job-content {
    padding: 30px 20px;
  }
}
.job-details .job-content .section {
  margin-bottom: 40px;
}
.job-details .job-content .section:last-child {
  margin-bottom: 0;
}
.job-details .job-content .section h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
}
.job-details .job-content .section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-details .job-content .section ul li {
  padding: 10px 0;
  color: #333;
  line-height: 1.8;
  font-size: 16.67px;
  position: relative;
  padding-left: 0;
}
.job-details .job-content .section ul li:before {
  display: none;
}
.job-details .job-content .section p {
  color: #333;
  line-height: 1.8;
  font-size: 15px;
}
.job-details .job-content .skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.job-details .job-content .skills-tags .skill-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #1976d2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.job-details .job-content .skills-tags .skill-tag:hover {
  background: #1976d2;
  color: #fff;
  border-color: #1976d2;
}
.job-details .job-content .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .job-details .job-content .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.job-details .job-content .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgb(237, 237, 237);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.job-details .job-content .benefits-grid .benefit-item:hover {
  background: rgb(214.3404255319, 232.3468085106, 250.1595744681);
  transform: translateX(5px);
}
.job-details .job-content .benefits-grid .benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.job-details .job-content .benefits-grid .benefit-item .benefit-icon img {
  width: 100%;
  height: auto;
}
.job-details .job-content .benefits-grid .benefit-item .benefit-content {
  flex: 1;
}
.job-details .job-content .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.job-details .job-content .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.job-details .job-content .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.job-details .job-content .contact-info .contact-item .contact-icon {
  font-size: 20px;
  width: 24px;
  flex-shrink: 0;
}
.job-details .job-content .contact-info .contact-item div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.job-details .job-content .contact-info .contact-item div strong {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}
.job-details .job-content .contact-info .contact-item div span,
.job-details .job-content .contact-info .contact-item div a {
  font-size: 15px;
  color: #333;
}
.job-details .job-content .contact-info .contact-item div a.link {
  color: #1976d2;
  text-decoration: none;
}
.job-details .job-content .contact-info .contact-item div a.link:hover {
  text-decoration: underline;
}
.job-details .job-content .apply-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f5f5f5;
}
@media (max-width: 576px) {
  .job-details .job-content .apply-section {
    flex-direction: column;
  }
}
.job-details .job-content .apply-section .apply-btn-large,
.job-details .job-content .apply-section .save-btn-large {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  padding: 16px 48px;
}
.job-details .job-content .apply-section .apply-btn-large {
  background: #1976d2;
  color: #fff;
}
.job-details .job-content .apply-section .apply-btn-large:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.job-details .job-content .apply-section .save-btn-large {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
  padding: 14px 46px;
}
.job-details .job-content .apply-section .save-btn-large svg {
  margin-right: 12px;
}
.job-details .job-content .apply-section .save-btn-large:hover {
  background: #1976d2;
  color: #fff;
  transform: translateY(-2px);
}
.job-details .job-content .link {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}
.job-details .job-content .link:hover {
  text-decoration: underline;
}
