/* Blue River Transport Logistics - Custom Styles */

/* Global Styles */
:root {
  --primary-color: #113ba9;
  --secondary-color: #89b023;
  --accent-color: #df8a00;
  --white: #ffffff;
  --dark: #1e1e1e;
  --gray: #efefef;
  --dark-gray: #6c757d;

  /* Additional colors for glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-blue-bg: rgba(17, 59, 169, 0.1);
  --glass-green-bg: rgba(137, 176, 35, 0.1);

  --light-gray: #f8f9fa;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

/* Header Styles */
.hd-dong-song-xanh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}
.hd-dong-song-xanh-top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 12%, transparent 180%);
  z-index: 2;
}
.hd-dong-song-xanh-top-bar {
  background-color: var(--white);
  padding: 15px 0;
}

.hd-dong-song-xanh-top-bar-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hd-dong-song-xanh-top-bar-row {
  z-index: 5;
}

.hd-dong-song-xanh-logo {
  width: 120px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -moz-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  display: inline-flex;
  justify-content: end;
  align-items: end;
  padding: 10px;
}
.hd-dong-song-xanh-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: skewX(10deg);
  -webkit-transform: skewX(10deg);
  -moz-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  -o-transform: skewX(10deg);
}

.hd-dong-song-xanh-company-title {
  padding: 10px 0;
}

.hd-dong-song-xanh-main-title {
  color: var(--primary-color);
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  font-family: lato-b;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.hd-dong-song-xanh-tagline {
  color: var(--accent-color);
  font-size: clamp(1rem, 0.9231rem + 0.3846vw, 1.2rem);
  font-family: lato-b;
  margin-bottom: 0;
}

.hd-dong-song-xanh-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hd-dong-song-xanh-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Navigation Styles */
.hd-dong-song-xanh-main-nav {
  background-color: var(--primary-color);
  padding: 0;
  position: relative;
  z-index: 5;
  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-dong-song-xanh-nav-container {
  position: relative;
}

.hd-dong-song-xanh-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-dong-song-xanh-nav-item {
  position: relative;
}

.hd-dong-song-xanh-nav-link {
  display: block;
  color: var(--white);
  padding: 15px 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--title-font);
  text-transform: uppercase;
  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;
  font-size: clamp(1rem, 0.694rem + 0.4776vw, 1.1rem);
}

.hd-dong-song-xanh-nav-link:hover,
.hd-dong-song-xanh-nav-item.active .hd-dong-song-xanh-nav-link {
  color: var(--secondary-color);
  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-dong-song-xanh-dropdown-arrow,
.hd-dong-song-xanh-submenu-arrow {
  font-size: 10px;
  margin-left: 5px;
}
.hd-dong-song-xanh-dropdown-arrow i {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
/* Dropdown Menu */
.hd-dong-song-xanh-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  width: max-content;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.hd-dong-song-xanh-has-dropdown:hover .hd-dong-song-xanh-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hd-dong-song-xanh-dropdown-link {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-dropdown-link:hover {
  background-color: rgba(17, 59, 169, 0.1);
  color: var(--primary-color);
}

/* Submenu */
.hd-dong-song-xanh-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.hd-dong-song-xanh-has-submenu:hover .hd-dong-song-xanh-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hd-dong-song-xanh-submenu-link {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-submenu-link:hover {
  background-color: rgba(17, 59, 169, 0.1);
  color: var(--primary-color);
}

/* Mobile Navigation */
.hd-dong-song-xanh-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hd-dong-song-xanh-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hd-dong-song-xanh-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1000;
  padding: 80px 20px 20px;
  overflow-y: auto;
  display: none;
  transition: all 0.4s 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;
}

.hd-dong-song-xanh-mobile-menu.active {
  right: 0;
  display: block;
}

.hd-dong-song-xanh-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-dong-song-xanh-mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  font-family: var(--title-font);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 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;
}

.hd-dong-song-xanh-mobile-nav-link:hover,
.hd-dong-song-xanh-mobile-nav-item.active .hd-dong-song-xanh-mobile-nav-link {
  color: var(--secondary-color);
}

.hd-dong-song-xanh-mobile-dropdown-toggle,
.hd-dong-song-xanh-mobile-submenu-toggle {
  float: right;
  font-size: 18px;
}
.hd-dong-song-xanh-mobile-dropdown-toggle {
  width: 35px;
  text-align: right;
}

.hd-dong-song-xanh-mobile-dropdown,
.hd-dong-song-xanh-mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
}
.hd-dong-song-xanh-mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 15px;
}

.hd-dong-song-xanh-mobile-dropdown-link,
.hd-dong-song-xanh-mobile-submenu-link {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-mobile-dropdown-link:hover,
.hd-dong-song-xanh-mobile-submenu-link:hover {
  color: var(--accent-color);
}

.hd-dong-song-xanh-mobile-language-select {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 4px;
}

.hd-dong-song-xanh-mobile-language-select option {
  background-color: var(--primary-color);
  color: var(--white);
}

.hd-dong-song-xanh-header.active .hd-dong-song-xanh-logo {
  width: 58px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

/* header end */
/* Hero Section */
.hd-dong-song-xanh-hero {
  position: relative;
  height: 600px;
}

.hd-dong-song-xanh-hero-slider {
  width: 100%;
  height: 100%;
}

.hd-dong-song-xanh-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.hd-dong-song-xanh-hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hd-dong-song-xanh-hero-content {
  position: relative;
  padding: 100px 0;
  color: var(--white);
}

.hd-dong-song-xanh-hero-title {
  font-size: clamp(2rem, 1.9385rem + 0.3077vw, 2.2rem);
  font-family: lato-b;
  margin-bottom: 20px;
  opacity: 0;
}

.hd-dong-song-xanh-hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0;
}

.hd-dong-song-xanh-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-family: var(--title-font);
  opacity: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  -moz-transition: background-color 0.3s ease, color 0.3s ease;
  -ms-transition: background-color 0.3s ease, color 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease;
}

.hd-dong-song-xanh-hero-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  -moz-transition: background-color 0.3s ease, color 0.3s ease;
  -ms-transition: background-color 0.3s ease, color 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* tư vấn báo giá start */

/* Blue River Transport Logistics - Custom Styles */

/* Global Styles */

/* Header Styles */

.hd-dong-song-xanh-top-bar {
  padding: 15px 0;
}

.hd-dong-song-xanh-logo {
  max-width: 150px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.hd-dong-song-xanh-company-title {
  padding: 10px 0;
}

.hd-dong-song-xanh-main-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.hd-dong-song-xanh-tagline {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

.hd-dong-song-xanh-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hd-dong-song-xanh-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Navigation Styles */
.hd-dong-song-xanh-main-nav {
  background-color: var(--primary-color);
  padding: 0;
}

.hd-dong-song-xanh-nav-container {
  position: relative;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.hd-dong-song-xanh-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-dong-song-xanh-nav-item {
  position: relative;
}

.hd-dong-song-xanh-nav-link {
  display: block;
  color: var(--white);
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-nav-link:hover,
.hd-dong-song-xanh-nav-item.active .hd-dong-song-xanh-nav-link {
  color: var(--secondary-color);
  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-dong-song-xanh-dropdown-arrow,
.hd-dong-song-xanh-submenu-arrow {
  font-size: 10px;
  margin-left: 5px;
}

/* Dropdown Menu */
.hd-dong-song-xanh-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.hd-dong-song-xanh-has-dropdown:hover .hd-dong-song-xanh-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hd-dong-song-xanh-dropdown-link {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-dropdown-link:hover {
  background-color: rgba(17, 59, 169, 0.1);
  color: var(--primary-color);
}

/* Submenu */
.hd-dong-song-xanh-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.hd-dong-song-xanh-has-submenu:hover .hd-dong-song-xanh-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hd-dong-song-xanh-submenu-link {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-submenu-link:hover {
  background-color: rgba(17, 59, 169, 0.1);
  color: var(--primary-color);
}

/* Mobile Navigation */
.hd-dong-song-xanh-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hd-dong-song-xanh-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hd-dong-song-xanh-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hd-dong-song-xanh-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1000;
  padding: 80px 20px 20px;
  overflow-y: auto;
  transition: all 0.4s ease;
}

.hd-dong-song-xanh-mobile-menu.active {
  right: 0;
}

.hd-dong-song-xanh-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-dong-song-xanh-mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-family: lato-b;
}

.hd-dong-song-xanh-mobile-nav-link:hover,
.hd-dong-song-xanh-mobile-nav-item.active .hd-dong-song-xanh-mobile-nav-link {
  color: var(--secondary-color);
}

.hd-dong-song-xanh-mobile-dropdown-toggle,
.hd-dong-song-xanh-mobile-submenu-toggle {
  float: right;
  font-size: 18px;
}

.hd-dong-song-xanh-mobile-dropdown,
.hd-dong-song-xanh-mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
}

.hd-dong-song-xanh-mobile-dropdown-link,
.hd-dong-song-xanh-mobile-submenu-link {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-mobile-dropdown-link:hover,
.hd-dong-song-xanh-mobile-submenu-link:hover {
  color: var(--accent-color);
}

.hd-dong-song-xanh-mobile-language-select {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  border-radius: 4px;
}

.hd-dong-song-xanh-mobile-language-select option {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hd-dong-song-xanh-hero {
  position: relative;
  height: 600px;
}

.hd-dong-song-xanh-hero-slider {
  width: 100%;
  height: 100%;
}

.hd-dong-song-xanh-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hd-dong-song-xanh-hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hd-dong-song-xanh-hero-content {
  position: relative;
  padding: 100px 0;
  color: var(--white);
}

.hd-dong-song-xanh-hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0;
}

.hd-dong-song-xanh-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
}

.hd-dong-song-xanh-hero-btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

/* Get a Quote Section */
.hd-dong-song-xanh-quote-section {
  padding: 80px 0;
  background-color: var(--white);
}

.hd-dong-song-xanh-quote-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hd-dong-song-xanh-quote-option {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}

.hd-dong-song-xanh-quote-option.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.hd-dong-song-xanh-quote-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(17, 59, 169, 0.1);
  border-radius: 50%;
}

.hd-dong-song-xanh-quote-option.active .hd-dong-song-xanh-quote-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.hd-dong-song-xanh-quote-text h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.hd-dong-song-xanh-quote-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.hd-dong-song-xanh-quote-form-container {
  border-radius: 10px;
  padding: 30px;
  border-left: 1px solid #e0e0e0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.hd-dong-song-xanh-quote-form {
  display: none;
}

.hd-dong-song-xanh-quote-form.active {
  display: block;
}

.hd-dong-song-xanh-shipping-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: rgba(16, 52, 146, 0.43);
  cursor: pointer;
  height: 100%;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  color: var(--white);
}

.hd-dong-song-xanh-shipping-option.active {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform-origin: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.hd-dong-song-xanh-shipping-option-col:first-of-type
  .hd-dong-song-xanh-shipping-option {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.hd-dong-song-xanh-shipping-option-col:last-of-type
  .hd-dong-song-xanh-shipping-option {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.hd-dong-song-xanh-shipping-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hd-dong-song-xanh-shipping-text h4 {
  /* margin: 0 0 5px; */
  font-size: clamp(0.8rem, 0.7385rem + 0.3077vw, 1rem);
  font-family: lato-b;
}

.hd-dong-song-xanh-shipping-text p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.hd-dong-song-xanh-submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: lato-b;
  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;
  text-transform: uppercase;
}

.hd-dong-song-xanh-submit-btn:hover {
  background-color: var(--primary-color);
  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;
}

/* About Us Section */
.hd-dong-song-xanh-about-section {
  padding: 40px 0;
}

.hd-dong-song-xanh-section-title {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hd-dong-song-xanh-title-highlight {
  color: var(--white);
  font-size: clamp(2.5rem, 2.0385rem + 2.3077vw, 4rem);
  font-family: lato-black;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color),
    -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max;
}
.hd-dong-song-xanh-title-highlight::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 120%;
  background: linear-gradient(to top, var(--white), transparent);
}
.hd-dong-song-xanh-section-title {
  width: max-content;
}
.hd-dong-song-xanh-title-main {
  color: var(--primary-color);
  font-size: clamp(1.7rem, 1.5154rem + 0.9231vw, 2.3rem);
  font-family: lato-black;
  text-transform: uppercase;
  margin-top: -30px;
  position: relative;
  z-index: 3;
  width: max-content;
  display: inline-flex;
}

.hd-dong-song-xanh-about-text {
  margin-bottom: 30px;
}

.hd-dong-song-xanh-about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.hd-dong-song-xanh-about-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-family: lato-b;
  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;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  min-width: 150px;
  text-align: center;
}

.hd-dong-song-xanh-about-btn:hover {
  background-color: var(--secondary-color);
  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-dong-song-xanh-image-grid {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.dsx-text-secondary {
  color: var(--secondary-color);
}
.hd-dong-song-xanh-services-section {
  padding: 40px 0;
  padding-top: 0;
  background-color: var(--gray);
}
.hd-dong-song-xanh-section-title-box {
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  padding: 10px 15%;
}

.hd-dong-song-xanh-service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  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-dong-song-xanh-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  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-dong-song-xanh-service-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-dong-song-xanh-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.hd-dong-song-xanh-service-card:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  filter: brightness(0.9);
  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: brightness(0.9);
}
.hd-dong-song-xanh-service-content {
  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;
  opacity: 1;
  transform: translateY(0) scaleY(1);
  -webkit-transform: translateY(0) scaleY(1);
  -moz-transform: translateY(0) scaleY(1);
  -ms-transform: translateY(0) scaleY(1);
  -o-transform: translateY(0) scaleY(1);
}
.hd-dong-song-xanh-service-card:hover .hd-dong-song-xanh-service-content {
  opacity: 0;
  transform: translateY(100%) scaleY(0);
  -webkit-transform: translateY(100%) scaleY(0);
  -moz-transform: translateY(100%) scaleY(0);
  -ms-transform: translateY(100%) scaleY(0);
  -o-transform: translateY(100%) scaleY(0);
  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-dong-song-xanh-service-content-top {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, var(--secondary-color), transparent);
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  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-dong-song-xanh-service-content-top h3 {
  color: var(--white);
  font-size: clamp(0.8rem, 0.7692rem + 0.1538vw, 0.9rem);
  text-transform: uppercase;
  font-family: lato-b;
  margin-bottom: 0;
}
.hd-dong-song-xanh-service-card:hover .hd-dong-song-xanh-service-content-top {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
  visibility: visible;
  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-dong-song-xanh-about-image-left,
.hd-dong-song-xanh-about-image-right {
  --bs-aspect-ratio: 140%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.hd-dong-song-xanh-about-image-left a,
.hd-dong-song-xanh-about-image-left img,
.hd-dong-song-xanh-about-image-right a,
.hd-dong-song-xanh-about-image-right img {
  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-dong-song-xanh-about-image-left a:hover img,
.hd-dong-song-xanh-about-image-right a:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  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-dong-song-xanh-about-image-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 90%;
  border: 4px solid var(--secondary-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.hd-dong-song-xanh-about-image-left {
  transform: translate(-10%, 20%);
  -webkit-transform: translate(-10%, 20%);
  -moz-transform: translate(-10%, 20%);
  -ms-transform: translate(-10%, 20%);
  -o-transform: translate(-10%, 20%);
}
.hd-dong-song-xanh-about-image-right {
  border: 5px solid var(--white);
  transform: translate(0%, -20%);
  -webkit-transform: translate(0%, -20%);
  -moz-transform: translate(0%, -20%);
  -ms-transform: translate(0%, -20%);
  -o-transform: translate(0%, -20%);
}
.hd-dong-song-xanh-about-image-content {
  position: relative;
  z-index: 5;
}
.hd-dong-song-xanh-service-content {
  padding: 20px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary-color), transparent);
}

.hd-dong-song-xanh-service-title {
  color: var(--white);
  font-size: clamp(1.3rem, 1.2385rem + 0.3077vw, 1.5rem);
  text-transform: uppercase;
  font-family: lato-black;
}

.hd-dong-song-xanh-service-text {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.hd-dong-song-xanh-service-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-service-link:hover {
  color: var(--accent-color);
}
.hd-dong-song-xanh-service-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.hd-dong-song-xanh-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
/* Why Join Us Section */
.hd-dong-song-xanh-why-join-section {
  padding: 40px 0;
  background: linear-gradient(to bottom, var(--gray), var(--white));
  color: var(--dark);
  padding-top: 80px;
}

.hd-dong-song-xanh-why-join-section .hd-dong-song-xanh-title-main {
  color: var(--primary-color);
}

.hd-dong-song-xanh-why-join-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hd-dong-song-xanh-stat-card {
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.hd-dong-song-xanh-stat-number {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: lato-b;
}

.hd-dong-song-xanh-stat-icon {
  margin: 15px 0;
  height: 145px;
  max-width: 100%;
}
.hd-dong-song-xanh-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hd-dong-song-xanh-stat-text {
  font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
  font-family: lato-b;
}
.hd-dong-song-xanh-section-title-box {
  width: max-content;
}
.hd-dong-song-xanh-services-section .hd-dong-song-xanh-section-title {
  margin: 0 auto;
}
/* Advantages Section */
.hd-dong-song-xanh-advantages-section {
  position: relative;
}

.hd-dong-song-xanh-advantage-card {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 30px;
  border-radius: 0px;
  height: 100%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  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-dong-song-xanh-advantage-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-dong-song-xanh-advantage-card-col:first-of-type
  .hd-dong-song-xanh-advantage-card {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.hd-dong-song-xanh-advantage-card-col:last-of-type
  .hd-dong-song-xanh-advantage-card {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.hd-dong-song-xanh-advantage-card:hover {
  background-color: var(--primary-color);
  transform-origin: 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;
}
.hd-dong-song-xanh-advantage-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hd-dong-song-xanh-advantage-title {
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  font-family: lato-b;
}
.hd-dong-song-xanh-advantage-text strong {
  font-weight: none;
  font-family: lato-b;
}

.hd-dong-song-xanh-advantage-text {
  font-size: 0.9rem;
  line-height: 1.6;
}
.hd-dong-song-xanh-why-join-section .hd-dong-song-xanh-section-title {
  margin: 0 auto;
}

.hd-dong-song-xanh-quote-section {
  padding-top: 0;
  position: relative;
  z-index: 5;
  overflow: visible;
  background: transparent;
}
.hd-dong-song-xanh-quote-box {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: -100px;
  background: var(--white);
}

.hd-dong-song-xanh-quote-form .form-control {
  height: 45px;
  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-dong-song-xanh-quote-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
  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;
}

/* tư vấn báo giá end */

.hd-dong-song-xanh-services-section .hd-dong-song-xanh-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* gallery start */
/* Gallery Section Styles */
.hd-dong-song-xanh-gallery-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
}

.hd-dong-song-xanh-gallery-section .hd-dong-song-xanh-section-title {
  width: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hd-dong-song-xanh-gallery-section .hd-dong-song-xanh-title-main {
  color: var(--primary-color);
}

.hd-dong-song-xanh-gallery-main-slider {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.hd-dong-song-xanh-gallery-main-image {
  overflow: hidden;
  min-height: 100%;
}
.hd-dong-song-xanh-gallery-main-image img,
.hd-dong-song-xanh-gallery-main-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-dong-song-xanh-gallery-thumbs-container {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.hd-dong-song-xanh-gallery-thumbs-slider {
  flex: 1;
  width: 100%;
  height: calc(100% - 80px);
}

.hd-dong-song-xanh-gallery-thumb {
  overflow: hidden;
  height: calc(100% - 3px);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s 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;
}
.hd-dong-song-xanh-gallery-thumb.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-dong-song-xanh-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s 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;
}

.hd-dong-song-xanh-gallery-thumb:hover,
.swiper-slide-thumb-active .hd-dong-song-xanh-gallery-thumb {
  opacity: 1;
  border-color: var(--primary-color);
  transition: all 0.4s 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;
}
.hd-dong-song-xanh-gallery-thumb:hover img {
  transform: scale(1.1);
  transition: all 0.4s 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;
}
.hd-dong-song-xanh-gallery-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-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;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-gallery-nav:hover {
  background-color: var(--accent-color);
}

.hd-dong-song-xanh-gallery-nav-prev {
  top: -15px;
}

.hd-dong-song-xanh-gallery-nav-next {
  bottom: -15px;
}
.hd-dong-song-xanh-gallery-main-image:hover a {
  cursor: zoom-in !important;
}
/* gallery end */

/* tin tức start */
/* News Section Styles */
.hd-dong-song-xanh-news-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
}

.hd-dong-song-xanh-news-section .hd-dong-song-xanh-title-highlight {
  text-shadow: -1px -1px 0 var(--secondary-color),
    1px -1px 0 var(--secondary-color), -1px 1px 0 var(--secondary-color),
    1px 1px 0 var(--secondary-color);
}

.hd-dong-song-xanh-news-section .hd-dong-song-xanh-title-main {
  color: var(--primary-color);
}
.hd-dong-song-xanh-news-section .hd-dong-song-xanh-section-title {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}
.hd-dong-song-xanh-news-description {
  margin-top: 10px;
  line-height: 1.6;
}

.hd-dong-song-xanh-news-slider {
  width: 100%;
  padding: 20px 0;
}

.hd-dong-song-xanh-news-card {
  /* background-color: var(--white); */
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  /* box-shadow: 0 5px 15px 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;
}

.hd-dong-song-xanh-news-card:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  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-dong-song-xanh-news-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-dong-song-xanh-news-image {
  overflow: hidden;
}

.hd-dong-song-xanh-news-image img {
  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-dong-song-xanh-news-card:hover .hd-dong-song-xanh-news-image img {
  transform: scale(1.1);
}

.hd-dong-song-xanh-news-content {
  color: var(--dark);
  position: relative;
  z-index: 3;
  background: transparent;
}

.hd-dong-song-xanh-news-meta {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--dark);
  background-color: var(--gray);
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.hd-dong-song-xanh-news-date-author-box {
  margin-top: -10px;
}
.hd-dong-song-xanh-news-date {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 12px;
  min-width: 120px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.hd-dong-song-xanh-news-author {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 12px;
  min-width: 120px;
  text-align: center;
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
  transform: translateX(-12%);
  -webkit-transform: translateX(-12%);
  -moz-transform: translateX(-12%);
  -ms-transform: translateX(-12%);
  -o-transform: translateX(-12%);
}

.hd-dong-song-xanh-news-author svg {
  margin-right: 5px;
}

.hd-dong-song-xanh-news-title {
  font-size: 1.1rem;
  color: var(--dark);
  font-family: var(--title-font);
  margin-bottom: 0;
}

.hd-dong-song-xanh-news-excerpt {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hd-dong-song-xanh-news-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-news-link:hover {
  color: var(--accent-color);
}

.hd-dong-song-xanh-news-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;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-news-nav:hover {
  background-color: var(--accent-color);
}

.hd-dong-song-xanh-news-nav-prev {
  left: -20px;
}

.hd-dong-song-xanh-news-nav-next {
  right: -20px;
}

/* tin tức end */

/* thành viên hiệp hội setart */
/* Association Members Section Styles */
.hd-dong-song-xanh-members-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
}

.hd-dong-song-xanh-members-section .hd-dong-song-xanh-title-main {
  color: var(--primary-color);
}

.hd-dong-song-xanh-members-slider {
  width: 100%;
  padding: 20px 0;
  padding-top: 0;
}

.hd-dong-song-xanh-member-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 5px 15px 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;
}

.hd-dong-song-xanh-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  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-dong-song-xanh-member-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-dong-song-xanh-member-logo {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-dong-song-xanh-member-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hd-dong-song-xanh-members-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;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-members-nav:hover {
  background-color: var(--accent-color);
}

.hd-dong-song-xanh-members-nav-prev {
  left: -20px;
}

.hd-dong-song-xanh-members-nav-next {
  right: -20px;
}
.hd-dong-song-xanh-members-nav-prev.swiper-button-disabled,
.hd-dong-song-xanh-members-nav-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hd-dong-song-xanh-members-section .hd-dong-song-xanh-section-title {
  margin: 0 auto;
}
/* thành viên hiệp hội end */

/* footer start */

/* Extended Footer Styles */
.hd-dong-song-xanh-footer-extended {
  padding: 30px 0 30px;
  background-color: var(--primary-color);
  color: var(--white);
  padding-bottom: 0;
}
.hd-dong-song-xanh-footer-extended .container {
  position: relative;
  z-index: 5;
}
.hd-dong-song-xanh-footer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mix-blend-mode: plus-lighter;
  opacity: 0.3;
}
.hd-dong-song-xanh-footer-title {
  font-size: 1.2rem;
  font-family: lato-b;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
}

.hd-dong-song-xanh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-dong-song-xanh-footer-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.hd-dong-song-xanh-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-dong-song-xanh-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.hd-dong-song-xanh-footer-contact-list li svg {
  margin-right: 10px;
  margin-top: 3px;
  color: var(--secondary-color);
}

.hd-dong-song-xanh-footer-newsletter-text {
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-dong-song-xanh-footer-form {
  display: flex;
  margin-bottom: 20px;
}

.hd-dong-song-xanh-footer-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.hd-dong-song-xanh-footer-submit {
  padding: 12px 20px;
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  font-family: lato-b;
  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;
  border-radius: 5px;
  border: 1px solid #9f772c;
  background: var(
    --sd,
    linear-gradient(
      91deg,
      #9f772c 0%,
      #ffe080 23.61%,
      #b58e3b 51.24%,
      #f9e9a4 80.87%,
      #e0bf63 98.44%
    )
  );
  text-transform: uppercase;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}

.hd-dong-song-xanh-footer-submit:hover {
  border-radius: 5px;
  border: 1px solid #9f772c;
  background: var(
    --sd,
    linear-gradient(
      91deg,
      #9f772c 0%,
      #ffe080 23.61%,
      #b58e3b 51.24%,
      #f9e9a4 80.87%,
      #e0bf63 98.44%
    )
  );
}

.hd-dong-song-xanh-footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}
.hd-dong-song-xanh-footer-copyright a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.hd-dong-song-xanh-footer-copyright a:hover {
  opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.hd-dong-song-xanh-footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hd-dong-song-xanh-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-social-link:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
.dsx-footer-copyright {
  background: rgba(16, 52, 146, 0.43);
}
/* footer end */

/* trang giới thiệu start */

/* Banner/Hero Section Styles */
.hd-dong-song-xanh-banner-section {
  position: relative;
  height: 100vh;
  max-height: 500px;
  background-image: var(--banned-hero);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hd-dong-song-xanh-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

.hd-dong-song-xanh-banner-content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.hd-dong-song-xanh-banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hd-dong-song-xanh-banner-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hd-dong-song-xanh-banner-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-banner-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Introduction Section Styles */
.hd-dong-song-xanh-intro-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
}

.hd-dong-song-xanh-intro-title {
  margin-bottom: 30px;
}

.hd-dong-song-xanh-intro-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.hd-dong-song-xanh-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hd-dong-song-xanh-intro-right {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hd-dong-song-xanh-intro-image-large {
  overflow: hidden;
  border-radius: 8px;
}

.hd-dong-song-xanh-intro-image-large img,
.hd-dong-song-xanh-intro-image-large a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-dong-song-xanh-intro-image-small {
  position: absolute;
  width: 40%;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  bottom: 20px;
  left: 20px;
  border: 5px solid var(--white);
  z-index: 2;
}

.hd-dong-song-xanh-intro-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Our Values Section Styles */
.hd-dong-song-xanh-our-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
}

.hd-dong-song-xanh-our-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.hd-dong-song-xanh-our-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-dong-song-xanh-our-vertical-text {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 10px;
  color: var(--white);
  font-family: lato-black;
  text-transform: uppercase;
  pointer-events: none;
}

.hd-dong-song-xanh-our-vertical-text span {
  font-size: 12vw;
  color: var(--white);
  letter-spacing: 5px;
  font-family: lato-black;
  transform: translate(-26%, -5%);
}

.hd-dong-song-xanh-our-content {
  padding-left: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hd-dong-song-xanh-our-item {
  margin-bottom: 40px;
}

.hd-dong-song-xanh-our-title {
  margin-bottom: 20px;
  position: relative;
}

.hd-dong-song-xanh-our-title .hd-dong-song-xanh-title-highlight {
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hd-dong-song-xanh-our-title .hd-dong-song-xanh-title-highlight::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 30px;
  background-color: var(--secondary-color);
}

.hd-dong-song-xanh-our-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

/* Our Commitment Section Styles */
.hd-dong-song-xanh-commitment-section {
  padding: 40px 0;
  background-color: var(--white);
  color: var(--dark);
  position: relative;
}

.hd-dong-song-xanh-commitment-title {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  font-family: lato-black;
}

.hd-dong-song-xanh-title-blue {
  color: var(--primary-color);
}

.hd-dong-song-xanh-title-green {
  color: var(--secondary-color);
}

.hd-dong-song-xanh-commitment-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
}

.hd-dong-song-xanh-commitment-text p {
  margin-bottom: 20px;
}

.hd-dong-song-xanh-commitment-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
}

.hd-dong-song-xanh-commitment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-dong-song-xanh-commitment-accent {
  position: absolute;
  width: 100px;
  height: 20px;
  background-color: var(--secondary-color);
}

.hd-dong-song-xanh-commitment-accent.top-right {
  top: 40px;
  right: -20px;
}

.hd-dong-song-xanh-commitment-accent.bottom-left {
  bottom: 40px;
  left: -20px;
}

.hd-dong-song-xanh-intro-left-content {
  position: relative;
  z-index: 6;
}
.hd-dong-song-xanh-intro-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
  opacity: 0.3;
  filter: blur(3px);
  -webkit-filter: blur(3px);
}
/* trang giới thiệu end */

/* trang sản phẩm dịch vụ start */
/* Services Listing Page Styles for Blue River Transport Logistics */

/* Services Section Styles */
.hd-dong-song-xanh-services-section {
  background-color: var(--white);
  color: var(--dark);
  overflow: hidden;
}

/* Services Header Styles */
.hd-dong-song-xanh-services-header {
  padding: 30px 0 30px;
  text-align: center;
}

.hd-dong-song-xanh-services-main-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hd-dong-song-xanh-services-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hd-dong-song-xanh-title-blue {
  color: var(--primary-color);
}

.hd-dong-song-xanh-title-green {
  color: var(--secondary-color);
}

/* Service Item Styles */
.hd-dong-song-xanh-service-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hd-dong-song-xanh-service-image-col,
.hd-dong-song-xanh-service-content-col {
  padding: 0;
}
.san-pham .hd-dong-song-xanh-service-content {
  background: transparent;
  position: relative;
}
.hd-dong-song-xanh-service-image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.hd-dong-song-xanh-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hd-dong-song-xanh-service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(17, 59, 169, 1) 0%,
    transparent 50%,
    transparent 100%
  );
  pointer-events: none;
}

.hd-dong-song-xanh-service-image-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-size: 4vw;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  z-index: 2;
  font-family: lato-black;
  width: max-content;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.san-pham .hd-dong-song-xanh-service-content {
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-dong-song-xanh-service-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hd-dong-song-xanh-service-description {
  margin-bottom: 30px;
}

.hd-dong-song-xanh-service-description p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
}

.hd-dong-song-xanh-service-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: lato-b;
}

.hd-dong-song-xanh-service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.hd-dong-song-xanh-service-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}
.hd-dong-song-xanh-service-btn.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-dong-song-xanh-service-btn:hover i {
  transform: translateX(5px);
}

.hd-dong-song-xanh-service-item:hover .hd-dong-song-xanh-service-image {
  transform: scale(1.05);
}
.page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
/* trang sản phẩm dịch vụ end */

/* trang sản phẩm chi tiết start */

.hd-dong-song-xanh-service-detail-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
/* trang sản phẩm chi tiết end */

/* search start */
/* Search Modal Styles */
.hd-do-choi-thu-cung-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.hd-do-choi-thu-cung-search-modal.active {
  display: block;
}

.hd-do-choi-thu-cung-search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hd-do-choi-thu-cung-search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hd-do-choi-thu-cung-search-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hd-do-choi-thu-cung-search-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hd-do-choi-thu-cung-search-input-group {
  position: relative;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-search-input {
  width: 100%;
  height: 60px;
  padding: 10px 70px 10px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s;
}

.hd-do-choi-thu-cung-search-input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hd-do-choi-thu-cung-search-btn:hover {
  color: var(--secondary-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-do-choi-thu-cung-search-popular-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-do-choi-thu-cung-search-tag {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.hd-do-choi-thu-cung-search-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.hd-do-choi-thu-cung-search-btn-go {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 60px;
  max-width: 60px;
  background-color: var(--primary-color);
  border-radius: 0 50px 50px 0;
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  -ms-border-radius: 0 50px 50px 0;
  -o-border-radius: 0 50px 50px 0;
  color: var(--white);
  font-size: 0.9rem;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.hd-do-choi-thu-cung-search-btn-go svg {
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
/* search end */

/* trang tuyển dụng start */
/* Careers/Recruitment Listing Page Styles for Blue River Transport Logistics */

/* Careers Section Styles */
.hd-dong-song-xanh-careers-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

/* Careers Header Styles */
.hd-dong-song-xanh-careers-header {
  margin-bottom: 40px;
}

.hd-dong-song-xanh-careers-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.hd-dong-song-xanh-title-blue {
  color: var(--primary-color);
}

.hd-dong-song-xanh-title-green {
  color: var(--secondary-color);
}

.hd-dong-song-xanh-careers-view-all {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hd-dong-song-xanh-careers-view-all:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Job Card Styles */
.hd-dong-song-xanh-job-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.hd-dong-song-xanh-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hd-dong-song-xanh-job-image-container {
  height: 100%;
  overflow: hidden;
}

.hd-dong-song-xanh-job-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hd-dong-song-xanh-job-card:hover .hd-dong-song-xanh-job-image {
  transform: scale(1.05);
}

.hd-dong-song-xanh-job-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hd-dong-song-xanh-job-title {
  font-size: clamp(1rem, 0.9846rem + 0.0769vw, 1.05rem);
  font-family: lato-b;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1.3;
}

.hd-dong-song-xanh-job-description {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 15px;
  flex-grow: 1;
}

.hd-dong-song-xanh-job-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dark-gray);
}

.hd-dong-song-xanh-job-recruiter,
.hd-dong-song-xanh-job-date {
  display: flex;
  align-items: center;
}

.hd-dong-song-xanh-job-recruiter i,
.hd-dong-song-xanh-job-date i {
  margin-right: 5px;
  font-size: 14px;
}

/* trang tuyển dụng end */

/* liên hệ start */
/* Contact Page Styles for Blue River Transport Logistics */

/* Contact Section Styles */
.hd-dong-song-xanh-contact-section {
  padding: 60px 0;
  background-color: var(--white);
}

/* Contact Header Styles */
.hd-dong-song-xanh-contact-header {
  margin-bottom: 40px;
}

.hd-dong-song-xanh-contact-title {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  margin: 0;
  text-transform: uppercase;
  font-family: lato-black;
}

.hd-dong-song-xanh-title-blue {
  color: var(--primary-color);
}

/* Contact Content Styles */
.hd-dong-song-xanh-contact-content {
  margin-bottom: 50px;
}

/* Contact Form Styles */
.hd-dong-song-xanh-contact-form-container {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary-color);
  height: 100%;
}

.hd-dong-song-xanh-form-group {
  margin-bottom: 15px;
}

.hd-dong-song-xanh-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hd-dong-song-xanh-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(17, 59, 169, 0.1);
}

.hd-dong-song-xanh-textarea {
  resize: vertical;
  min-height: 150px;
}

.hd-dong-song-xanh-submit-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hd-dong-song-xanh-submit-btn:hover {
  background-color: #7a9b1e;
  transform: translateY(-2px);
}

.hd-dong-song-xanh-submit-btn:active {
  transform: translateY(0);
}

/* Contact Information Styles */
.hd-dong-song-xanh-contact-info-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hd-dong-song-xanh-contact-info-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  flex: 1;
  align-content: center;
}

.hd-dong-song-xanh-contact-info-card:last-child {
  margin-bottom: 0;
}

.hd-dong-song-xanh-contact-info-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hd-dong-song-xanh-contact-info-title {
  font-size: 1.3rem;
  color: var(--dark-gray);
  font-family: lato-b;
}

.hd-dong-song-xanh-contact-info-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.hd-dong-song-xanh-contact-info-text p {
  margin-bottom: 8px;
}

.hd-dong-song-xanh-contact-info-text p:last-child {
  margin-bottom: 0;
}

/* Google Map Styles */
.hd-dong-song-xanh-contact-map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray);
}
.hd-dong-song-xanh-contact-map-container-map {
  overflow: hidden;
  max-height: 500px;
}
.hd-dong-song-xanh-contact-map-container-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events:  all !important;
}
.hd-dong-song-xanh-contact-info-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hd-dong-song-xanh-contact-info-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
/* liên hệ end */

/* trang tuyển dụng chi tiết start */
/* Job Detail Page Styles for Blue River Transport Logistics */

/* Global Styles */
.hd-dong-song-xanh-job-detail {
  background-color: var(--white);
  color: var(--text-color);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  padding: 60px 0;
}

/* Header Section */
.hd-dong-song-xanh-job-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.hd-dong-song-xanh-breadcrumb {
  margin-bottom: 20px;
}

.hd-dong-song-xanh-back-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.hd-dong-song-xanh-back-link:hover {
  color: var(--primary-color);
}

.page-tuyen-dung-detail .hd-dong-song-xanh-job-title {
  font-size: clamp(1.3rem, 0.9308rem + 1.8462vw, 2.5rem);
  font-family: lato-b;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hd-dong-song-xanh-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.hd-dong-song-xanh-job-meta span {
  display: inline-flex;
  align-items: center;
}

.hd-dong-song-xanh-job-meta i {
  margin-right: 6px;
  color: var(--secondary-color);
}

/* Content Area */
.hd-dong-song-xanh-job-content {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 40px;
}

.hd-dong-song-xanh-content-wrapper {
  /* Styling for the HTML content from SQL */
}

/* Typography for content */
.hd-dong-song-xanh-content-wrapper h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.hd-dong-song-xanh-content-wrapper h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 25px 0 15px;
}

.hd-dong-song-xanh-content-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 20px 0 10px;
}

.hd-dong-song-xanh-content-wrapper p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
}

.hd-dong-song-xanh-content-wrapper ul,
.hd-dong-song-xanh-content-wrapper ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.hd-dong-song-xanh-content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.hd-dong-song-xanh-content-wrapper a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-color);
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-content-wrapper a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.hd-dong-song-xanh-content-wrapper strong,
.hd-dong-song-xanh-content-wrapper b {
  font-weight: 600;
  color: var(--dark);
}

/* Blockquote styling */
.hd-dong-song-xanh-job-quote {
  background-color: var(--light-gray);
  border-left: 4px solid var(--secondary-color);
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-color);
  border-radius: 0 8px 8px 0;
}

.hd-dong-song-xanh-job-quote p {
  margin-bottom: 0;
}

/* Code block styling (if needed) */
.hd-dong-song-xanh-content-wrapper pre,
.hd-dong-song-xanh-content-wrapper code {
  background-color: var(--light-gray);
  border-radius: 4px;
  padding: 2px 5px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: var(--dark);
}

.hd-dong-song-xanh-content-wrapper pre {
  padding: 15px;
  margin: 20px 0;
  overflow-x: auto;
}

/* Footer CTA */
.hd-dong-song-xanh-job-footer {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hd-dong-song-xanh-apply-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.hd-dong-song-xanh-apply-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-apply-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.hd-dong-song-xanh-share-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hd-dong-song-xanh-share-text {
  color: var(--text-light);
  font-size: 14px;
}

.hd-dong-song-xanh-share-links {
  display: flex;
  gap: 10px;
}

.hd-dong-song-xanh-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-share-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.hd-dong-song-xanh-back-to-careers {
  text-align: center;
  margin-top: 40px;
}

.hd-dong-song-xanh-back-btn {
  display: inline-block;
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hd-dong-song-xanh-back-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: var(--light-gray);
}

/* trang tuyển dụng chi tiết end */
