/* Base Styles */
:root {
  --primary: #e6a60c;
  --dark: #222831;
  --secondary: #393e46;
  --light-gray: #eeeeee;
  --white: #ffffff;
  --dark-gray: rgba(57, 62, 70, 0.75);
}

/* HEADER START */
/* Common Styles */

.hd-hp-section-title {
  font-size: clamp(1.5rem, 1.2538rem + 1.2308vw, 2.3rem);
  color: var(--dark);
  position: relative;
  text-transform: uppercase;
  font-family: lato-black;
}

.hd-hp-section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  margin: 0 auto 20px;
}

.hd-hp-divider-left {
  margin-left: 0;
}

.hd-hp-section-subtitle {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  color: var(--secondary);
  margin: 0 auto;
}

section {
  position: relative;
}

/* Header Styles */
.hd-hp-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: rgba(34, 40, 49, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 166, 12, 0.1);
}

.hd-hp-header.scrolled {
  padding: 10px 0;
  background: rgba(34, 40, 49, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.index .hd-hp-header {
  position: fixed;
  background: rgba(34, 40, 49, 0.8);
}
.hd-hp-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd-hp-logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.hd-hp-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hd-hp-logo-tagline {
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Desktop Menu */
.hd-hp-desktop-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-hp-desktop-menu ul li {
  margin-left: 0px;
}
.hd-menu-level-1-a {
  padding: 8px 10px;
}
.hd-hp-desktop-menu ul li a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--title-font);
  position: relative;
  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-hp-desktop-menu ul li a:hover,
.hd-hp-desktop-menu ul li a.active {
  color: var(--primary);
}
.hd-hp-logo-img {
  max-width: 120px;
  width: 100%;
  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-menu-level-1-li {
  display: flex;
}
.hd-menu-level-1-a {
  text-transform: uppercase;
  font-size: 1rem;
}

.hd-hp-desktop-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.hd-hp-desktop-menu ul li a:hover::after,
.hd-hp-desktop-menu ul li a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.hd-hp-mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.hd-hp-hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}

.hd-hp-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hd-hp-hamburger span:nth-child(1) {
  top: 0px;
}

.hd-hp-hamburger span:nth-child(2) {
  top: 9px;
}

.hd-hp-hamburger span:nth-child(3) {
  top: 18px;
}

/* Mobile Menu */
.hd-hp-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hd-hp-mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hd-hp-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: rgba(34, 40, 49, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1002;
  padding: 30px;
  border-left: 1px solid rgba(230, 166, 12, 0.1);
  overflow-y: auto;
  /* 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-hp-mobile-menu-overlay.active .hd-hp-mobile-menu {
  right: 0;
}

.hd-hp-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.hd-hp-mobile-menu-close {
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hd-hp-mobile-menu-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.hd-hp-mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-hp-mobile-menu-items li {
  margin-bottom: 20px;
}

.hd-hp-mobile-menu-items li a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 1.3rem;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  -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: capitalize;
}
.hd-hp-mobile-menu-items li a.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-hp-mobile-menu-items li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.hd-hp-mobile-menu-items li a:hover,
.hd-hp-mobile-menu-items li a.active {
  color: var(--primary);
  padding-left: 10px;
}

.hd-hp-mobile-menu-items li a:hover::after,
.hd-hp-mobile-menu-items li a.active::after {
  width: 50px;
}

/* Desktop Dropdown Menu */
.hd-hp-dropdown {
  position: relative;
}

.hd-hp-dropdown > a {
  display: flex;
  align-items: center;
}

.hd-hp-dropdown > a i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.hd-hp-dropdown:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
}

.hd-hp-dropdown:hover > a i.fa-chevron-right {
  transform: rotate(90deg);
}

.hd-hp-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(34, 40, 49, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 166, 12, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 0;
}

.hd-hp-dropdown:hover > .hd-hp-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.hd-hp-submenu li {
  position: relative;
}

.hd-hp-submenu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: var(--light-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hd-hp-submenu li a:hover {
  background: rgba(230, 166, 12, 0.1);
  color: var(--primary);
  padding-left: 25px;
}

/* Level 2 Dropdown */
.hd-hp-submenu-level2 {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: rgba(34, 40, 49, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 166, 12, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -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: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 0;
}

.hd-hp-submenu li.hd-hp-dropdown:hover > .hd-hp-submenu-level2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Dropdown Menu */
.hd-hp-mobile-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd-hp-mobile-dropdown > a i {
  transition: transform 0.3s ease;
}

.hd-hp-mobile-dropdown.active > a i {
  transform: rotate(180deg);
}

.hd-hp-mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
  border-left: 2px solid rgba(230, 166, 12, 0.3);
}

.hd-hp-mobile-dropdown.active > .hd-hp-mobile-submenu {
  display: block;
}

.hd-hp-mobile-submenu li {
  margin-bottom: 15px;
}

.hd-hp-mobile-submenu li:last-child {
  margin-bottom: 0;
}

.hd-hp-mobile-submenu-level2 {
  display: none;
  padding-left: 20px;
  margin-top: 15px;
  border-left: 2px solid rgba(230, 166, 12, 0.3);
}

.hd-hp-mobile-dropdown.active > .hd-hp-mobile-submenu-level2 {
  display: block;
}

/* Update Mobile Menu Styles */
.hd-hp-mobile-menu {
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 50px;
}

.hd-hp-mobile-menu-items {
  padding-top: 20px;
}

.hd-hp-mobile-menu-items li {
  margin-bottom: 15px;
}

.hd-hp-mobile-menu-items > li > a {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.hd-hp-mobile-submenu li a {
  font-size: 16px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd-hp-mobile-submenu-level2 li a {
  font-size: 14px;
}
.hd-hp-header.scrolled .hd-hp-logo-img {
  max-width: 80px;
  width: 100%;
  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;
}
/* HEADER END */

/* slider start */
/* Hero Section */
.hd-hp-hero-section {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hd-hp-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(34, 40, 49, 0.8) 0%,
    rgba(34, 40, 49, 0.4) 100%
  );
}
.hd-hp-hero-section .container {
  position: relative;
  z-index: 15;
}
.hd-hp-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hd-hp-hero-slider-swiper {
  width: 100%;
  height: 100%;
}
.image-slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hd-hp-hero-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: rgba(34, 40, 49, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.hd-hp-hero-title {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.2;
  font-family: lato-b;
}

.hd-hp-hero-subtitle {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  color: var(--primary);
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-hp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hd-hp-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.hd-hp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.hd-hp-btn:hover::before {
  left: 100%;
}

.hd-hp-btn-primary {
  background-color: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
}

.hd-hp-btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.hd-hp-btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hd-hp-btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
}

.hd-hp-btn i {
  margin-right: 8px;
}
.fancybox__content iframe {
  pointer-events: all !important;
}
/* slider end */

/* tại sao chọn chúng tôi start */
/* Why Choose Us Section */
.hd-hp-feature-box {
  background: rgba(57, 62, 70, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(230, 166, 12, 0.1);
  transition: all 0.34s ease;
  -webkit-transition: all 0.34s ease;
  -moz-transition: all 0.34s ease;
  -ms-transition: all 0.34s ease;
  -o-transition: all 0.34s ease;
}

.hd-hp-feature-box:hover {
  transform: translateY(-10px);
  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;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.hd-hp-feature-box.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-hp-feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.hd-hp-feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.hd-hp-feature-title {
  font-size: 1.1rem;
  font-family: lato-b;
  color: var(--white);
}

.hd-hp-feature-text {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* tại sao chọn chúng tôi end */

/* dịch vụ của chúng tôi start */
/* Services Section */
.hd-hp-services-section {
  background: var(--light-gray);
}
.hd-hp-service-card {
  background: rgba(57, 62, 70, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(230, 166, 12, 0.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-hp-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hd-hp-service-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-hp-service-image {
  height: 220px;
  overflow: hidden;
}

.hd-hp-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hd-hp-service-card:hover .hd-hp-service-image img {
  transform: scale(1.1);
}

.hd-hp-service-content {
  padding: 25px;
}

.hd-hp-service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.hd-hp-service-text {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-hp-service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.hd-hp-service-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.hd-hp-service-link:hover {
  color: var(--white);
}

.hd-hp-service-link:hover i {
  transform: translateX(5px);
}
.lt-swiper-pagiantion .swiper-pagination-bullet {
  border: 2px solid rgba(0, 0, 0, 0);
  opacity: 1;
  width: 15px;
  height: 15px;
  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;
}
.lt-swiper-pagiantion .swiper-pagination-bullet-active {
  background: var(--dark);
  border: 2px solid var(--primary);
  width: 25px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  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;
}
/* dịch vủa chúng tôi end */

/* video start */
/* Video Section */
.hd-hp-video-section {
  background-color: var(--white);
}

.hd-hp-video-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hd-hp-main-video {
  width: 100%;
}

.hd-hp-video-thumbnail {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.hd-hp-video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(34, 40, 49, 0.8) 0%,
    rgba(34, 40, 49, 0.4) 100%
  );
  transition: all 0.3s ease;
}

.hd-hp-video-thumbnail:hover::before {
  background: linear-gradient(
    0deg,
    rgba(34, 40, 49, 0.6) 0%,
    rgba(34, 40, 49, 0.3) 100%
  );
}

.hd-hp-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(230, 166, 12, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.hd-hp-play-button i {
  font-size: 30px;
  color: var(--white);
}

.hd-hp-video-thumbnail:hover .hd-hp-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary);
}

.hd-hp-video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

.hd-hp-video-title h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.hd-hp-video-slider-container {
  width: 100%;
}

.hd-hp-video-slider .swiper-slide .hd-hp-video-thumbnail {
  height: 250px;
}

.hd-hp-video-slider .swiper-slide .hd-hp-play-button {
  width: 60px;
  height: 60px;
}

.hd-hp-video-slider .swiper-slide .hd-hp-play-button i {
  font-size: 24px;
}

.hd-hp-swiper-button-next,
.hd-hp-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 5;
}

.hd-hp-swiper-button-next::after,
.hd-hp-swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.hd-hp-swiper-button-next:hover,
.hd-hp-swiper-button-prev:hover {
  background-color: var(--primary);
  color: var(--dark);
}
.hd-hp-swiper-button-next {
  right: -30px;
}
.hd-hp-swiper-button-prev {
  left: -30px;
}
/* video end */

/* tin nổi bật start */

/* News Section */
.hd-hp-news-card {
  background: rgba(57, 62, 70, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(230, 166, 12, 0.1);
  -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-hp-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hd-hp-news-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
.hd-hp-news-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.hd-hp-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hd-hp-news-card:hover .hd-hp-news-image img {
  transform: scale(1.1);
}

.hd-hp-news-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--dark);
  padding: 10px 15px;
  text-align: center;
  border-top-left-radius: 10px;
}

.hd-hp-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.hd-hp-month {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.hd-hp-news-content {
  padding: 25px;
  background: var(--dark);
}

.hd-hp-news-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.4;
}

.hd-hp-news-excerpt {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-hp-news-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.hd-hp-news-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.hd-hp-news-link:hover {
  color: var(--white);
}

.hd-hp-news-link:hover i {
  transform: translateX(5px);
}
/* tin nổi bật end */

/* trang giới thiệu */
/* About Section */
.hd-hp-about-section {
  background-color: var(--light-gray);
}

.hd-hp-about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hd-hp-about-image img,
.hd-hp-about-image a {
  width: 100%;
  height: 100%;
  display: block;
  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-hp-about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(230, 166, 12, 0.3) 0%,
    rgba(34, 40, 49, 0.1) 100%
  );
}
.hd-hp-about-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: 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-hp-about-content {
  padding: 30px;
  background: rgba(57, 62, 70, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  height: 100%;
}

.hd-hp-about-text {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.8;
}
.hd-hp-about-section .hd-hp-section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 1.3769rem + 0.6154vw, 1.9rem);
}
.hd-hp-about-text {
  color: var(--light-gray);
}
/* trang giới thiệu end */

/* process start */
/* Process Section */
.hd-hp-process-timeline {
  position: relative;
  padding: 30px 0;
}

.hd-hp-process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(230, 166, 12, 0.3);
  display: none;
}

.hd-hp-process-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.hd-hp-process-step:last-child {
  margin-bottom: 0;
}

.hd-hp-process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--primary);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hd-hp-process-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hd-hp-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
}

.hd-hp-process-content {
  flex: 1;
  padding: 25px;
  /* background: rgba(57, 62, 70, 0.3); */
  background: var(--secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  margin-left: 20px;
  border: 1px solid rgba(230, 166, 12, 0.1);
}

.hd-hp-process-title {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  margin-bottom: 0px;
  color: var(--white);
  font-family: lato-b;
}

.hd-hp-process-text {
  font-size: 16px;
  color: var(--light-gray);
  line-height: 1.6;
}
/* process end */

/* khách hàng đánh giá */
/* Clients Section */
.hd-hp-clients-section {
  background-color: var(--light-gray);
}

.hd-hp-client-logos {
  padding: 30px 0;
}

.hd-hp-client-logo {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: var(--dark-gray);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 166, 12, 0.1);
}

.hd-hp-client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.hd-hp-client-logo img {
  max-width: 100%;
  max-height: 50px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.hd-hp-client-logo:hover img {
  filter: grayscale(0%);
}

.hd-hp-testimonial {
  background: var(--secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(230, 166, 12, 0.1);
}

.hd-hp-testimonial-content {
  margin-bottom: 20px;
}

.hd-hp-testimonial-content p {
  font-size: 18px;
  color: var(--light-gray);
  line-height: 1.8;
  font-style: italic;
}

.hd-hp-testimonial-author {
  display: flex;
  align-items: center;
}

.hd-hp-author-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.hd-hp-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-hp-author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.hd-hp-author-info p {
  font-size: 14px;
  color: var(--primary);
  margin: 0;
}

.hd-hp-swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.hd-hp-process-section {
  background: var(--white);
}

/* liên hệ và footer start */
/* Contact Section */
.hd-hp-contact-section {
  background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.hd-hp-contact-form-container {
  background: rgba(57, 62, 70, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(230, 166, 12, 0.1);
  height: 100%;
}

.hd-hp-form-group {
  margin-bottom: 20px;
}

.hd-hp-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--white);
}

.hd-hp-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  background-color: rgba(34, 40, 49, 0.7);
  border: 1px solid rgba(230, 166, 12, 0.2);
  border-radius: 5px;
  color: var(--white);
  transition: all 0.3s ease;
}

.hd-hp-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 166, 12, 0.2);
}

.hd-hp-contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hd-hp-contact-card {
  background: rgba(57, 62, 70, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(230, 166, 12, 0.1);
  margin-bottom: 30px;
  flex: 1;
}

.hd-hp-contact-item {
  display: flex;
  margin-bottom: 25px;
}

.hd-hp-contact-item:last-child {
  margin-bottom: 0;
}

.hd-hp-contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(230, 166, 12, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
  margin-right: 15px;
  flex-shrink: 0;
}

.hd-hp-contact-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
}

.hd-hp-contact-text p {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 5px;
  line-height: 1.6;
}

.hd-hp-contact-text p:last-child {
  margin-bottom: 0;
}

.hd-hp-contact-text a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hd-hp-contact-text a:hover {
  color: var(--primary);
}

.hd-hp-google-map {
  border-radius: 10px;
  overflow: hidden;
  max-height: 500px;
}
.hd-hp-google-map iframe {
  pointer-events: all !important;
}
/* Footer */
.hd-hp-footer {
  background-color: var(--secondary);
  padding: 80px 0 0;
  position: relative;
}

.hd-hp-footer-info {
  margin-bottom: 30px;
}

.hd-hp-footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hd-hp-footer-about {
  font-size: 16px;
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-hp-footer-social {
  display: flex;
  gap: 15px;
}

.hd-hp-footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(230, 166, 12, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s ease;
}

.hd-hp-footer-social a:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
}

.hd-hp-footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.hd-hp-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.hd-hp-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-hp-footer-links ul li {
  margin-bottom: 12px;
}

.hd-hp-footer-links ul li a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hd-hp-footer-links ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.hd-hp-footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-hp-footer-contact ul li {
  display: flex;
  margin-bottom: 15px;
}

.hd-hp-footer-contact ul li i {
  color: var(--primary);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 3px;
}

.hd-hp-footer-contact ul li span {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.6;
}

.hd-hp-footer-bottom {
  border-top: 1px solid rgba(230, 166, 12, 0.1);
  padding: 20px 0;
  margin-top: 50px;
}

.hd-hp-copyright {
  text-align: center;
}

.hd-hp-copyright p {
  font-size: 14px;
  color: var(--light-gray);
  margin: 0;
}
.hd-hp-logo-img-footer-new {
  max-width: 120px;
}
/* liên hệ và footer end */

/* Experience Counter Section Start */
.lt-experience-counter {
  position: relative;
  padding: 100px 0;
  background: url('../images/cloud3.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.lt-experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 40, 49, 0.95) 0%, rgba(57, 62, 70, 0.8) 100%);
  z-index: 1;
}

.lt-experience-counter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/nen-doc.png');
  background-size: cover;
  opacity: 0.08;
  z-index: 2;
  pointer-events: none;
}

.lt-experience-counter .container {
  position: relative;
  z-index: 5;
}

.lt-experience-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  background: rgba(230, 166, 12, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(230, 166, 12, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
              inset 0 0 20px rgba(230, 166, 12, 0.1);
  position: relative;
  overflow: hidden;
}

.lt-experience-content:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 166, 12, 0.2) 0%, transparent 70%);
  opacity: 0;
  animation: pulse 3s ease-in-out infinite;
}

.lt-experience-number-wrapper {
  display: flex;
  align-items: flex-start;
  margin-right: 30px;
  position: relative;
}

.lt-experience-number {
  font-size: 120px;
  font-weight: 900;
  color: var(--primary);
  line-height: 0.9;
  text-shadow: 0 0 15px rgba(230, 166, 12, 0.5),
               3px 3px 0 rgba(34, 40, 49, 0.8);
  font-family: 'lato-black', sans-serif;
  position: relative;
}

.lt-experience-prefix {
  font-size: 60px;
  font-weight: 900;
  color: #e32b2b;
  position: absolute;
  right: -30px;
  top: 0;
  text-shadow: 0 0 10px rgba(227, 43, 43, 0.5),
               2px 2px 0 rgba(34, 40, 49, 0.8);
  font-family: 'lato-black', sans-serif;
}

.lt-experience-text {
  text-align: left;
  padding-left: 20px;
  border-left: 4px solid rgba(230, 166, 12, 0.3);
  position: relative;
}

.lt-experience-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  font-family: 'lato-black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lt-experience-subtitle {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 300px;
  opacity: 0.8;
}

/* Glitch Effect */
@keyframes glitch {
  0% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  2% {
    transform: translate(-2px, 0);
    text-shadow: -2px 0 #e32b2b;
  }
  4% {
    transform: translate(2px, 0);
    text-shadow: 2px 0 #4185f3;
  }
  6% {
    transform: translate(-2px, -2px);
    text-shadow: -2px 0 #e32b2b;
  }
  8% {
    transform: translate(2px, 2px);
    text-shadow: 2px 0 #4185f3;
  }
  10% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  100% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.glitch-active {
  animation: glitch 3s infinite;
}

/* Digital Counter Lines */
.lt-experience-number:before,
.lt-experience-number:after {
  content: '';
  position: absolute;
  height: 3px;
  background: rgba(230, 166, 12, 0.4);
}

.lt-experience-number:before {
  width: 100%;
  top: 30%;
  left: 0;
  box-shadow: 0 0 5px rgba(230, 166, 12, 0.8);
}

.lt-experience-number:after {
  width: 80%;
  bottom: 35%;
  left: 10%;
  box-shadow: 0 0 5px rgba(230, 166, 12, 0.8);
}

/* Red Accent Elements */
.lt-experience-content:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #e32b2b, transparent);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .lt-experience-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .lt-experience-number-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .lt-experience-number {
    font-size: 80px;
  }
  
  .lt-experience-prefix {
    font-size: 40px;
    right: -20px;
  }
  
  .lt-experience-text {
    text-align: center;
    padding-left: 0;
    border-left: none;
    padding-top: 0px;
    border-top: 4px solid rgba(230, 166, 12, 0.3);
  }
  
  .lt-experience-title {
    font-size: 24px;
  }
}
/* Experience Counter Section End */

/* Experience Counter Box */
.lt-experience-box {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: rgba(230, 166, 12, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 18px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 
              inset 0 0 15px rgba(255, 255, 255, 0.15);
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(227, 43, 43, 0.5);
  border-right: 2px solid rgba(227, 43, 43, 0.5);
  overflow: hidden;
  transform: perspective(300px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lt-experience-box:hover {
  transform: perspective(300px) rotateX(0deg) rotateY(0deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 
              inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.lt-experience-box:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
}

.lt-experience-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
              transparent, 
              rgba(255, 255, 255, 0.4), 
              transparent);
  z-index: 1;
  animation: shine 8s infinite;
}

.lt-experience-number-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  position: relative;
}

.lt-experience-number {
  font-size: 46px;
  font-weight: 900;
  color: var(--dark);
  line-height: 0.9;
  margin: 0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  font-family: 'lato-black', sans-serif;
  position: relative;
}

.lt-experience-prefix {
  font-size: 26px;
  font-weight: 900;
  color: #e32b2b;
  position: absolute;
  right: -15px;
  top: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  font-family: 'lato-black', sans-serif;
}

.lt-experience-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'lato-black', sans-serif;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

/* Glitch Effect */
@keyframes glitch {
  0% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  2% {
    transform: translate(-2px, 0);
    text-shadow: -2px 0 #e32b2b;
  }
  4% {
    transform: translate(2px, 0);
    text-shadow: 2px 0 #000000;
  }
  6% {
    transform: translate(-2px, -2px);
    text-shadow: -2px 0 #e32b2b;
  }
  8% {
    transform: translate(2px, 2px);
    text-shadow: 2px 0 #000000;
  }
  10% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  100% {
    transform: translate(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.glitch-active {
  animation: glitch 2s ease-in-out;
}

/* Pulse Effect */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 43, 43, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(227, 43, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227, 43, 43, 0);
  }
}

.pulse-effect {
  animation: pulse-border 1.5s ease-out;
}

/* Responsive styles */
@media (max-width: 767px) {
  .lt-experience-box {
    bottom: -15px;
    right: -15px;
    padding: 12px 20px;
  }
  
  .lt-experience-number {
    font-size: 36px;
  }
  
  .lt-experience-prefix {
    font-size: 20px;
    right: -12px;
  }
  
  .lt-experience-title {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .lt-experience-box {
    bottom: -10px;
    right: -10px;
    padding: 10px 15px;
    transform: perspective(300px) rotateX(0) rotateY(0);
  }
}

/* Experience Counter Box End */
