/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*--------------------------------------------------------------
# ALL STYLE
--------------------------------------------------------------*/
html {
  background-color: #fff;
}
:root {
  --primary-color: #1E8A8A;
  --mytitle-color: #0C1E21;
  --hib-color-primary: #1E8A8A;
  --hib-color-dark: #0C1E21;
  --hib-color-light: #D8E5E5;
  --hib-color-white: #FFFFFF;
  --hib-color-surface: rgba(216, 229, 229, 0.34);
  --hib-color-border: rgba(30, 138, 138, 0.18);
  --hib-shadow-soft: 0 12px 32px rgba(12, 30, 33, 0.08);
  --hib-heading-font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --hib-section-gap: clamp(28px, 3vw, 40px);
  --hib-section-radius: 24px;
  --hib-section-title-size: clamp(26px, 2vw, 32px);
  --hib-section-title-line-height: 1.2;
  --hib-section-title-weight: 650;
  --hib-section-shadow: 0 22px 58px rgba(12, 30, 33, 0.09);
}
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.section-title,
.section-title-main,
[class$="__title"],
[class*="__title "] {
  font-family: var(--hib-heading-font) !important;
  font-weight: 650 !important;
}

/* Reusable vertical rhythm for present and future homepage sections. */
.section.hib-section-standard {
  padding-top: calc(var(--hib-section-gap) / 2) !important;
  padding-bottom: calc(var(--hib-section-gap) / 2) !important;
}

.section.hib-section-standard > .section-content > .row {
  margin-bottom: 0;
}
.b-title {
  color: var(--mytitle-color) !important;
  margin-bottom: 0px;
}
.w-title {
  color: #fff !important;
}
.no-padding-bottom {
  padding-bottom: 0px !important;
}
/*--------------------------------------------------------------
# BUTTON
--------------------------------------------------------------*/
.more-button {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
  padding: 10px 35px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.more-button .plus {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.more-button:hover .plus {
  transform: rotate(90deg);
}
.more-button:hover {
  background-color: #fff;
  color: var(--primary-color);
}
/*--------------------------------------------------------------
# SECTION TITLE
--------------------------------------------------------------*/
.section-title {
  text-align: center !important;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
#header {
  position: relative;
  z-index: 40;
  border-top: 3px solid var(--hib-color-dark);
}

#header .header-wrapper {
  border-bottom: 1px solid rgba(30, 138, 138, 0.15);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(12, 30, 33, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#header .header-main {
  height: 86px !important;
}

#header .header-inner {
  gap: clamp(12px, 1.7vw, 26px);
  padding-right: 18px;
  padding-left: 18px;
}

#header #logo {
  width: 225px !important;
}

#header #logo img {
  max-height: 82px !important;
  padding: 13px 0 !important;
}

#header .header-nav-main {
  gap: 4px;
  flex-wrap: nowrap !important;
}

#header .header-nav-main.nav-spacing-xlarge > li {
  flex: 0 0 auto;
  margin: 0 2px;
}

#header .header-nav-main > li > a.nav-top-link {
  position: relative;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  color: var(--hib-color-dark);
  font-family: var(--hib-heading-font) !important;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1.2;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

#header .header-nav-main > li > a.nav-top-link::before {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--hib-color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

#header .header-nav-main > li > a.nav-top-link:hover,
#header .header-nav-main > li.active > a.nav-top-link,
#header .header-nav-main > li.current > a.nav-top-link,
#header .header-nav-main > li.current-menu-item > a.nav-top-link {
  color: var(--hib-color-primary);
  background: transparent;
}

#header .header-nav-main > li > a.nav-top-link:hover::before,
#header .header-nav-main > li.active > a.nav-top-link::before,
#header .header-nav-main > li.current > a.nav-top-link::before,
#header .header-nav-main > li.current-menu-item > a.nav-top-link::before {
  transform: scaleX(1);
}

#header .header-nav-main > li > a.nav-top-link:hover {
  transform: translateY(-1px);
}

#header .modern-language-switcher .language-toggle {
  min-height: 46px;
  padding: 8px 11px !important;
  border-color: rgba(30, 138, 138, 0.2) !important;
  border-radius: 999px !important;
  color: var(--hib-color-dark);
  background: rgba(216, 229, 229, 0.28) !important;
  box-shadow: none !important;
}

#header .modern-language-switcher .language-toggle:hover {
  border-color: rgba(30, 138, 138, 0.42) !important;
  background: rgba(216, 229, 229, 0.58) !important;
}

#header .modern-language-switcher .language-dropdown {
  min-width: 160px;
  margin-top: 9px !important;
  overflow: hidden;
  border-color: rgba(30, 138, 138, 0.16) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 42px rgba(12, 30, 33, 0.13) !important;
}

#header .modern-language-switcher .language-link {
  border-radius: 9px !important;
}

#header .modern-language-switcher .language-link:hover {
  color: var(--hib-color-dark) !important;
  background: rgba(30, 138, 138, 0.09) !important;
}

#header .wdt-button-holder .wdt-button {
  min-width: 124px;
  min-height: 48px;
  padding: 10px 19px;
  justify-content: center;
  border: 1px solid var(--hib-color-primary);
  border-radius: 999px;
  background: var(--hib-color-primary);
  box-shadow: 0 9px 22px rgba(30, 138, 138, 0.18);
}

#header .wdt-button-holder .wdt-button::after {
  content: "↗";
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease;
}

#header .wdt-button-holder .wdt-button:hover {
  border-color: var(--hib-color-dark);
  background: var(--hib-color-dark);
  box-shadow: 0 11px 26px rgba(12, 30, 33, 0.2);
}

#header .wdt-button-holder .wdt-button:hover::after {
  transform: translate(2px, -2px);
}

#header .wdt-button-holder .wdt-button-icon {
  display: none !important;
}

/* The menu now contains its own Contact item, so the old CTA is redundant. */
#header .wdt-button-holder {
  display: none !important;
}

#header .stuck .header-main {
  height: 70px !important;
}

#header .stuck #logo img {
  max-height: 60px !important;
  padding: 10px 0 !important;
}

#header .stuck .header-wrapper {
  box-shadow: 0 12px 34px rgba(12, 30, 33, 0.1);
}

.logo-left .logo {
  margin-right: 10px;
}
.logo img.header-logo {
  height: auto !important;
  object-fit: contain;
}
@media (max-width: 850px) {
  #header {
    border-top-width: 2px;
  }

  #header .header-main {
    height: 68px !important;
  }

  #header #logo {
    width: 190px !important;
  }

  #header #logo img {
    max-height: 66px !important;
    padding: 10px 0 !important;
  }

  #header .header-inner {
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  #header .mobile-nav .header-button .button {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 138, 138, 0.2);
    border-radius: 12px;
    color: #ffffff;
    background: var(--hib-color-primary);
    box-shadow: 0 6px 14px rgba(30, 138, 138, 0.16);
    line-height: 1;
  }

  #header .mobile-nav .header-button .button i {
    width: 19px;
    height: 19px;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    line-height: 19px;
    transform: none;
  }

  #header .mobile-nav .header-button .button i::before {
    display: block;
    line-height: 19px;
  }

  #header .modern-language-switcher .language-toggle {
    width: 50px;
    min-width: 50px;
    min-height: 38px;
    justify-content: center;
    gap: 5px;
    padding: 6px 7px !important;
    border-radius: 12px !important;
  }

  #header .modern-language-switcher .language-toggle .language-flag {
    width: 20px;
    height: 20px;
  }

  #header .modern-language-switcher .language-toggle .dropdown-arrow {
    width: 14px;
    height: 14px;
  }

  #header .modern-language-switcher .language-dropdown {
    right: 0;
    left: auto;
    width: 154px;
    min-width: 154px;
    margin-top: 7px !important;
    border-radius: 12px !important;
  }

  #header .modern-language-switcher .language-link {
    min-height: 42px;
    gap: 10px;
    padding: 8px 10px;
  }

  #header .modern-language-switcher .language-link .language-name {
    display: inline-block;
    color: var(--hib-color-dark);
    font-size: 13px;
    line-height: 1.3;
  }

  .logo-left .logo {
    margin-right: 0px;
  }
}

.wdt-button-holder .wdt-button {
  color: #ffffff;
  background: var(--primary-color, #1E8A8A);
  border: none;
  font-size: 14px;
  font-weight: 700;
  padding: 0.875em 2em;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.wdt-button-holder .wdt-button .wdt-button-icon {
  color: #ffffff;
  transition: color 0.3s ease;
}

.wdt-button-holder .wdt-button .wdt-button-text {
  color: #ffffff;
  transition: color 0.3s ease;
}

.wdt-button-holder .wdt-button:hover {
  background: #0C1E21;
  color: #ffffff;
  transform: translateY(-2px);
}

.wdt-button-holder .wdt-button:hover .wdt-button-icon {
  color: #ffffff;
}

.wdt-button-holder .wdt-button:hover .wdt-button-text {
  color: #ffffff;
}
.header-nav.nav-left {
  justify-content: center;
}
.home .page-header-excerpt {
  display: none;
}
/*--------------------------------------------------------------
# BLOG ARCHIVE
--------------------------------------------------------------*/
.nav-pagination > li > a,
.nav-pagination > li > span {
  border-radius: unset;
  border: 1px solid #dee2e6;
}
/*--------------------------------------------------------------
# BLOG SINGLE
--------------------------------------------------------------*/
.blog-wrapper ul {
  margin-left: 1.4rem;
}

.blog-wrapper .entry-image img {
  border-radius: 8px;
}
.blog-wrapper .entry-title {
  margin-bottom: 0px;
}
.theme_blog_details-left-meta {
  margin: 20px 0;
}
.theme_blog_details-left-meta ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.theme_blog_details-left-meta ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  color: #000;
}
.theme_blog_details-left-meta ul li a {
  transition: 0.4s;
}
.theme_blog_details-left-meta ul li i {
  margin-right: 8px;
  color: var(--primary-color);
}
.search-container {
  background-color: #D8E5E5;
  padding: 20px 15px;
  border-radius: 12px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
}

input[type="text"].search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.2s ease;
  height: unset;
  margin-bottom: 0;
}
input[type="text"].search-input:focus {
  box-shadow: 0 0 0 1px rgba(30, 138, 138, 0.16);
}
button[type="submit"].search-button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 0;
  letter-spacing: normal;
  line-height: unset;
}

button[type="submit"].search-button:hover {
  background-color: #0C1E21;
}

.search-button:active {
  transform: translateY(1px);
}

.custom-latest-feed {
  margin: 0 auto;
  background-color: #eeeeee;
  padding: 20px 15px;
  border-radius: 8px;
}

.custom-latest-feed h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  position: relative;
}

.custom-latest-feed h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #000;
}

.custom-posts-wrapper {
  margin-top: 25px;
}

.custom-article-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.custom-article-card:last-child {
  margin-bottom: 0;
}

.custom-entry-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6c757d;
}

.custom-author-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-author-badge {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.custom-author-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.custom-author-handle {
  font-weight: 500;
  color: var(--primary-color);
}

.custom-comment-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.custom-entry-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.custom-entry-title a {
  color: #000;
}
.custom-entry-title:hover {
  color: var(--primary-color);
}

@media (max-width: 480px) {
  .custom-article-card {
    padding: 15px;
  }

  .custom-entry-title {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# BANNER SECTION
--------------------------------------------------------------*/
.banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner-image .overlay {
  position: absolute;
  inset: 0; /* tương đương top: 0; right: 0; bottom: 0; left: 0 */
  background: rgba(0, 0, 0, 0.2); /* Màu đen trong suốt */
  z-index: 1;
}
.banner-content {
  position: relative;
  padding: 130px 0px 130px 0px;
  z-index: 2;
}
.banner-content .banner-subtitle {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 26px;
  color: var(--primary-color);
  background: #eee;
  border-radius: 50px 50px 50px 50px;
  margin-bottom: 30px;
  display: inline-block;
  padding: 2px 16px;
  position: relative;
  z-index: 1;
}
.banner-content .banner-description {
  font-size: 20px;
}
.banner-content .banner-button {
  display: flex;
}
.banner-content .banner-button span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  padding: 10px 35px 10px 35px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.banner-content .banner-button span svg {
  width: 20px;
  height: 20px;
}
.banner-content .banner-button span:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.banner-arrow {
  top: 85%;
  display: flex;
  justify-content: end;
  position: absolute;
  margin: 0 auto;
  padding: 0 12px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  gap: 20px;
  cursor: pointer;
}
.banner-arrow .container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.banner-arrow-next i,
.banner-arrow-prev i {
  font-size: 22px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  transition: 0.4s;
}
.text-container span {
  font-size: 3rem;
}
.text-container .line1 {
  color: #1E8A8A;
}
.text-container .black-dot {
  color: var(--mytitle-color);
}
.text-container .line2 {
  color: var(--mytitle-color);
}
.text-container .red-dot {
  color: var(--primary-color);
}
.banner-image .banner-image-shape-two {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateX(100px); /* bắt đầu lệch phải */
  transition: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}
@media (max-width: 700px) {
  .banner-image .banner-image-shape-two {
    right: -50px;
  }
}
/*--------------------------------------------------------------
# INFO SECTION
--------------------------------------------------------------*/
.hib-company-profile {
  line-height: 1.6;
  color: #333;
  background-color: var(--hib-color-surface);
}

.hib-profile-container {
  margin: 0 auto;
}

.hib-profile-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hib-profile-image-wrapper {
  position: relative;
}

.hib-profile-company-image {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hib-profile-content-wrapper {
  padding: 20px 0;
}

.hib-profile-section-badge {
  background: rgba(30, 138, 138, 0.1);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hib-profile-description-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.hib-profile-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.hib-profile-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hib-profile-feature-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hib-profile-feature-icon img {
  width: 28px;
  height: 28px;
}

.hib-profile-feature-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.hib-profile-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hib-profile-cta-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 35px 10px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.hib-profile-cta-btn:hover {
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
}
.hib-profile-cta-btn::after {
  content: "→";
  font-size: 18px;
}

.hib-profile-ceo-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hib-profile-ceo-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E8A8A, #D8E5E5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.hib-profile-ceo-avatar img {
  border-radius: 50%;
}

.hib-profile-ceo-details h4 {
  font-size: 18px;
  color: #0C1E21;
  margin-bottom: 5px;
}

.hib-profile-ceo-details p {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .hib-profile-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hib-profile-company-title {
    font-size: 28px;
  }

  .hib-profile-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hib-profile-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hib-profile-decorative-circle-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1E8A8A, #D8E5E5);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hib-profile-decorative-circle-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1E8A8A, #0C1E21);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}
/*--------------------------------------------------------------
# SERVICE GROUP
--------------------------------------------------------------*/
.service-group-wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  overflow: hidden;
}
.service-group .section-title {
  justify-content: flex-start;
}
@media (max-width: 600px) {
  .service-group .section-title {
    justify-content: center;
    font-size: 24px;
  }
}
.service-group-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4); /* màu trắng mờ */
  z-index: 1;
  pointer-events: none;
}
.service-group {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  border-radius: 20px;
  color: #1f2937; /* màu chữ nếu cần tăng độ tương phản */
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.service-header .number {
  background-color: #fff;
  color: var(--primary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: normal;
  font-weight: bold;
  flex-shrink: 0;
}

.service-header .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0px;
}

.service-header .description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  max-width: 900px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background-color: white;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #0000001a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon img {
  width: 24px;
  height: 24px;
  fill: #1E8A8A;
}

.service-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

@media (max-width: 768px) {
  .service-group {
    padding: 40px 20px;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-header .number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-header .title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }
}
/*--------------------------------------------------------------
# QA SECTION
--------------------------------------------------------------*/
.qa-section {
  margin: 0 auto;
  background-color: #eeeeee;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 60px 50px;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.strength-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 0;
  height: 1px;
  background-color: #ddd;
}

.arrow-icon {
  flex-shrink: 0;
  margin-right: 20px;
  margin-top: 5px;
}

.arrow-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid var(--primary-color);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.strength-text {
  flex: 1;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 0px;
}

.strength-text strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .qa-section {
    padding: 40px 30px;
  }

  .strength-item {
    margin-bottom: 35px;
  }

  .arrow-icon {
    margin-right: 15px;
  }

  .strength-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .qa-section {
    padding: 30px 20px;
  }

  .strength-text {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# NEWS SECTION
--------------------------------------------------------------*/
.news-section {
  background-color: #fff;
}

.news-swiper {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.news-swiper .swiper-wrapper {
  margin-top: 20px;
  margin-bottom: 50px;
}
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
}

.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-meta {
  margin-bottom: 20px;
}

.news-date {
  color: #999;
  font-size: 0.9rem;
}

.news-link {
  color: #1E8A8A;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.news-link:hover {
  color: #0C1E21;
}

.news-link .arrow {
  transition: transform 0.3s ease;
}

.news-link:hover .arrow {
  transform: translateX(5px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #1E8A8A;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: -25px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #1E8A8A;
  color: #fff;
}

.swiper-pagination {
  bottom: -40px;
}

.swiper-pagination-bullet {
  background: #1E8A8A;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Section Button */
.section-button {
  text-align: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1E8A8A;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 138, 138, 0.3);
}

.btn-more:hover {
  background: #0C1E21;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 138, 138, 0.4);
  color: #fff;
}

.btn-more .plus {
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn-more:hover .plus {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .news-content {
    padding: 15px;
  }
}
/*--------------------------------------------------------------
# PARTNER SECTION
--------------------------------------------------------------*/
.partner-section {
  width: 100%;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 38px) 0;
}

.partner-section__header {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.partner-section__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--hib-color-primary, #1E8A8A);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-section__heading-row {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.partner-section__title {
  max-width: 24ch;
  margin: 0;
  color: var(--hib-color-dark, #0C1E21);
  font-size: var(--hib-section-title-size, clamp(26px, 2vw, 32px));
  font-weight: var(--hib-section-title-weight, 650);
  line-height: var(--hib-section-title-line-height, 1.2);
  letter-spacing: -0.035em;
}

.partner-section__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 138, 138, 0.42), rgba(30, 138, 138, 0.06));
}

.partner-section__slider {
  min-height: 265px;
  padding: 1px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(30, 138, 138, 0.14);
  box-shadow: 0 16px 42px rgba(12, 30, 33, 0.07);
  opacity: 0;
  visibility: hidden;
}

.partner-section__slider.is-ready {
  opacity: 1;
  visibility: visible;
}

.partner-section__slider .swiper-wrapper {
  align-items: stretch;
}

.partner-section__column {
  height: auto;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(30, 138, 138, 0.14);
}

.partner-section__logo {
  min-width: 0;
  min-height: 132px;
  margin: 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 251, 251, 0.98);
  transition: background-color 0.25s ease;
}

.partner-section__column .partner-section__logo:only-child {
  grid-row: 1;
}

.partner-section__logo:hover {
  background: #ffffff;
}

.partner-section__logo img {
  width: 100%;
  max-width: 142px;
  height: 70px;
  object-fit: contain;
  filter: saturate(0.78);
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-section__logo:hover img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.035);
}

.partner-section__nav {
  width: max-content;
  padding: 4px;
  border: 1px solid rgba(12, 30, 33, 0.12);
  border-radius: 11px;
  display: flex;
  gap: 4px;
  background: rgba(216, 229, 229, 0.38);
}

.partner-section__nav button {
  width: 32px;
  height: 32px;
  min-width: 32px !important;
  min-height: 32px !important;
  margin: 0 !important;
  padding: 0;
  border: 0;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: var(--hib-color-dark, #0C1E21);
  background: transparent;
  box-shadow: none;
  appearance: none;
  font-size: 14px;
  line-height: 1;
  transition: color 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.partner-section__nav button:hover:not(:disabled) {
  color: #ffffff;
  background: var(--hib-color-primary, #1E8A8A);
}

.partner-section__nav button:disabled {
  cursor: default;
  opacity: 0.28;
}

.partner-section__nav button:focus {
  outline: none;
}

.partner-section__nav button:focus-visible {
  outline: 2px solid var(--hib-color-primary, #1E8A8A);
  outline-offset: 1px;
}

@media (max-width: 649px) {
  .partner-section__header {
    grid-template-columns: 1fr auto;
  }

  .partner-section__heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-section__line {
    width: 72px;
  }

  .partner-section__logo {
    min-height: 104px;
    padding: 16px;
  }

  .partner-section__logo img {
    height: 58px;
  }

  .partner-section__slider {
    min-height: 209px;
  }
}
/*--------------------------------------------------------------
# CTA SECTION
--------------------------------------------------------------*/
.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .cta-container {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.left-section {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}

.image-container {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.image-container img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-section {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  color: white;
}

@media (max-width: 700px) {
  .cta-container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .left-section {
    min-height: 250px;
  }
  .right-section {
    padding: 30px;
  }
}
.form-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}

.form-container {
  width: 100%;
  max-width: 520px;
}

/* WPForms のスタイルをオーバーライド */
.wpforms-container {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0px !important;
}

.wpforms-form {
  background: transparent !important;
}

.wpforms-field-container {
  margin-bottom: 20px;
}

.wpforms-field-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.wpforms-field-row .wpforms-field {
  flex: 1;
  margin-bottom: 0 !important;
}

.wpforms-field-label {
  color: white !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  font-size: 14px !important;
}

.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field input[type="tel"],
.wpforms-field textarea {
  width: 100% !important;
  padding: 12px 15px !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
}

.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field input[type="tel"]:focus,
.wpforms-field textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}
.wpforms-container-full button[type="submit"] {
  width: 100% !important;
  background: var(--primary-color, #1E8A8A) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 0.5rem !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(30, 138, 138, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.wpforms-container-full button[type="submit"]:focus:after {
  border: none !important;
}
.wpforms-field textarea {
  height: 120px !important;
  resize: vertical !important;
}

.wpforms-submit-container {
  text-align: center;
  margin-top: 30px;
}

.wpforms-submit {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 2px solid white !important;
  padding: 12px 30px !important;
  border-radius: 25px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
}

.wpforms-submit:hover {
  background: white !important;
  color: #1E8A8A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}
.cta-container .wpforms-container-full .wpforms-form em.wpforms-error {
  color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
  .form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .wpforms-field-row {
    flex-direction: column;
    gap: 0;
  }

  .wpforms-field-row .wpforms-field {
    margin-bottom: 20px !important;
  }
}
/*--------------------------------------------------------------
# PROJECT SECTION
--------------------------------------------------------------*/

.project-tabs {
  display: flex;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 400px;
  margin: auto;
}

.project-tab {
  flex: 1;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin: 0;
  background-color: #00000033;
  color: #000;
}

.project-tab:hover {
  background: #e0e0e0;
}

.project-tab.active {
  background-color: white;
  color: #333;
}

/* Container cho swiper với arrow bên ngoài */
.swiper-container-wrapper {
  position: relative;
  padding: 0 60px; /* Tạo không gian cho arrow */
  margin-top: 20px;
}

.project-swiper {
  overflow: hidden; /* Giữ slide trong container */
  position: relative;
}

.project-slide-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-slide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
  padding-top: 75%; /* Tỷ lệ 4:3 */
  position: relative;
  overflow: hidden;
  height: 0;
}

.image-wrapper img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.project-content {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 10px;
}
.project-content span {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-content span svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  margin: 0;
  line-height: 1.3;
}

/* Swiper pagination */
.project-swiper-pagination {
  position: relative !important;
  margin-top: 20px;
  text-align: center;
}

.project-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.project-swiper-pagination .swiper-pagination-bullet-active {
  background: #1E8A8A;
  transform: scale(1.2);
}

/* Arrow buttons - Đặt bên ngoài swiper */
.project-swiper-button-prev,
.project-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20; /* Tăng z-index để đảm bảo hiện trên cùng */
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 138, 138, 0.3);
}

.project-swiper-button-prev:hover,
.project-swiper-button-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 138, 138, 0.4);
}

.project-swiper-button-prev {
  left: 5px; /* Đưa vào trong padding của container */
}

.project-swiper-button-next {
  right: 5px; /* Đưa vào trong padding của container */
}

.project-swiper-button-prev svg,
.project-swiper-button-next svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .swiper-container-wrapper {
    padding: 0px;
  }

  .project-swiper-button-prev,
  .project-swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .project-swiper-button-prev {
    left: 5px;
  }

  .project-swiper-button-next {
    right: 5px;
  }

  .project-swiper-button-prev svg,
  .project-swiper-button-next svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  /* Ẩn arrow buttons trên mobile */
  .project-swiper-button-prev,
  .project-swiper-button-next {
    display: none;
  }

  /* Hiện pagination trên mobile */
  .project-swiper-pagination {
    display: block;
  }

  .project-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Ẩn pagination trên desktop/tablet */
@media (min-width: 481px) {
  .project-swiper-pagination {
    display: none;
  }
}

/*--------------------------------------------------------------
# MOBILE MENU
--------------------------------------------------------------*/
.off-canvas-left .mfp-content {
  width: 100%;
  background-color: var(--primary-color);
}
.off-canvas-left .mfp-content .nav-vertical li > a {
  text-transform: none;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
}
.off-canvas-left .mfp-content .nav-vertical li i {
  color: #fff;
  opacity: 1;
}
.mfp-ready .mfp-close {
  opacity: 1;
  mix-blend-mode: normal;
}
.toggle {
  opacity: 1;
}
/*--------------------------------------------------------------
# CONTACT SECTION
--------------------------------------------------------------*/
.fs-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-height: 600px;
}

.fs-form-section {
  padding: 50px 40px;
  background: #e5e5e5;
}

.contact-info {
  padding: 50px 40px;
  background: linear-gradient(
    90deg,
    rgba(190, 2, 3, 1) 0%,
    rgba(214, 75, 75, 1) 50%,
    rgba(201, 99, 99, 1) 100%
  );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fs-header {
  margin-bottom: 30px;
}

.start-conversation {
  display: inline-flex;
  align-items: center;
  background: #D8E5E5;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.start-conversation::before {
  content: "●";
  margin-right: 8px;
  color: var(--primary-color);
}

.subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-content {
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .fs-container {
    grid-template-columns: 1fr;
  }

  .fs-form-section,
  .contact-info {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 20px;
  }
}

/* Animation cho form load */
.form-section {
  animation: slideInLeft 0.8s ease-out;
}

.contact-info {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
# LANGUAGE SWITCHER
--------------------------------------------------------------*/
@media (max-width: 849px) {
  .header-main li.html.custom {
    display: block;
  }
}
@media (max-width: 700px) {
  #header .modern-language-switcher .language-toggle .language-name {
    display: none;
  }
}
@media screen and (max-width: 849px) {
  .medium-logo-center .logo {
    margin: 0px;
    order: 2;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# SERVICE ICON BOX
--------------------------------------------------------------*/
.icon__box-item {
  align-items: center;
  position: relative;
  z-index: 8;
  top: 0;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.05);
}
.icon__box-item {
  display: block;
  text-align: left;
  background: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #dde6e3;
  border-radius: 8px;
  padding: 35px 35px 35px 35px;
  transition: 0.4s;
}
.icon__box-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.icon__box-item-overlay {
  border-radius: 8px;
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  transition: 0.4s ease 0s, background-color 0.5s ease 0s,
    background-image 0.5s ease 0s;
}
.icon__box-item:hover .icon__box-item-overlay {
  opacity: 1;
}
.icon__box-item-overlay::before {
  background: #be020288;
  transition: 0.4s;
  z-index: 1;
}

.icon__box-item-overlay::before,
.icon__box-item-overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon__box-item-icon {
  background: #D8E5E5;
  width: 80px;
  height: 80px;
  min-width: 80px;
  margin: 0px 0px 25px 0px;
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  transition: 0.4s;
  align-items: center;
  justify-content: center;
}
.icon__box-item-icon i {
  color: var(--primary-color);
  font-size: 45px;
}
.icon__box-item-content {
  display: flex;
  justify-content: left;
  flex-direction: column;
  gap: 3px;
}
.icon__box-item-content h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.icon__box-item .icon__box-item-content h5 a {
  color: var(--mytitle-color);
}
.icon__box-item:hover .icon__box-item-content h5 a {
  color: #fff;
}
.icon__box-item-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--mytitle-color);
  margin: 12px 0px 26px 0px;
}
.icon__box-item:hover .icon__box-item-content p {
  color: #fff;
}
.flexitype-button {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--mytitle-color);
  background: #02010100;
  padding: 0px 0px 0px 0px;
  gap: 7px;
  transition: 0.4s;
}
.icon__box-item:hover .flexitype-button {
  color: #fff;
  opacity: 1;
}
.flexitype-button i {
  font-size: 12px;
  transition: 0.4s;
}
/*--------------------------------------------------------------
# SEARCH PAGE
--------------------------------------------------------------*/
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-title {
  font-size: 18px;
  font-weight: 600;
}
.product-price {
  color: #1E8A8A;
  font-weight: bold;
  margin: 5px 0;
}
.search-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.tab-content .tab .search-results {
  display: none; /* Ẩn tất cả nội dung bài viết mặc định */
}

.tab-content .tab.active .search-results {
  display: block; /* Chỉ hiển thị nội dung bài viết của tab active */
}
.search-results-container {
  padding-top: 30px;
}
.search-title {
  margin-bottom: 0px;
}
.search-tabs {
  margin: 2em 0;
}

/*--------------------------------------------------------------
# HIB COLOR SYSTEM
--------------------------------------------------------------*/
body {
  color: var(--hib-color-dark);
}

a {
  color: var(--hib-color-primary);
}

a:hover,
a:focus {
  color: var(--hib-color-dark);
}

.header:not(.transparent) .header-nav-main.nav > li > a {
  color: var(--hib-color-dark);
}

.header:not(.transparent) .header-nav-main.nav > li > a:hover,
.header:not(.transparent) .header-nav-main.nav > li.active > a,
.header:not(.transparent) .header-nav-main.nav > li.current > a {
  color: var(--hib-color-primary);
}

.more-button,
.btn-more,
.hib-profile-cta-btn,
.hib_project__cta-btn,
.wpforms-container-full button[type="submit"] {
  box-shadow: 0 8px 22px rgba(30, 138, 138, 0.2);
}

.hib_biz-expansion__card,
.hib_trade-biz__item,
.hib_human-resource__card,
.hib_why-choose__card,
.news-card,
.project-card {
  border-color: var(--hib-color-border);
  box-shadow: var(--hib-shadow-soft);
}

.hib_trade-biz,
.search-container,
.custom-latest-feed {
  background-color: var(--hib-color-surface);
}

#footer > .section {
  background: linear-gradient(135deg, #071719 0%, #0C1E21 54%, #12383a 100%) !important;
}

#footer > .section .section-bg {
  background: transparent !important;
}

.absolute-footer {
  background-color: var(--hib-color-light) !important;
}

#footer > .section,
#footer > .section h1,
#footer > .section h2,
#footer > .section h3,
#footer > .section h4,
#footer > .section h5,
#footer > .section h6 {
  color: #ffffff !important;
}

#footer > .section a {
  color: var(--hib-color-light);
}

#footer > .section a:hover {
  color: #ffffff;
}

#footer .social-icon {
  background: var(--hib-color-primary) !important;
}

#footer .social-icon:hover {
  background: var(--hib-color-light) !important;
}

#footer .social-icon:hover svg {
  fill: var(--hib-color-dark);
}

/* CSS để thêm vào file style.css của theme */
.search-tabs .tab-links {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; /* Cho phép xuống dòng trên màn hình nhỏ nếu cần */
}

.search-tabs .tab-links li {
  margin: 0;
  padding: 0;
  flex: 1; /* Mỗi tab có độ rộng bằng nhau */
  text-align: center;
}

.search-tabs .tab-links a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap; /* Ngăn text xuống dòng trong tab */
  overflow: hidden;
  text-overflow: ellipsis; /* Thêm dấu ... khi text quá dài */
}

.search-tabs .tab-links li.active a {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Responsive styles */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    flex-direction: column; /* Tab xếp dọc trên mobile */
  }

  .search-tabs .tab-links li {
    flex: none;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .search-tabs .tab-links li:last-child {
    border-bottom: none;
  }

  .search-tabs .tab-links a {
    padding: 12px 10px;
    text-align: left;
  }

  .search-tabs .tab-links li.active a {
    border-bottom: none;
    border-left: 3px solid var(--primary-color);
    background-color: #f7f7f7;
  }
}

/* Phiên bản thay thế: Tab kiểu nút bấm trên mobile */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
  }

  .search-tabs .tab-links li {
    width: auto;
    border: none;
    margin-bottom: 8px;
  }

  .search-tabs .tab-links a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9em;
    text-align: center;
  }

  .search-tabs .tab-links li.active a {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
  }
}

/* Phiên bản tab scroll ngang */
@media screen and (max-width: 767px) {
  .search-tabs .tab-links {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Làm mượt cuộn trên iOS */
    scrollbar-width: none; /* Ẩn thanh cuộn trên Firefox */
    -ms-overflow-style: none; /* Ẩn thanh cuộn trên IE/Edge */
    padding-bottom: 5px;
    justify-content: flex-start;
  }

  .search-tabs .tab-links::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên Chrome/Safari */
  }

  .search-tabs .tab-links li {
    flex: 0 0 auto;
    width: auto;
    border: none;
  }

  .search-tabs .tab-links a {
    padding: 10px 15px;
    white-space: nowrap;
    text-align: center;
  }

  .search-tabs .tab-links li.active a {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
  }
}

.tab-links li.active a {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab {
  display: none;
  padding: 1.5em 0;
}

.tab.active {
  display: block;
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-item {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5em;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item .search-item-inner {
  display: flex;
  text-decoration: none;
  color: inherit;
  gap: 1em;
}

.search-thumbnail {
  flex: 0 0 150px;
}

.search-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.search-content {
  flex: 1;
}

.search-content h3 {
  margin: 0 0 0.5em;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.search-content p {
  margin: 0 0 0.5em;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.search-content .button-wrapper {
  justify-content: flex-start;
}
.search-content .button-wrapper .btn-pri,
.search-content .button-wrapper .btn-sec {
  max-width: 150px;
}
@media (max-width: 410px) {
  .search-content .button-wrapper {
    flex-direction: column;
  }
}
.post-date {
  font-size: 0.9em;
  color: #999;
}

.no-results {
  text-align: center;
  padding: 2em;
  background: #f8f8f8;
  border-radius: 4px;
}

.pagination-wrapper {
  margin-top: 2em;
  text-align: center;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-top: 2em;
}

.custom-pagination a,
.custom-pagination span {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
}

.custom-pagination a:hover {
  background-color: #f5f5f5;
}

.custom-pagination .current-page {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.custom-pagination .dots {
  border: none;
  padding: 0 0.5em;
}

.pagination-prev,
.pagination-next {
  font-weight: bold;
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.absolute-footer {
  display: none;
}
#footer > .section {
  padding: 34px 0 14px;
}
#footer .section-content > .row {
  align-items: flex-start;
}
#footer .section-content > .row > .col:not(.no-padding-bottom) {
  padding-bottom: 16px;
}
#footer .section-content > .row > .col:first-child .img {
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
#footer .section-content > .row > .col:first-child p {
  margin-bottom: 18px;
}
#footer h3 {
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
#footer p {
  color: rgba(216, 229, 229, 0.82) !important;
  line-height: 1.7;
}
.myicon-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.myicon-box-content {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}
#footer .myicon-box-content span:nth-child(2) {
  font-weight: 600;
  color: #ffffff;
}
.myicon-box .icon {
  width: 40px;
  height: 40px;
  background-color: rgba(30, 138, 138, 0.22);
  border: 1px solid rgba(216, 229, 229, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.myicon-box .icon img {
  width: 18px;
  height: 18px;
}
#footer ul li {
  list-style: none;
  margin-left: 0px;
  margin-bottom: 9px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#footer ul li a {
  color: #D8E5E5;
}
#footer ul li::before {
  content: "≫";
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
  color: #1E8A8A;
  transition: all 0.3s ease;
}
#footer ul li:hover {
  background: rgba(30, 138, 138, 0.2);
  transform: translateX(5px);
  border-radius: 3px;
  padding-left: 10px;
}
#footer ul li:hover::before {
  transform: translateX(3px);
}
.social-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1E8A8A;
  border: 1px solid rgba(12, 30, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px rgba(12, 30, 33, 0.18);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}
#footer .is-divider {
  margin: 20px 0 14px;
  background-color: rgba(216, 229, 229, 0.22) !important;
  opacity: 1;
}
.page-sign {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.page-sign p {
  margin-bottom: 0px;
  color: rgba(216, 229, 229, 0.7) !important;
}
@media (max-width: 549px) {
  #footer > .section {
    padding: 28px 0 12px;
  }
  #footer .section-content > .row > .col:first-child .img {
    max-width: 170px;
  }
}
#error-page p, #error-page .wp-die-message {
	display: none;
}
.hib_human-resource__card--cta .hib_human-resource__card-title {
	display:none;
}
.banner-image-shape-two {
    display: none !important;
}
.hib-profile-feature-icon {
	display: none !important;
}

/*--------------------------------------------------------------
# STICKY QUICK ACTIONS
--------------------------------------------------------------*/
.hib-sticky-actions {
  position: fixed;
  z-index: 98;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(30, 138, 138, 0.16);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(12, 30, 33, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hib-sticky-action {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.hib-sticky-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hib-sticky-action--consult {
  color: #ffffff;
  background: #1E8A8A;
  box-shadow: 0 7px 18px rgba(30, 138, 138, 0.24);
}

.hib-sticky-action--phone {
  color: #ffffff;
  background: #0C1E21;
}

.hib-sticky-action--email {
  color: #0C1E21;
  border-color: rgba(12, 30, 33, 0.12);
  background: #ffffff;
}

.hib-sticky-action--zalo {
  color: #ffffff;
  background: #0168FF;
}

.hib-sticky-action--line {
  color: #ffffff;
  background: #00C600;
}

.hib-sticky-action:hover {
  color: #ffffff;
  transform: translateX(-2px);
  background: #1E8A8A;
  box-shadow: 0 8px 22px rgba(12, 30, 33, 0.2);
}

.hib-sticky-action__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 7px 10px;
  border-radius: 9px;
  color: #ffffff;
  background: #0C1E21;
  box-shadow: 0 8px 24px rgba(12, 30, 33, 0.16);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate(7px, -50%);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.hib-sticky-action:hover .hib-sticky-action__label,
.hib-sticky-action:focus-visible .hib-sticky-action__label {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.hib-sticky-action:focus-visible {
  outline: 3px solid rgba(30, 138, 138, 0.3);
  outline-offset: 3px;
}

@media (max-width: 849px) {
  .hib-sticky-actions {
    top: auto;
    right: 12px;
    bottom: 84px;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .hib-sticky-action {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .hib-sticky-action__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hib-sticky-action,
  .hib-sticky-action__label {
    transition: none;
  }
}

/* Shared character reveal used by every primary section title. */
.hib-title-reveal {
  animation: none !important;
}

.hib-title-reveal .word,
.hib-title-reveal .char {
  display: inline-block;
}

.hib-title-reveal .word {
  white-space: nowrap;
}

/* ==========================================
   TRUSTINA SERVICES - CUSTOM STYLES
   ========================================== */

.trustina-services-page {
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 15px;
  color: #333333;
  font-family: sans-serif;
  box-sizing: border-box;
}

/* Header */
.ts-header {
  text-align: center;
  margin-bottom: 45px;
}

.ts-subtitle {
  font-size: 0.95rem;
  font-weight: bold;
  color: #1f8a8a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.ts-title {
  color: #1f8a8a;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.ts-slogan {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444444;
  font-style: italic;
  margin-bottom: 15px;
}

.ts-description {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555555;
}

/* Grid danh sách dịch vụ */
.ts-services-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 50px;
}

.ts-service-col {
  width: 50%;
  padding: 0 12px;
  box-sizing: border-box;
  margin-bottom: 24px;
  display: flex;
}

.ts-service-card {
  background: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.ts-service-card:hover {
  transform: translateY(-8px) !important;
  border-color: #1f8a8a !important;
  box-shadow: 0 12px 30px rgba(31, 138, 138, 0.2) !important;
}

.ts-service-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f8a8a;
  opacity: 0.85;
  margin-bottom: 10px;
  line-height: 1;
}

.ts-service-heading {
  color: #1f8a8a;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ts-service-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.ts-service-label {
  font-weight: bold;
  color: #1f8a8a;
  font-size: 0.95rem;
  margin-top: auto;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ts-service-list {
  padding-left: 18px;
  margin: 0;
  list-style-type: disc;
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ts-service-list li {
  margin-bottom: 6px;
}

.ts-service-list li:last-child {
  margin-bottom: 0;
}

/* Call To Action Footer */
.ts-cta-section {
  background: linear-gradient(135deg, #114c4c 0%, #1f8a8a 50%, #166262 100%);
  border-radius: 20px;
  padding: 50px 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(31, 138, 138, 0.3);
  box-sizing: border-box;
}

.ts-cta-tagline {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.ts-cta-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased; /* Tối ưu độ mịn nét chữ cho Chrome/Safari */
    -moz-osx-font-smoothing: grayscale;
}

.ts-cta-btn-wrapper {
  display: inline-block;
}

.ts-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #1f8a8a !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased; /* Tối ưu độ mịn nét chữ cho Chrome/Safari */
    -moz-osx-font-smoothing: grayscale;
}

.ts-cta-arrow {
  font-size: 1.2rem;
}

/* Responsive hiển thị 1 cột trên điện thoại */
@media (max-width: 768px) {
  .ts-service-col {
    width: 100%;
  }
}