/* Custom CSS for Rang Dong Website */

/* Base Styles */
/* Base Styles with Updated Color Palette */
:root {
  /* --primary-color: #859f3d; */
  --primary-color: #bfe735;
  --primary-dark: #31511e;
  --accent-green: #b4d235;
  --accent-red: #e30613;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --blue-dark: #1e3a8a;
  --blue-light: #4e7bda;

  --tech-bg: #000000;
  --tech-alt-bg: #2a2a2a;

  /* Additional colors for futuristic tech theme */
  --tech-accent: #00f0ff;
  --tech-accent-alt: #7928ca;
  --tech-text: #e2e8f0;
  --tech-border: rgba(255, 255, 255, 0.1);
  --tech-shadow: rgba(0, 240, 255, 0.2);

  --blue-primary: rgba(78, 123, 218, 0.05);

  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
}
/* Top Header with Gradient */
.hd-rang-dong-top-header {
  background: linear-gradient(to bottom, #d6e1f7, #ffffff);
  padding: 15px 0;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-header {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-header.active {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hd-rang-dong-logo {
  display: inline-block;
  max-width: 200px;
}

.hd-rang-dong-vietnam-value {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 65px;
}
.hd-rang-dong-vietnam-value img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rotate 10s linear infinite;
  -webkit-animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
  }
}

/* Main Navigation */
.hd-rang-dong-main-nav {
  background-color: var(--primary-color);
  color: var(--white);
}

.hd-rang-dong-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hd-rang-dong-nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-rang-dong-nav-item {
  position: relative;
  z-index: 5;
}
.hd-rang-dong-nav-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: calc(100% - 3px);
  background-color: var(--white);
  z-index: -1;
  clip-path: url(#header-clip-path);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-nav-link {
  display: block;
  padding: 15px 20px;
  /* color: var(--white); */
  color: var(--tech-bg);
  text-decoration: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-family: var(--title-font);
  font-size: clamp(0.8rem, -0.2709rem + 1.6716vw, 1.15rem);
}

.hd-rang-dong-nav-link:hover {
  /*background-color: var(--primary-dark);
  */
  color: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hd-rang-dong-active .hd-rang-dong-nav-link {
  /*background-color: var(--white);
  */
  /* color: var(--primary-color); */
  color: var(--tech-bg);
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6));
  -webkit-filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6));
}

.hd-rang-dong-dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
}

.hd-rang-dong-dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  filter: blur(10px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.hd-rang-dong-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--dark-gray);
  text-decoration: none;
  font-family: var(--title-font);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-rang-dong-dropdown-menu a:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.svg-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hd-rang-dong-dropdown:hover .hd-rang-dong-dropdown-menu {
  filter: blur(0px);
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  -o-filter: blur(0px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* Search and Language */
.hd-rang-dong-nav-right {
  display: flex;
  align-items: center;
}

.hd-rang-dong-search-container {
  position: relative;
  margin-right: 15px;
}

.hd-rang-dong-search-form {
  display: flex;
  align-items: center;
}

.hd-rang-dong-search-input {
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  width: 180px;
}

.hd-rang-dong-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-bg);
  cursor: pointer;
}

.hd-rang-dong-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1000;
  display: none;
  margin-top: 5px;
}

.hd-rang-dong-language-switcher {
  display: flex;
  overflow: hidden;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  position: relative;
  border: none;
}

.hd-rang-dong-lang-btn {
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--primary-color);
  color: var(--tech-bg);
  border: none;
}
.hd-rang-dong-lang-btn {
  background-color: var(--white);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-lang-btn:hover {
  color: var(--accent-red);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-lang-btn.hd-rang-dong-lang-active {
  /* background-color: var(--primary-color);*/
  background: transparent;
  color: var(--tech-bg);
  position: relative;
  z-index: 1;
}
.hd-rang-dong-lang-active:first-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 120%;
  height: 100%;
  background-color: var(--primary-color);
  transform: skewX(20deg);
  -webkit-transform: skewX(20deg);
  -moz-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  -o-transform: skewX(20deg);
  z-index: -1;
}
.hd-rang-dong-lang-active:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  width: 120%;
  height: 100%;
  background-color: var(--primary-color);
  transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  z-index: -1;
}

/* Mobile Toggle Button */
.hd-rang-dong-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hd-rang-dong-mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Navigation Panel */
.hd-rang-dong-mobile-nav {
  position: fixed;
  top: 0;
  left: 0%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

/* Khi active, chúng ta sẽ dịch chuyển panel sang phải */
.hd-rang-dong-mobile-nav.active {
  /* transform: translateX(100%); */
  /* transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease; */
}

/* Close Button cho mobile nav */
.hd-rang-dong-mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/* Mobile Navigation Menu */
.hd-rang-dong-mobile-nav-menu {
  list-style: none;
  padding: 60px 20px 20px; /* đủ chỗ cho nút đóng */
  margin: 0;
}

.hd-rang-dong-mobile-nav-item {
  margin-bottom: 15px;
}

.hd-rang-dong-mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.hd-rang-dong-mobile-nav-link:hover {
  color: var(--accent-red); /* Sử dụng màu accent hoặc một màu nổi bật */
}

/* Dropdown cho mobile */
.hd-rang-dong-mobile-dropdown-menu {
  list-style: none;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  background-color: var(--primary-dark);
}
.hd-rang-dong-mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  color: var(--white);
  padding-left: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-rang-dong-mobile-dropdown-menu li:last-of-type a {
  border-bottom: none;
}

.hd-rang-dong-mobile-nav-item.hd-rang-dong-active
  > .hd-rang-dong-mobile-dropdown-menu {
  display: block;
}

/* Mobile Toggle Button (có sẵn) */
.hd-rang-dong-mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hd-rang-dong-mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Slider Section */
.hd-rang-dong-slider-section {
  position: relative;
}

.hd-rang-dong-main-slider {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.hd-rang-dong-slide-content {
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-slide-content img,
.hd-rang-dong-slide-content a,
.hd-rang-dong-slide-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-green-accent {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: var(--accent-green);
}

.hd-rang-dong-red-accent {
  position: absolute;
  top: 60%;
  left: 0;
  width: 30%;
  height: 40px;
  background-color: var(--accent-red);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.hd-rang-dong-slide-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Introduction Section */
.hd-rang-dong-intro-section {
  padding: 60px 0;
  padding-bottom: 7%;
}

.hd-rang-dong-section-title {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  position: relative;
  font-family: lato-black;
  text-transform: uppercase;
  /* width: 100%; */
}

.hd-rang-dong-intro-paragraph {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  line-height: 1.6;
}

.hd-rang-dong-read-more {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--tech-bg);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  position: relative;
  padding-right: 60px;
  font-family: lato-b;
  transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  -moz-transition: background-color 0.4s ease, color 0.4s ease;
  -ms-transition: background-color 0.4s ease, color 0.4s ease;
  -o-transition: background-color 0.4s ease, color 0.4s ease;
}
.hd-rang-dong-read-more:hover {
  color: var(--white);
  background-color: var(--accent-red);
  transition: background-color 0.4s ease, color 0.4s ease;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  -moz-transition: background-color 0.4s ease, color 0.4s ease;
  -ms-transition: background-color 0.4s ease, color 0.4s ease;
  -o-transition: background-color 0.4s ease, color 0.4s ease;
}
.hd-rang-dong-arrow {
  position: absolute;
  top: 0;
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px;
}
.hd-rang-dong-arrow img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hd-rang-dong-intro-card {
  position: relative;
  overflow: hidden;
}
.hd-rang-dong-intro-card-image {
  --bs-aspect-ratio: 120%;
  /* min-height: 100%; */
}
.hd-rang-dong-intro-card-image a,
.hd-rang-dong-intro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.hd-rang-dong-intro-card-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}

.hd-rang-dong-intro-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  display: flex;
  align-items: end;
  pointer-events: none;
}

.hd-rang-dong-card-icon {
  margin-right: 15px;
}

.hd-rang-dong-card-text {
  color: var(--white);
  font-family: lato-b;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hd-rang-dong-mobile-toggle {
    display: block;
  }

  .hd-rang-dong-nav-container {
    padding: 10px 0;
  }

  .hd-rang-dong-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    z-index: 1000;
    display: none;
  }

  .hd-rang-dong-nav-menu.hd-rang-dong-active-menu {
    display: block;
  }

  .hd-rang-dong-dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: var(--primary-dark);
    display: none;
  }

  .hd-rang-dong-dropdown.hd-rang-dong-active-dropdown
    .hd-rang-dong-dropdown-menu {
    display: block;
  }

  .hd-rang-dong-dropdown-menu a {
    color: var(--white);
    padding-left: 30px;
  }

  .hd-rang-dong-active .hd-rang-dong-nav-link {
    border-radius: 0;
  }

  .hd-rang-dong-search-input {
    width: 150px;
  }

  .hd-rang-dong-slide-logo {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .hd-rang-dong-vietnam-value {
    right: 10px;
    max-width: 30px;
  }

  .hd-rang-dong-search-container {
    margin-right: 10px;
  }

  .hd-rang-dong-search-input {
    width: 120px;
  }

  .hd-rang-dong-lang-btn {
    padding: 5px 8px;
    font-size: 11px;
  }

  .hd-rang-dong-green-accent {
    height: 20px;
  }

  .hd-rang-dong-red-accent {
    height: 30px;
  }

  .hd-rang-dong-slide-logo {
    max-width: 150px;
  }

  .hd-rang-dong-intro-section {
    padding: 40px 0;
  }

  .hd-rang-dong-section-title {
    font-size: 24px;
  }
}

/* header start */
.hd-rang-dong-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* header end */

/* slider naviation start */
/* Pagination Styling */
.hd-swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
.hd-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  border: 2px solid var(--white);
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hd-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

/* Navigation Buttons Styling */
.hd-swiper-button-next,
.hd-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-swiper-button-next:hover,
.hd-swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}
.hd-swiper-button-next {
  right: 20px;
}
.hd-swiper-button-prev {
  left: 20px;
}
.hd-swiper-button-next i,
.hd-swiper-button-prev i {
  color: var(--white);
  font-size: 18px;
}

/* slider naviation end */

/* giới thiệu start */
.hd-rang-dong-card-text-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.hd-rang-dong-intro-card-col:nth-child(odd) .hd-rang-dong-intro-card {
  transform: translateY(15%);
  -webkit-transform: translateY(15%);
  -moz-transform: translateY(15%);
  -ms-transform: translateY(15%);
  -o-transform: translateY(15%);
}

/* giới thiệu end */

/* con số ấn tượng start */
/* Impressive Numbers Section */
.hd-rang-dong-impressive-numbers {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hd-rang-dong-impressive-numbers-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--background-impressive-numbers);
}
.hd-rang-dong-impressive-numbers .container {
  position: relative;
  z-index: 5;
}
.hd-rang-dong-impressive-numbers-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
  z-index: 2;
}
.hd-rang-dong-impressive-numbers-bg::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
  z-index: 2;
}
.hd-rang-dong-section-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.hd-rang-dong-section-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.hd-rang-dong-stats-container {
  background-color: rgba(232, 232, 232, 0.2);
  border-radius: 10px;
  padding: 30px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(30px);
}

.hd-rang-dong-stat-item {
  text-align: center;
  padding: 15px;
  position: relative;
}

.hd-rang-dong-stat-number {
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  font-family: lato-black;
  color: var(--primary-color);
  line-height: 1;
  display: inline-block;
}

.hd-rang-dong-stat-plus {
  font-size: 32px;
  position: relative;
  top: -10px;
}

.hd-rang-dong-stat-unit {
  font-size: clamp(1.1rem, 1.0077rem + 0.4615vw, 1.4rem);
  color: var(--primary-color);
  font-family: lato-b;
  margin-left: 5px;
  display: inline-block;
}

.hd-rang-dong-stat-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 5px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* con số ấn tượng end */

/* các dòng sản phẩm start */
/* Product Categories Section */
.hd-rang-dong-product-categories {
  background-color: var(--white);
  padding: 60px 0;
}

.hd-rang-dong-product-categories .hd-rang-dong-section-title {
  color: var(--dark-gray);
}

.hd-rang-dong-highlight {
  color: var(--primary-color);
}

.hd-rang-dong-product-category {
  background-color: var(--background-category);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}

.hd-rang-dong-category-title {
  color: var(--dark-gray);
  text-transform: uppercase;
  font-family: lato-b;
  text-align: center;
  padding: 15px 10px;
  font-size: clamp(0.9rem, 0.7769rem + 0.6154vw, 1.3rem);
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
}
.hd-rang-dong-product-category-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  margin-top: auto;
}
.hd-rang-dong-product-category-image img {
  height: 250px;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
}

.hd-rang-dong-product-categories .row .col-md-3 {
  width: 20%;
}
.hd-rang-dong-product-categories .row .col-md-4 {
  width: 40%;
}
.hd-rang-dong-product-category-item .hd-rang-dong-product-category {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.hd-rang-dong-product-category-item:hover .hd-rang-dong-product-category {
  background-color: var(--primary-dark) !important;
  color: var(--white);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.hd-rang-dong-product-category-item:hover .hd-rang-dong-category-title {
  color: var(--white);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
/* các dòng sản phẩm end */

/* chứng nhận start */
/* Certificates Section */
.hd-rang-dong-certificates {
  background: linear-gradient(
      to right,
      rgba(214, 225, 247, 0.8),
      rgba(214, 225, 247, 0.8)
    ),
    url("images/chess-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}
.hd-rang-dong-certificates .container {
  position: relative;
  z-index: 5;
}
.hd-rang-dong-certificates-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--background-certificate);
  z-index: 1;
}
.hd-rang-dong-certificates-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  z-index: 2;
}
.hd-rang-dong-certificates-bg::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
  z-index: 2;
}
.hd-rang-dong-certificates .hd-rang-dong-section-title {
  margin-bottom: 40px;
}

.hd-rang-dong-certificates-slider {
  position: relative;
  padding: 0 50px;
}

.hd-rang-dong-certificate {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hd-rang-dong-certificate img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.hd-rang-dong-cert-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-rang-dong-cert-nav:hover {
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-rang-dong-cert-prev {
  left: 0;
}

.hd-rang-dong-cert-next {
  right: 0;
}
/* chứng nhận end */

/* tin tức và sự kiện start */
/* Featured News Section */
.hd-rang-dong-news-section {
  background-color: var(--white);
  padding: 60px 0;
  color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-news-section .hd-rang-dong-section-title {
  color: var(--primary-dark);
  font-size: clamp(1.5rem, 1.0385rem + 2.3077vw, 3rem);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: lato-black;
  text-transform: uppercase;
}

.page-tin-tuc-va-su-kien .hd-rang-dong-highlight {
  color: var(--white);
}

.hd-rang-dong-tab-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.hd-rang-dong-tab-item {
  color: var(--white);
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  cursor: pointer;
  position: relative;
}

.hd-rang-dong-tab-item.active {
  color: var(--blue-light);
}

.hd-rang-dong-tab-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--blue-light);
  margin-left: 15px;
}

.hd-rang-dong-news-featured {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.hd-rang-dong-news-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  margin-bottom: 30px;
}

.hd-rang-dong-news-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hd-rang-dong-news-image img,
.hd-rang-dong-news-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}

.hd-rang-dong-news-featured .hd-rang-dong-news-image img,
.hd-rang-dong-news-featured .hd-rang-dong-news-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}
.hd-rang-dong-news-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}

.hd-rang-dong-news-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 80px;
}

.hd-rang-dong-news-content {
  background: #f5f5f5;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.hd-rang-dong-news-content-wrapper {
  position: relative;
  z-index: 5;
  margin-top: -20px;
}

.hd-rang-dong-news-date {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

.hd-rang-dong-news-title {
  font-size: 1rem;
  font-family: lato-b;
  line-height: 1.5;
}
.hd-rang-dong-news-title a {
  color: var(--dark-gray);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-rang-dong-news-title a:hover {
  color: var(--primary-dark);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-rang-dong-news-featured .hd-rang-dong-news-title {
  font-size: 1rem;
}

.hd-rang-dong-news-excerpt {
  display: none;
}
.hd-rang-dong-news-excerpt {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.5;
}
.main-news-item .hd-rang-dong-news-excerpt {
  display: block;
}
/* tin tức và sự kiện end */

/* khách hàng start */
/* Featured Clients Section */
.hd-rang-dong-clients-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    var(--background-clients);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: var(--white);
  position: relative;
  background-attachment: fixed;
}

.hd-rang-dong-clients-section .hd-rang-dong-section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 1.6769rem + 0.6154vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1.2;
}

.hd-rang-dong-clients-slider {
  position: relative;
  padding: 0 50px 0 0;
}

.hd-rang-dong-client-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hd-rang-dong-client-item img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.hd-rang-dong-clients-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-rang-dong-clients-nav:hover {
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-rang-dong-clients-next {
  right: 0;
}

/* khách hàng end */

/* footer start */
/* Footer Section */
.hd-rang-dong-footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 60px 0 30px;
  position: relative;
}
.hd-rang-dong-footer .container {
  position: relative;
  z-index: 10;
}
.hd-rang-dong-footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.hd-rang-dong-footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-footer-company {
  font-size: clamp(1.1rem, 1.0077rem + 0.4615vw, 1.4rem);
  margin-bottom: 15px;
  font-family: lato-black;
}

.hd-rang-dong-footer-address,
.hd-rang-dong-footer-phone {
  font-size: 14px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.hd-rang-dong-contact-methods {
  margin: 30px 0;
}

.hd-rang-dong-contact-item {
  display: flex;
  align-items: center;
  /* background-color: rgba(255, 255, 255, 0.1); */
  background: var(--primary-dark);
  border-radius: 8px;
  padding: 15px;
  height: 100%;
}

.hd-rang-dong-contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.hd-rang-dong-contact-icon.zalo svg {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.hd-rang-dong-contact-icon svg,
.hd-rang-dong-contact-icon img {
  width: 24px;
  height: 24px;
  color: var(--text-color);
}

.hd-rang-dong-contact-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 5px;
  color: var(--white);
}

.hd-rang-dong-contact-value {
  font-size: 1rem;
  font-family: lato-b;
  color: var(--white);
}

.hd-rang-dong-footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.hd-rang-dong-footer-logo {
  margin-bottom: 20px;
  max-width: 200px;
}

.hd-rang-dong-footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}
.hd-rang-dong-footer-description strong,
.hd-rang-dong-footer-description b {
  font-weight: none;
  font-family: lato-b;
}
.hd-rang-dong-footer-heading {
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-family: lato-b;
}

.hd-rang-dong-footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.hd-rang-dong-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-rang-dong-footer-links li {
  margin-bottom: 10px;
}

.hd-rang-dong-footer-links a {
  color: var(--text-color);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 14px;
}

.hd-rang-dong-footer-links a:hover {
  opacity: 1;
}

.hd-rang-dong-footer-fanpage {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.hd-rang-dong-footer-fanpage iframe {
  pointer-events: all !important;
}

.hd-rang-dong-copyright {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* footer end */

/* tin tức  start */
.hd-rang-dong-tab-item-tin-tuc {
  color: var(--dark-gray);
  padding: 10px 20px;
  font-family: var(--title-font);
  font-size: clamp(0.8rem, 0.7077rem + 0.4615vw, 1.1rem);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  clip-path: url(#tab-tin-tuc-su-kien-clip-path);
  cursor: pointer;
}
.hd-rang-dong-tab-item-tin-tuc.active {
  background-color: var(--primary-color);
  color: var(--tech-bg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.svg-tab-tin-tuc-su-kien {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hd-rang-dong-tab-header ul {
  border-bottom: 2px solid var(--primary-color);
}
/* tin tức  end */

/* trang giới thiệu start */
/* Base Styles with Color Palette */

/* Banner Section */
.hd-rang-dong-banner {
  background: linear-gradient(
    to right,
    var(--primary-dark),
    var(--primary-color)
  );
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.hd-rang-dong-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--background-banner);
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hd-rang-dong-breadcrumb {
  position: relative;
  z-index: 2;
}

.hd-rang-dong-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.hd-rang-dong-breadcrumb .breadcrumb-item {
  color: var(--white);
  font-size: clamp(1.15rem, 1.0731rem + 0.3846vw, 1.4rem);
  font-family: lato-b;
  text-transform: uppercase;
}

.hd-rang-dong-breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.hd-rang-dong-breadcrumb .breadcrumb-item a:hover {
  opacity: 1;
}

.hd-rang-dong-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
  opacity: 0.6;
}

.hd-rang-dong-breadcrumb .breadcrumb-item.active {
  color: var(--white);
}

/* Introduction Section */
.hd-rang-dong-introduction-bg-pattern {
  position: relative;
}
.hd-rang-dong-introduction-bg-pattern section {
  position: relative;
  z-index: 5;
}
.hd-rang-dong-introduction {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hd-rang-dong-introduction-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hd-rang-dong-introduction-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #ffffff, transparent);
  z-index: 2;
}
.hd-rang-dong-introduction-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
}

.hd-rang-dong-introduction-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-introduction::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}
.hd-rang-dong-introduction .container {
  position: relative;
  z-index: 5;
}

.page-lich-su-hinh-thanh .hd-rang-dong-section-title {
  color: var(--primary-color);
  font-family: lato-black;
  font-size: clamp(1.9rem, 1.5615rem + 1.6923vw, 3rem);
  position: relative;
  z-index: 2;
}

.hd-rang-dong-intro-content {
  position: relative;
  z-index: 2;
}

.hd-rang-dong-intro-content p {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hd-rang-dong-intro-divider {
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 30px 0;
}

.hd-rang-dong-intro-slider-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hd-rang-dong-intro-slide {
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-intro-slide-image {
  overflow: hidden;
  height: 100%;
  min-height: 100%;
}
.hd-rang-dong-intro-slide-image a,
.hd-rang-dong-intro-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-intro-navigation {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hd-rang-dong-intro-nav {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue-primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}
.hd-rang-dong-intro-nav:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* History Section */
.hd-rang-dong-history {
  /* background: linear-gradient(to right, var(--blue-primary), var(--blue-light)); */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-history-content {
  position: relative;
  z-index: 2;
  background-color: var(--primary-dark);
  padding: 40px;
  padding-right: 60px;
  height: 100%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.hd-rang-dong-history .hd-rang-dong-section-title {
  color: var(--white);
}

.hd-rang-dong-history-text {
  color: var(--white);
}

.hd-rang-dong-history-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hd-rang-dong-timeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-year {
  color: var(--dark-gray);
  font-size: 1.2rem;
  font-family: lato-black;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.page-lich-su-hinh-thanh .swiper-slide-thumb-active .hd-rang-dong-year {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-rang-dong-year-slider {
  position: relative;
  z-index: 2;
}

.hd-rang-dong-year-slide {
  background-color: var(--white);
  color: var(--blue-primary);
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.hd-rang-dong-history-slider {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.hd-rang-dong-history-slide {
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.hd-rang-dong-history-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.hd-rang-dong-history-image:hover img {
  transform: scale(1.05);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-rang-dong-history-image img,
.hd-rang-dong-history-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hd-rang-dong-history-slide-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.hd-rang-dong-history-slide-content strong {
  color: var(--blue-primary);
}

.hd-rang-dong-history-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.hd-rang-dong-history-nav {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-rang-dong-history-nav:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-rang-dong-history-nav.hd-rang-dong-history-prev.swiper-button-disabled,
.hd-rang-dong-history-nav.hd-rang-dong-history-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hd-rang-dong-history-slide {
  filter: blur(3px);
  -webkit-filter: blur(3px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.hd-rang-dong-history-slider .swiper-slide-active .hd-rang-dong-history-slide {
  filter: blur(0px);
  -webkit-filter: blur(0px);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.page-lich-su-hinh-thanh .hd-rang-dong-certificates {
  background: transparent;
}
.page-lich-su-hinh-thanh .hd-rang-dong-certificates-bg {
  display: none;
}
.hd-rang-dong-page-content {
  max-width: 1000px;
  margin: 0 auto;
}
.hd-rang-dong-page-title {
  font-family: lato-black;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 1.2154rem + 2.9231vw, 3.7rem);
  color: var(--primary-color);
  text-align: center;
}

/* trang giới thiệu end */

/* trang tầm nhìn và sứ mệnh start */

/* Vision, Mission, and Core Values Section */
.hd-rang-dong-vision-mission-pattern section {
  position: relative;
  z-index: 5;
}
.hd-rang-dong-vision-mission {
  /* background: linear-gradient(to bottom, #000000, #1a1a1a); */
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-vision-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/stars-pattern.png");
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}
.hd-rang-dong-vision-mission .container {
  position: relative;
  z-index: 5;
}

.page-tam-nhin-va-su-menh .hd-rang-dong-section-title {
  color: var(--primary-color);
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  font-family: lato-black;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
}

.page-tam-nhin-va-su-menh .hd-rang-dong-intro-text {
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.page-tam-nhin-va-su-menh .hd-rang-dong-intro-text p {
  font-size: 16px;
  line-height: 1.6;
}

.hd-rang-dong-vision-mission-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 10px;
  overflow: hidden;
}

.hd-rang-dong-blue-column {
  background-color: var(--primary-dark);
  padding: 0;
  position: relative;
}
.hd-rang-dong-blue-column-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
}
.hd-rang-dong-blue-column-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-content-column {
  padding: 30px 15px;
}

.hd-rang-dong-vision-item,
.hd-rang-dong-mission-item,
.hd-rang-dong-values-item {
  margin-bottom: 40px;
  position: relative;
}

.hd-rang-dong-vision-item:last-child,
.hd-rang-dong-mission-item:last-child,
.hd-rang-dong-values-item:last-child {
  margin-bottom: 0;
}

.hd-rang-dong-icon-circle {
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  margin-left: -60px;
}

.hd-rang-dong-item-title {
  color: var(--primary-dark);
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  margin-bottom: 15px;
  font-family: lato-b;
  text-transform: uppercase;
}

.hd-rang-dong-item-text,
.hd-rang-dong-mission-list,
.hd-rang-dong-mission-list p {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 1;
}

.hd-rang-dong-mission-list p,
.hd-rang-dong-values-list p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  opacity: 0.9;
  position: relative;
  padding-left: 30px;
}

.hd-rang-dong-number {
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: bold;
}

/* Development Orientation Section */
.hd-rang-dong-development {
  /* background: linear-gradient(to bottom, #cccccc, #f5f5f5); */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-development .hd-rang-dong-section-title {
  color: var(--primary-color);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.hd-rang-dong-development-content {
  position: relative;
  z-index: 2;
}

.hd-rang-dong-development-content p {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
.hd-rang-dong-development-image-item {
  height: 100%;
  position: relative;
}
.hd-rang-dong-development-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--white);
  width: 100%;
  height: 100%;
}

.hd-rang-dong-development-image-item::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-size: contain;
  z-index: -1;
  opacity: 0.5;
  border: 3px solid var(--primary-dark);
  pointer-events: none;
}

.hd-rang-dong-development-image-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-size: contain;
  z-index: -1;
  opacity: 0.5;
  border: 3px solid var(--primary-dark);
  pointer-events: none;
}

.hd-rang-dong-development-image img,
.hd-rang-dong-development-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-tam-nhin-va-su-menh .hd-rang-dong-intro-text {
  color: var(--dark-gray);
}
.hd-rang-dong-icon-circle img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
/* trang tầm nhìn và sứ mệnh end */

/* trang cơ cấu tổ chức start */
.hd-co-cau-to-chuc-pattern {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hd-co-cau-to-chuc-pattern .container {
  position: relative;
  z-index: 5;
}
.hd-co-cau-to-chuc-content {
  position: relative;
  z-index: 2;
}
.hd-co-cau-to-chuc-image img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}
.hd-co-cau-to-chuc-content {
  max-width: 1000px;
  margin: 0 auto;
}
.page-co-cau-to-chuc .fancybox__track {
  background: var(--white);
}
.page-co-cau-to-chuc .fancybox__caption {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  font-family: lato-black;
  text-transform: uppercase;
  color: var(--primary-dark);
}
/* trang cơ cấu tổ chức end */

/* trang thiết bị công nghệ start */
/* Technology & Equipment Section Styles */

.hd-rang-dong-technology {
  color: var(--dark-gray);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hd-rang-dong-technology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/tech-pattern.png");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.page-thiet-bi-cong-nghe .hd-rang-dong-section-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-tech-intro {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-tech-item {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-tech-item:nth-child(odd) {
  background: rgba(183, 194, 225, 0.34);
}

.hd-rang-dong-tech-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-rang-dong-tech-subtitle {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-rang-dong-tech-content p {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hd-rang-dong-tech-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.hd-rang-dong-tech-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.hd-rang-dong-tech-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--blue-primary);
  border-radius: 50%;
}

.hd-rang-dong-tech-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hd-rang-dong-tech-image img,
.hd-rang-dong-tech-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-logo-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  max-width: 120px;
}

.hd-rang-dong-tech-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hd-rang-dong-dot.active {
  background-color: var(--blue-primary);
}

/* Navigation Arrows */
.hd-rang-dong-tech-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--white);
  font-size: 20px;
}

.hd-rang-dong-tech-prev {
  left: 20px;
}

.hd-rang-dong-tech-next {
  right: 20px;
}

.page-thiet-bi-cong-nghe .hd-rang-dong-section-title {
  font-size: clamp(1.7rem, 1.3rem + 2vw, 3rem);
  font-family: lato-black;
  font-weight: none;
}
/* trang thiết bị công nghệ end */

/* trang sản phẩm start */

/* Product Category Banner */
.hd-rang-dong-product-banner {
  position: relative;
}

.hd-rang-dong-banner-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hd-rang-dong-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-rang-dong-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.hd-rang-dong-banner-title {
  color: var(--accent-red);
  font-size: clamp(1.7rem, 0.9923rem + 3.5385vw, 4rem);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-rang-dong-banner-subtitle {
  color: var(--white);
  font-size: 24px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.san-pham .hd-rang-dong-breadcrumb-container {
  padding: 15px 0;
  justify-content: center;
}

.san-pham .hd-rang-dong-breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
  justify-content: center;
}

.san-pham .hd-rang-dong-breadcrumb .breadcrumb-item {
  color: var(--dark-gray);
  font-size: 1rem;
}

.san-pham .hd-rang-dong-breadcrumb .breadcrumb-item a {
  color: var(--dark-gray);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.san-pham .hd-rang-dong-breadcrumb .breadcrumb-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.san-pham .hd-rang-dong-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark-gray);
  opacity: 0.6;
}

.san-pham .hd-rang-dong-breadcrumb .breadcrumb-item.active {
  color: var(--dark-gray);
}

/* Introduction Section */
.san-pham .hd-rang-dong-product-intro {
  /* background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark)); */
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

.san-pham .hd-rang-dong-product-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/wave-pattern.png");
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.san-pham .hd-rang-dong-intro-title {
  color: var(--primary-dark);
  font-size: clamp(1.3rem, 0.9308rem + 1.8462vw, 2.5rem);
  font-family: lato-b;
  text-align: center;
  position: relative;
  z-index: 2;
}

.san-pham .hd-rang-dong-intro-content {
  position: relative;
  z-index: 2;
}

.san-pham .hd-rang-dong-intro-content p {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/* Product Lines Section */
.san-pham .hd-rang-dong-product-lines {
  padding: 60px 0;
  position: relative;
}

.san-pham .hd-rang-dong-lines-title {
  color: var(--primary-dark);
  font-size: clamp(1.3rem, 0.9308rem + 1.8462vw, 2.5rem);
  font-family: lato-black;
  text-transform: uppercase;
  text-align: center;
}

.san-pham .hd-rang-dong-product-item {
  border-radius: 10px;
  overflow: hidden;
  padding-top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  cursor: pointer;
}

.san-pham .hd-rang-dong-product-image {
  position: relative;
  margin: 0px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 200px;
}
.hd-rang-dong-product-image a,
.hd-rang-dong-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.san-pham .hd-rang-dong-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.san-pham .hd-rang-dong-product-name {
  color: var(--tech-bg);
  font-size: 1.2rem;
  text-align: center;
  font-family: lato-b;
  text-transform: uppercase;
}

.san-pham .hd-rang-dong-product-desc {
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.san-pham .hd-rang-dong-product-link {
  display: block;
  text-align: center;
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: bold;
  padding: 10px 0;
  margin: 0 20px 20px;
  border: 2px solid var(--blue-primary);
  border-radius: 5px;
  transition: all 0.3s;
}

.san-pham .hd-rang-dong-product-link:hover {
  background-color: var(--blue-primary);
  color: var(--white);
}

.hd-rang-dong-product-banner-container section {
  position: relative;
  z-index: 5;
}
.page-tam-nhin-va-su-menh .hd-rang-dong-section-title {
  width: 100%;
}
/* trang sản phẩm end */

/* trang tin tức start */
.page-item.active .page-link {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}
.hd-rang-dong-new-date-box {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-family: lato-b;
  width: max-content;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  margin-top: -30px;
  margin-bottom: 10px;
}
.index .hd-rang-dong-new-date-box {
  display: none;
}
.hd-rang-dong-news-date {
  display: none;
}
.index .hd-rang-dong-news-date {
  display: block;
}
.hd-rang-dong-title {
  color: var(--primary-dark);
  font-size: clamp(1.3rem, 0.9308rem + 1.8462vw, 2.5rem);
  font-family: lato-black;
  text-transform: uppercase;
  text-align: center;
}
/* trang tin tức end */

/* trang tuyển dụng start */
/* Base Styles with Color Palette */

/* Job Listings Page Styles */
.hd-rang-dong-jobs {
  padding: 60px 0;
  background-color: var(--light-gray);
  background-image: url("images/network-pattern.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hd-rang-dong-jobs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.hd-rang-dong-jobs .container {
  position: relative;
  z-index: 2;
}

.hd-rang-dong-jobs-title {
  color: var(--blue-primary);
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Job Card Styles */
.hd-rang-dong-job-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hd-rang-dong-job-content {
  flex-grow: 1;
}

.hd-rang-dong-job-title {
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.hd-rang-dong-job-desc {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hd-rang-dong-job-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.hd-rang-dong-job-type,
.hd-rang-dong-job-salary {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.hd-rang-dong-job-type svg,
.hd-rang-dong-job-salary svg {
  margin-right: 8px;
}

.hd-rang-dong-job-type span,
.hd-rang-dong-job-salary span {
  color: var(--dark-gray);
  font-size: 14px;
}

.hd-rang-dong-job-action {
  display: flex;
  justify-content: flex-end;
}

.hd-rang-dong-job-btn {
  background-color: var(--primary-color);
  color: var(--tech-bg);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

.hd-rang-dong-job-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Pagination Styles */
.hd-rang-dong-pagination .page-link {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  margin: 0 5px;
  border-radius: 5px;
}

.hd-rang-dong-pagination .page-item.active .page-link {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hd-rang-dong-pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: var(--white);
  border-color: #dee2e6;
}

/* trang tuyển dụng end */

/* trang tuyển dụng chi tiết start */
/* Base Styles with Color Palette */

/* Job Detail Page Styles */
.hd-rang-dong-job-detail {
  background-color: var(--light-gray);
  background-image: linear-gradient(
    to bottom right,
    rgba(78, 123, 218, 0.05),
    rgba(30, 58, 138, 0.1)
  );
  padding: 60px 0;
  position: relative;
  min-height: 100vh;
}

/* Breadcrumb Styles */
.page-tuyen-dung-detail .hd-rang-dong-breadcrumb {
  margin-bottom: 30px;
}

.hd-rang-dong-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
}

.page-tuyen-dung-detail .hd-rang-dong-breadcrumb .breadcrumb-item a {
  color: var(--tech-bg);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-tuyen-dung-detail .hd-rang-dong-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-dark);
}

.page-tuyen-dung-detail .hd-rang-dong-breadcrumb .breadcrumb-item.active {
  color: var(--dark-gray);
}

.page-tuyen-dung-detail
  .hd-rang-dong-breadcrumb
  .breadcrumb-item
  + .breadcrumb-item::before {
  color: var(--dark-gray);
}

/* Job Header Styles */
.page-tuyen-dung-detail .hd-rang-dong-job-header {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.page-tuyen-dung-detail .hd-rang-dong-job-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-dark)
  );
}

.page-tuyen-dung-detail .hd-rang-dong-job-title {
  color: var(--dark-gray);
  font-size: clamp(1.2rem, 1.0769rem + 0.6154vw, 1.6rem);
  font-family: lato-b;
  margin-bottom: 20px;
}

.page-tuyen-dung-detail .hd-rang-dong-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-tuyen-dung-detail .hd-rang-dong-meta-item {
  display: flex;
  align-items: center;
  color: var(--dark-gray);
}

.page-tuyen-dung-detail .hd-rang-dong-meta-item svg {
  color: var(--primary-dark);
  margin-right: 8px;
}

/* Job Section Styles */
.page-tuyen-dung-detail .hd-rang-dong-job-section {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-tuyen-dung-detail .hd-rang-dong-section-title {
  color: var(--dark-gray);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-tuyen-dung-detail .hd-rang-dong-section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 3px;
}

.page-tuyen-dung-detail .hd-rang-dong-section-content {
  color: var(--dark-gray);
}

.page-tuyen-dung-detail .hd-rang-dong-section-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Requirements List Styles */
.page-tuyen-dung-detail .hd-rang-dong-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-tuyen-dung-detail .hd-rang-dong-requirements-list li {
  display: flex;
  margin-bottom: 20px;
}

.page-tuyen-dung-detail .hd-rang-dong-requirement-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-dark);
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 15px;
  position: relative;
}

.page-tuyen-dung-detail .hd-rang-dong-requirement-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.page-tuyen-dung-detail .hd-rang-dong-requirement-content {
  flex: 1;
}

.page-tuyen-dung-detail .hd-rang-dong-requirement-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-gray);
}

.page-tuyen-dung-detail .hd-rang-dong-requirement-content p {
  margin-bottom: 0;
  color: var(--dark-gray);
}

/* Benefits Styles */
.page-tuyen-dung-detail .hd-rang-dong-benefit-item {
  display: flex;
  align-items: flex-start;
  background: rgba(78, 123, 218, 0.05);
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.page-tuyen-dung-detail .hd-rang-dong-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.page-tuyen-dung-detail .hd-rang-dong-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-tuyen-dung-detail .hd-rang-dong-benefit-icon svg {
  color: var(--white);
}

.page-tuyen-dung-detail .hd-rang-dong-benefit-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-gray);
}

.page-tuyen-dung-detail .hd-rang-dong-benefit-text p {
  margin-bottom: 0;
  color: var(--dark-gray);
  font-size: 14px;
}

/* Apply Button Styles */
.page-tuyen-dung-detail .hd-rang-dong-apply-button-container {
  text-align: center;
  margin: 40px 0;
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-fast);
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button:hover::before {
  opacity: 1;
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button span {
  margin-right: 10px;
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button svg {
  transition: transform var(--transition-fast);
}

.page-tuyen-dung-detail .hd-rang-dong-apply-button:hover svg {
  transform: translateX(5px);
}

/* Sidebar Styles */
.page-tuyen-dung-detail .hd-rang-dong-job-sidebar {
  position: sticky;
  top: 67px;
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-section {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-title {
  color: var(--dark-gray);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-label {
  color: var(--dark-gray);
  font-weight: 500;
}

.page-tuyen-dung-detail .hd-rang-dong-sidebar-value {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Social Share Styles */
.page-tuyen-dung-detail .hd-rang-dong-social-share {
  display: flex;
  gap: 10px;
}

.page-tuyen-dung-detail .hd-rang-dong-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(78, 123, 218, 0.1);
  border-radius: 50%;
  color: var(--primary-dark);
  transition: all var(--transition-fast);
}

.page-tuyen-dung-detail .hd-rang-dong-social-icon:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.page-tuyen-dung-detail .hd-rang-dong-social-icon svg {
  color: inherit;
}

/* Similar Jobs Styles */
.page-tuyen-dung-detail .hd-rang-dong-similar-jobs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hd-rang-dong-similar-job-item {
  display: block;
  padding: 15px;
  background: rgba(78, 123, 218, 0.05);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.hd-rang-dong-similar-job-item:hover {
  background: rgba(78, 123, 218, 0.1);
  transform: translateX(5px);
}

.hd-rang-dong-similar-job-item h4 {
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.hd-rang-dong-similar-job-item p {
  color: var(--dark-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* Application Form Styles */
.hd-rang-dong-application-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal),
    visibility var(--transition-normal);
}

.hd-rang-dong-application-form-container.active {
  opacity: 1;
  visibility: visible;
}

.hd-rang-dong-application-form {
  background: var(--white);
  border-radius: 10px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform var(--transition-normal),
    opacity var(--transition-normal);
}

.hd-rang-dong-application-form-container.active .hd-rang-dong-application-form {
  transform: translateY(0);
  opacity: 1 !important;
}

.hd-rang-dong-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hd-rang-dong-form-header h2 {
  color: var(--dark-gray);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.hd-rang-dong-close-form {
  background: transparent;
  border: none;
  color: var(--dark-gray);
  cursor: pointer;
  padding: 5px;
  transition: color var(--transition-fast);
}

.hd-rang-dong-close-form:hover {
  color: var(--accent-red);
}

#hd-rang-dong-job-application {
  padding: 30px;
}

.hd-rang-dong-form-group {
  position: relative;
  margin-bottom: 20px;
}

.hd-rang-dong-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-weight: 500;
}

.hd-rang-dong-form-group .form-control,
.hd-rang-dong-form-group .form-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hd-rang-dong-form-group .form-control:focus,
.hd-rang-dong-form-group .form-select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(78, 123, 218, 0.2);
  outline: none;
}

.hd-rang-dong-input-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue-light), var(--blue-dark));
  transition: width var(--transition-normal);
}

.hd-rang-dong-form-group .form-control:focus ~ .hd-rang-dong-input-focus-effect,
.hd-rang-dong-form-group .form-select:focus ~ .hd-rang-dong-input-focus-effect {
  width: 100%;
}

.hd-rang-dong-file-upload {
  position: relative;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: border-color var(--transition-fast);
}

.hd-rang-dong-file-upload:hover {
  border-color: var(--blue-light);
}

.hd-rang-dong-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.hd-rang-dong-file-upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hd-rang-dong-file-upload-ui svg {
  color: var(--blue-light);
  margin-bottom: 10px;
}

.hd-rang-dong-file-label {
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.hd-rang-dong-file-name {
  color: var(--blue-dark);
  font-weight: 500;
  display: none;
}

.hd-rang-dong-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.hd-rang-dong-cancel-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 12px 25px;
  color: var(--dark-gray);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hd-rang-dong-cancel-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hd-rang-dong-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hd-rang-dong-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-fast);
}

.hd-rang-dong-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.hd-rang-dong-submit-btn:hover::before {
  opacity: 1;
}

.hd-rang-dong-submit-btn span {
  margin-right: 10px;
}

.hd-rang-dong-submit-btn svg {
  transition: transform var(--transition-fast);
}

.hd-rang-dong-submit-btn:hover svg {
  transform: translateX(5px);
}
.vh-scrollbar {
  scrollbar-width: thin;
}

/* trang tuyển dụng chi tiết end */

/* trang liên hệ start */

/* Contact Page Styles */
.hd-rang-dong-contact {
  position: relative;
  padding: 60px 0 0;
  background-color: var(--white);
  background-image: url("images/network-pattern.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hd-rang-dong-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.hd-rang-dong-contact .container {
  position: relative;
  z-index: 2;
}

/* Contact Information Styles */
.hd-rang-dong-contact-info {
  padding-right: 30px;
}

.hd-rang-dong-contact-title {
  color: var(--primary-color);
  font-size: clamp(1.2rem, 0.9538rem + 1.2308vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-rang-dong-contact-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
}

.hd-rang-dong-info-card {
  display: flex;
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.hd-rang-dong-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.hd-rang-dong-info-icon svg {
  color: var(--primary-color);
}

.hd-rang-dong-info-content {
  flex: 1;
  text-align: center;
}
.hd-rang-dong-info-content svg {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  margin-right: 3px;
}

.hd-rang-dong-info-content h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hd-rang-dong-info-content p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.hd-rang-dong-info-content p:last-child {
  margin-bottom: 0;
}

/* Contact Form Styles */
.hd-rang-dong-contact-form {
  background-color: var(--blue-secondary);
  border-radius: 15px;
  padding: 30px 0;
  height: 100%;
}

.hd-rang-dong-form-title {
  color: var(--primary-color);
  font-size: 24px;
  font-family: lato-b;
  text-align: center;
  margin-bottom: 10px;
}

.hd-rang-dong-form-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}

.hd-rang-dong-form-group {
  margin-bottom: 15px;
}

.hd-rang-dong-form-group label {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hd-rang-dong-form-group .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  width: 100%;
  background-color: var(--white);
}

.hd-rang-dong-form-group .form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(36, 69, 163, 0.1);
  outline: none;
}

.hd-rang-dong-submit-btn {
  background-color: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hd-rang-dong-submit-btn:hover {
  background-color: var(--blue-dark);
}

/* Map Section Styles */
.hd-rang-dong-map-section {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hd-rang-dong-map {
  overflow: hidden;
  position: relative;
  max-height: 500px;
}
.hd-rang-dong-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}

.hd-rang-dong-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Success Message */
.hd-rang-dong-success-message {
  display: none;
  background-color: var(--accent-green);
  color: var(--white);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.hd-rang-dong-contact-info-row,
.hd-rang-dong-form-box {
  background: rgba(78, 123, 218, 0.05);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hd-rang-dong-search-result-item a {
  color: var(--dark-gray);
  font-family: lato-b;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
.hd-rang-dong-search-result-item a:hover {
  color: var(--primary-dark);
  -webkit-color: var(--primary-dark);
  -moz-color: var(--primary-dark);
  -ms-color: var(--primary-dark);
  -o-color: var(--primary-dark);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
/* trang liên hệ end */

/* sửa web */
.hd-rang-dong-intro-nav svg {
  color: var(--text-color);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}
.hd-rang-dong-intro-nav:hover svg {
  color: var(--white);
}
.vanhiep-content iframe {
  pointer-events: all !important;
}

.hd-rang-dong-product-item.active {
  background: var(--primary-color);
  color: var(--text-color);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}
.san-pham .hd-rang-dong-product-lines {
  padding-top: 0;
}