/* 平滑滚动到锚点，避免被固定header遮挡 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* 根据sticky header高度调整 */
}

/* Hero 容器需要 relative */
.main-menu-two {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); /* 轻微阴影，和背景图分层 */
}

.main-menu-two .main-menu__list > li > a {
  color: #1f2937; /* 深灰，比纯黑高级 */
}

.main-menu-two .main-menu__list > li > a:hover,
.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li.active > a {
  color: #111827;
}

.main-menu-two .main-menu__list > li > a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 10px;
  height: 2px;
  background: var(--thm-base); /* 你现在的黄色 */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-menu-two .main-menu__list > li > a:hover::after,
.main-menu-two .main-menu__list > li.current > a::after,
.main-menu-two .main-menu__list > li.active > a::after {
  transform: scaleX(1);
}

.main-slider::before {
  display: none;
}

.main-menu-two {
  height: 72px;
}

.main-menu-two-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

.services-one__single {
  height: 100%;
  display: flex;
  flex-direction: column;
  
}

.services-one__img {
  height: 220px;        /* 你可以微调：200–240 都行 */
  overflow: hidden;
  margin-top: 20px;
}

.services-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 裁切而不是拉伸 */
  display: block;
}

.services-one__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-one__text {
  flex-grow: 1;
}

/* 临时止血：强制菜单 ul 显示出来（仅桌面端） */
@media (min-width: 992px) {
  .main-menu__list {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .main-menu__list > li {
    display: block !important;
  }
}

/* 禁用模板把右侧卡片“飘起来”的写法 */
.project-full-width__details,
.project-full-width__details-info {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  height: auto !important;
  overflow: visible !important;
}

/* 右侧卡片常规样式（可选） */
.project-full-width__sidebar .project-full-width__details-info {
  background: #fff;
  padding: 40px 35px;
  border: 1px solid #eee;
}

/* =========================
   About Page (Company Intro)
   ========================= */

/* 整体区块间距 */
.about-page {
  padding: 110px 0;
}

/* 两栏：对齐与间距 */
.about-page__layout {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

/* 让 bootstrap 的 col 生效 */
.about-page__layout > [class*="col-"] {
  flex: 1 1 0;
}

/* Bootstrap 栅格里默认有 padding，这里避免叠加导致不齐 */
.about-page .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* 左侧图片列 */
.about-page .col-xl-6:first-child {
  display: flex;
}

/* 图片容器：定高 + 裁切 + 圆角 + 阴影 */
.about-page .col-xl-6:first-child > div {
  width: 100%;
  height: 760px;             /* 你觉得太高就改 520/480 */
  overflow: hidden;
  /* border-radius: 18px; */
  /* background: #f3f5f7; */
  /* box-shadow: 0 16px 40px rgba(0,0,0,.10); */
}

/* 图片：铺满容器，裁切显示 */
.about-page .col-xl-6:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* 右侧文本列：上下居中不好看，改为顶部开始 */
.about-page__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

/* 标题区 */
.about-page__right .section-title {
  margin-bottom: 22px;
}

.about-page__right .section-title__tagline {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 10px;
  display: inline-block;
}

.about-page__right .section-title__title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

/* 正文排版：更商务、更好读 */
.about-page__right-text {
  font-size: 20px;
  line-height: 1.95;
  color: #4b5563;
  margin-top: 8px;
}

/* 段落间距（如果你正文是多个 <p>） */
.about-page__right-text p {
  margin: 0 0 16px;
}

/* 右侧要点列表（你下面的 list-unstyled about-page__points） */
.about-page__points {
  margin-top: 22px;
  padding: 0;
}

.about-page__points li {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 12px;
}

.about-page__points li .icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 170, 0, .12); /* 主题黄的淡底 */
  flex: 0 0 38px;
}

.about-page__points li .icon span,
.about-page__points li .icon i {
  font-size: 16px;
}

/* 列表文字 */
.about-page__points li .text h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.about-page__points li .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
}

/* =========================
   Responsive
   ========================= */

/* 平板及以下：改为上下堆叠 */
@media (max-width: 991px) {
  .about-page {
    padding: 70px 0;
  }

  .about-page .row {
    flex-direction: column;
    gap: 28px;
  }

  .about-page .col-xl-6:first-child > div {
    height: 380px;
    border-radius: 16px;
  }

  .about-page__right .section-title__title {
    font-size: 30px;
  }
}

/* 手机：文字更紧凑 */
@media (max-width: 575px) {
  .about-page .col-xl-6:first-child > div {
    height: 300px;
  }

  .about-page__right-text {
    font-size: 15px;
    line-height: 1.85;
  }

  .about-page__points li {
    padding: 12px 12px;
  }
}

/* =========================
   About Page - Points 2x2
   ========================= */

.about-page__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 × 2 */
  gap: 20px;
  margin-top: 28px;
  padding: 0;
}

/* 单个卡片 */
.about-page__points li {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid #eee;
  transition: all .25s ease;
}

/* 悬停微交互（高级感） */
.about-page__points li:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

/* 图标 */
.about-page__points li .icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 170, 0, .15); /* 主题黄淡底 */
}

.about-page__points li .icon span,
.about-page__points li .icon i {
  font-size: 16px;
}

/* 文本 */
.about-page__points li .text h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 6px;
  font-weight: 600;
}

.about-page__points li .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* =========================
   Responsive
   ========================= */

/* 平板以下：1 列 */
@media (max-width: 767px) {
  .about-page__points {
    grid-template-columns: 1fr;
  }
}

/* =========================
   公司特色（基于 testimonial-one 改造）
   ========================= */
.company-special .testimonial-one-bg-overly{
  opacity: .3; /* 背景更干净，卡片更突出 */
}



.company-special__lead{
  margin: 16px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.75;
  max-width: 26ch;
}

/* 卡片 */
.company-special__card{
  position: relative;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 22px 24px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  min-height: 220px; /* 统一高度，避免你截图那种“巨空白” */
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.company-special__card::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #182ca7, #03116b);
  opacity: .95;
}

.company-special__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  background: rgba(255,255,255,.98);
}

/* 头部 meta：编号 + 标签 */
.company-special__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.company-special__no{
  font-weight: 800;
  letter-spacing: .06em;
  color: #111;
  font-size: 14px;
  opacity: .7;
}

.company-special__tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 178, 0, .14);
  color: #b35b00;
  font-weight: 600;
}

/* 标题与文案 */
.company-special__title{
  margin: 14px 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

.company-special__text{
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.85;
}

/* 底部 */
.company-special__footer{
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,.06);
  color: #111;
  opacity: .8;
  font-size: 13px;
}

.company-special__arrow{
  font-size: 16px;
}

/* Owl 间距：让卡片不贴边 */
.company-special .owl-theme .owl-stage-outer{
  padding: 6px 4px 14px;
}

/* =========================
   响应式
   ========================= */
@media (max-width: 991px){
  .company-special__lead{ max-width: none; }
  .company-special__card{ min-height: 200px; }
}

/* 1) 让一行 slide 变成 flex，才能统一行高 */
.company-special .owl-stage{
  display: flex;
}

/* 2) 每个 owl-item 也变成 flex，并拉伸 */
.company-special .owl-item{
  display: flex;
  align-items: stretch;
}

/* 3) 让每个 item 里的卡片撑满高度 */
.company-special .owl-item .company-special__card{
  height: 100%;
  min-height: 0;          /* 覆盖你之前的 min-height:220px，避免“空白巨多” */
}

/* 4) 你原本的 padding 没问题，但 stage-outer 的 padding 会影响等高视觉，建议只留底部 */
.company-special .owl-theme .owl-stage-outer{
  padding: 0 4px 14px;
}

/* 1) 非 sticky（白底导航）默认就要黑字 */
.main-menu-two .main-menu__list > li > a{
  color: #111 !important;
}

/* 2) sticky 状态也要黑字（防止被主题覆盖） */
.sticky-header .main-menu__list > li > a{
  color: #111 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 3) hover 才变主题色 */
.main-menu-two .main-menu__list > li > a:hover,
.sticky-header .main-menu__list > li > a:hover{
  color: var(--thm-primary) !important;
  background-color: transparent !important;
}

.counter-one__number{
  display: flex;
  align-items: baseline;
  justify-content: left;
  color: #fff;
}

.counter-one__number .odometer{
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.counter-one__unit{
  font-size: 28px;
  font-weight: 600;
  margin-left: 6px;
  opacity: .9;
}


/* 让两行 grid 的每一格在视觉上等高 */
.swiper-slide{
  height: auto;               /* 让内容决定高度 */
  display: flex;              /* 关键：让内部卡片能撑满 */
}

.partner-logo{
  width: 100%;
  height: 92px;               /* 统一高度：你要更小就改这里 */
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.partner-logo:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.12);
}

.partner-logo img{
  max-height: 100px;           /* 控制 logo 实际显示大小 */
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* grid=2 的时候，swiper-wrapper 会变成多行：给一点上下间距更像“矩阵” */
.swiper-wrapper{
  align-items: stretch;
}


/* 客户 / 供应商 分割线 */
.partner-divider{
    position: relative;
    margin: 48px 0 20px;
    text-align: center;
}

.partner-divider span{
    position: relative;
    padding: 0 18px;
    background: #fff;                 /* 关键：盖住中间的线 */
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 600;
    color: #6b7280;                    /* 灰一点，高级 */
}

.partner-divider::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,.15),
        transparent
    );
}

.partner-divider-line{
    width: 100%;
    height: 4px;
    margin: 40px 0;
    padding-top: 40px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,.12),
        transparent
    );
}


/* 1️⃣ 让这一行等高 */
.location .row {
    display: flex;
    align-items: stretch; /* 关键 */
}

/* 2️⃣ 每一列里的卡片撑满高度 */
.location__single {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 3️⃣ 左侧内容垂直居中（可选，视觉更高级） */
.location__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 4️⃣ 右侧图片撑满并裁切 */
.location__img {
    height: 100%;
}

.location__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* 和左侧统一卡片感 */
}

/* =========================
   Solutions Page Section Divider
   ========================= */
.solution-section-divider {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 80px 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.08) 80%,
        transparent
    );
}

/* Optional: Add a subtle icon or decorative element in the center */
.solution-section-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255, 170, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Responsive: smaller margins on mobile */
@media (max-width: 767px) {
    .solution-section-divider {
        margin: 50px 0;
    }
}

/* =========================
   Language Switcher
   ========================= */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.25s ease, background-color 0.25s ease;
    border-radius: 4px;
}

.lang-btn:hover {
    color: var(--thm-primary);
    background-color: rgba(24, 44, 167, 0.05);
}

.lang-btn.active {
    color: var(--thm-base);
    font-weight: 600;
}

.lang-divider {
    color: #ccc;
    font-size: 12px;
}

/* Mobile language switcher in mobile nav */
@media (max-width: 991px) {
    .lang-switcher {
        margin: 16px 0 0;
        padding: 12px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: center;
    }

    .lang-btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* =========================
   English Language Adjustments
   ========================= */

/* Full screen banner for English */
html[lang="en"] .main-slider .swiper-slide {
    min-height: 100vh !important;
}

/* Larger hero font size for English text */
html[lang="en"] .main-slider .main-slider__content h2,
html[lang="en"] .main-slider-two .main-slider__content h2 {
    font-size: 36px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

@media (max-width: 1199px) {
    html[lang="en"] .main-slider .main-slider__content h2,
    html[lang="en"] .main-slider-two .main-slider__content h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 767px) {
    html[lang="en"] .main-slider .main-slider__content h2,
    html[lang="en"] .main-slider-two .main-slider__content h2 {
        font-size: 26px !important;
    }
}

/* Adjust hero subtitle for English */
html[lang="en"] .main-slider .main-slider__content p,
html[lang="en"] .main-slider-two .main-slider__content p {
    font-size: 15px !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Adjust padding for full screen banner */
html[lang="en"] .main-slider .container {
    padding-top: 200px !important;
    padding-bottom: 100px !important;
}

@media (max-width: 1199px) {
    html[lang="en"] .main-slider .container {
        padding-top: 150px !important;
    }
}

@media (max-width: 767px) {
    html[lang="en"] .main-slider .container {
        padding-top: 120px !important;
    }
}

/* Company section text alignment for English */
/* Left side - left aligned */
html[lang="en"] .welcome-two__text {
    text-align: left !important;
}

html[lang="en"] .welcome-two__left {
    text-align: left !important;
}

html[lang="en"] .section-title__tagline {
    text-align: left !important;
}

html[lang="en"] .section-title__title {
    text-align: left !important;
}

html[lang="en"] .welcome-two__left-bottom {
    text-align: left !important;
}

html[lang="en"] .btn-style-one {
    text-align: left !important;
}

/* Right side - right aligned */
html[lang="en"] .welcome-two__right {
    text-align: right !important;
}

html[lang="en"] .welcome-two__right-img-box {
    text-align: right !important;
}

html[lang="en"] .welcome-two__right-img {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Make three-icon cards equal height for English */
html[lang="en"] .three-icon-container .row {
    display: flex;
    align-items: stretch;
}

html[lang="en"] .three-icon__single {
    height: 100%;
    display: flex;
    flex-direction: column;
}

html[lang="en"] .three-icon__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fix counter text overflow in English - 4th column text too long */
html[lang="en"] .counter-one__text {
    font-size: 16px;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    text-align: left;
    padding: 0 5px;
}

html[lang="en"] .counters-one__box {
    justify-content: center;
}

/* Center "Our Services" section title in English */
html[lang="en"] .services-one .section-title {
    text-align: center !important;
}

html[lang="en"] .services-one .section-title__title {
    text-align: center !important;
}

/* Vertically center page header banner text for services, solutions, introduction, contact pages */
.page-header {
    display: flex;
    align-items: center;
}

.page-header__inner {
    padding-top: 0;
    padding-bottom: 0;
}

/* White icons for header top contact info */
.main-header__top-address .icon {
    color: #fff !important;
}

.main-header__top-address .icon::before {
    color: #fff !important;
}

.main-header__top-address li .icon span {
    color: #fff !important;
}

/* Full screen banner for both Chinese and English */
.main-slider .swiper-slide {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Vertically center slider text */
.main-slider .swiper-slide .container {
    display: flex !important;
    align-items: center !important;
    height: 100%;
}

.main-slider .swiper-slide .row {
    width: 100%;
    display: flex !important;
    align-items: center !important;
}

.main-slider__content {
    text-align: center !important;
    width: 100%;
}

/* Center video section title */
.we-building-two__inner {
    text-align: center;
}

/* Center three-icon text */
.three-icon__text {
    text-align: center;
    margin-left: 0;
}

/* Make three-icon cards equal height */
.three-icon-container .row {
    display: flex;
    align-items: stretch;
}

.three-icon-container .col-xl-4,
.three-icon-container .col-lg-4 {
    display: flex;
}

.three-icon__single {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px 40px;
    min-height: 260px;
}

.three-icon__icon {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.three-icon__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.three-icon__text {
    margin-top: 80px;
}

.three-icon__single:after {
    display: none;
}

/* Counter one icon styles */
.counter-one__icon {
    background-color: #fff;
    border-radius: 50%;
}

.counter-one__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.counter-one__icon:before {
    display: none;
}

/* We build dedicated icon styles */
.we-build__dedicated-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* =====================================================
   Solutions Page - Modern B2B Design
   ===================================================== */

/* Solution Content Wrapper */
.solution-content-wrapper {
    padding: 60px 0;
    position: relative;
}

/* Header Section */
.solution-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Badge */
.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(24, 44, 167, 0.1) 0%, rgba(24, 44, 167, 0.05) 100%);
    border: 1px solid rgba(24, 44, 167, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.solution-badge__dot {
    width: 6px;
    height: 6px;
    background: #182ca7;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.solution-badge__text {
    font-size: 13px;
    font-weight: 600;
    color: #182ca7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Title */
.solution-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Description */
.solution-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a6e;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Grid */
.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Individual Card */
.solution-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(24, 44, 167, 0.08);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #182ca7 0%, #3a4bdb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(24, 44, 167, 0.12);
    border-color: rgba(24, 44, 167, 0.15);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.solution-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-card__icon {
    transform: scale(1.1);
}

/* Card Title */
.solution-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

/* Card Text */
.solution-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a6e;
}

/* Highlight Numbers */
.highlight-number {
    color: #182ca7;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-content-wrapper {
        padding: 40px 0;
    }

    .solution-title {
        font-size: 28px;
    }

    .solution-description {
        font-size: 15px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        padding: 24px 20px;
    }
}

/* Section background */
.project-full-width {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

/* Section Divider Styling */
.solution-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(24, 44, 167, 0.15) 50%, transparent 100%);
    margin: 0;
}

/* Main slider link - make entire slide clickable */
.main-slider__link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
}

.swiper-slide {
    position: relative;
}

/* Footer contact icons - white color */
.footer-widget__contact-list .icon span::before {
    color: #ffffff !important;
}

/* ==================== 移动端Header优化 ==================== */

/* 移动端隐藏桌面导航菜单 */
@media (max-width: 991px) {
  .main-menu-two-wrapper__main-menu .main-menu__list {
    display: none !important;
  }

  .main-menu-two .mobile-nav__toggler {
    display: inline-flex !important;
  }
}

/* 移动端Banner字体优化 */
@media (max-width: 767px) {
  .main-slider h2,
  .main-slider__content h2 {
    font-size: 28px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .main-slider h2,
  .main-slider__content h2 {
    font-size: 24px !important;
    line-height: 1.4 !important;
  }
}

/* 1. 修复Sticky Header溢出 */
@media (max-width: 767px) {
  .stricky-header.main-menu-two {
    padding: 0 20px !important;
  }

  .stricky-header .main-menu__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .stricky-header.main-menu-two {
    padding: 0 30px !important;
  }
}

/* 2. 移动菜单响应式宽度 */
@media (max-width: 480px) {
  .mobile-nav__content {
    width: 85vw;
    max-width: 280px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .mobile-nav__content {
    width: 300px;
  }
}

/* 3. 移动端浮动联系按钮 */
@media (max-width: 767px) {
  .mobile-quick-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-quick-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--thm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(24, 44, 167, 0.3);
    font-size: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .mobile-quick-contact a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(24, 44, 167, 0.4);
  }

  .mobile-quick-contact a:active {
    transform: scale(0.95);
  }
}

@media (min-width: 768px) {
  .mobile-quick-contact {
    display: none;
  }
}

/* 4. 移动端菜单布局重置 */
@media (max-width: 991px) {
  .main-menu-two-wrapper__main-menu {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: auto !important;
    text-align: right;
  }

  .main-menu-two .mobile-nav__toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
  }
}

/* 5. 移动端语言切换器 */
@media (max-width: 991px) {
  .main-header-two__top .lang-switcher {
    display: none;
  }

  .mobile-nav__content .lang-switcher {
    display: flex !important;
    margin: 20px 0 0;
    padding: 16px 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    gap: 12px;
  }

  .mobile-nav__content .lang-btn {
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
  }

  .mobile-nav__content .lang-btn.active {
    background: var(--thm-base);
    color: #111;
    font-weight: 600;
  }

  .mobile-nav__content .lang-divider {
    color: rgba(255, 255, 255, 0.3);
  }
}

/* 6. Logo移动端缩放 */
@media (max-width: 767px) {
  .main-menu-two-wrapper__logo {
    padding: 15px 0 !important;
  }

  .main-menu-two-wrapper__logo img {
    height: 36px !important;
  }

  .main-slider .main-menu-two-wrapper__logo img {
    height: 32px !important;
  }

  .main-slider .main-menu-two-wrapper__logo {
    padding: 12px 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-menu-two-wrapper__logo img {
    height: 42px !important;
  }

  .main-menu-two-wrapper__logo {
    padding: 18px 0 !important;
  }
}

/* 7. 移动菜单 - 简洁白色设计 */
@media (max-width: 991px) {
  /* 移动菜单容器 - 纯白背景 */
  .mobile-nav__content {
    background: #ffffff !important;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }

  /* Logo区域 */
  .mobile-nav__content .logo-box {
    padding: 24px 20px;
    padding-right: 60px; /* 为关闭按钮留出空间 */
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
  }

  .mobile-nav__content .logo-box a {
    display: block;
  }

  .mobile-nav__content .logo-box img {
    height: 32px;
  }

  /* 关闭按钮 - 确保可点击 */
  .mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #374151 !important;
    font-size: 18px;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 100;
  }

  .mobile-nav__close:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
  }

  /* 导航容器 */
  .mobile-nav__container {
    border-top: none;
    border-bottom: none;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
  }

  /* 导航列表 - 强制垂直排列 */
  .mobile-nav__content .main-menu__list {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .mobile-nav__content .main-menu__list > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-nav__content .main-menu__list > li:last-child {
    border-bottom: none;
  }

  .mobile-nav__content .main-menu__list > li > a {
    display: block !important;
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    background: #ffffff !important;
    transition: all 0.2s ease;
    text-decoration: none;
    height: auto !important;
    line-height: 1.5 !important;
  }

  .mobile-nav__content .main-menu__list > li > a:hover,
  .mobile-nav__content .main-menu__list > li.current > a {
    background: #f9fafb !important;
    color: var(--thm-primary) !important;
  }

  /* 下拉菜单展开按钮 */
  .mobile-nav__content .main-menu__list .dropdown > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .mobile-nav__content .main-menu__list .dropdown > a button {
    width: 28px;
    height: 28px;
    background: #f3f4f6 !important;
    border: none;
    border-radius: 4px;
    color: #374151 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .mobile-nav__content .main-menu__list .dropdown > a button.expanded {
    background: var(--thm-primary) !important;
    color: #fff !important;
  }

  /* 子菜单 */
  .mobile-nav__content .main-menu__list ul {
    display: none;
    background: #f9fafb;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #e5e7eb;
  }

  .mobile-nav__content .main-menu__list ul.expanded {
    display: block !important;
  }

  .mobile-nav__content .main-menu__list ul li {
    border-bottom: 1px solid #e5e7eb;
  }

  .mobile-nav__content .main-menu__list ul li:last-child {
    border-bottom: none;
  }

  .mobile-nav__content .main-menu__list ul li a {
    display: block !important;
    padding: 14px 20px 14px 36px !important;
    font-size: 15px !important;
    color: #4b5563 !important;
    background: transparent !important;
    height: auto !important;
    line-height: 1.5 !important;
  }

  .mobile-nav__content .main-menu__list ul li a:hover {
    color: var(--thm-primary) !important;
    background: #f3f4f6 !important;
  }

  /* 语言切换器 - 横向排列 */
  .mobile-nav__content .lang-switcher {
    display: flex !important;
    flex-direction: row !important;
    padding: 20px;
    gap: 12px;
    border: none;
    border-top: 1px solid #f3f4f6;
    margin-top: 10px;
  }

  .mobile-nav__content .lang-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .mobile-nav__content .lang-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
  }

  .mobile-nav__content .lang-btn.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
  }

  .mobile-nav__content .lang-divider {
    display: none;
  }

  /* 联系信息 - 隐藏 */
  .mobile-nav__contact {
    display: none;
  }

  /* 滚动条 */
  .mobile-nav__container::-webkit-scrollbar {
    width: 4px;
  }

  .mobile-nav__container::-webkit-scrollbar-track {
    background: transparent;
  }

  .mobile-nav__container::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
  }
}

/* 8. 超小屏幕优化 (320px-480px) */
@media (max-width: 480px) {
  .main-menu-two {
    padding: 0 15px !important;
    height: 60px !important;
  }

  .main-menu-two-wrapper__logo img {
    height: 30px !important;
  }

  .main-menu-two-wrapper__logo {
    padding: 12px 0 !important;
  }

  .mobile-nav__content .main-menu__list a {
    font-size: 15px;
    padding: 12px 0;
  }

  .mobile-nav__content .main-menu__list ul a {
    font-size: 14px;
    padding: 10px 0 10px 20px;
  }

  .page-header__inner h2 {
    font-size: 28px !important;
    line-height: 38px !important;
  }

  .section-title__title {
    font-size: 24px !important;
    line-height: 34px !important;
  }

  .mobile-quick-contact a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .mobile-quick-contact {
    bottom: 15px;
    right: 15px;
  }
}

/* Footer ICP 备案信息 */
.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
}

.site-footer__icp {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer__icp img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.site-footer__icp a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer__icp a:hover {
  color: var(--thm-base);
}