* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  /* Adjust centering */
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #2c53b3;
  z-index: 1001;
}

.mega-menu .menu-content {
  display: flex;
  padding: 20px;
}

.mega-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mega-menu .menu-links a {
  padding: 10px 15px;
  color: #555;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #2c53b3;
  padding-left: 20px;
}

.mega-menu .menu-featured {
  width: 200px;
  padding-left: 20px;
}

.mega-menu .menu-featured .featured-image {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mega-menu .menu-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .menu-featured .featured-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .3s;
  background: #1e3c8a;
}

.header .container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  background: #1e3c8a !important;
  box-shadow: none !important;
}

.header.scrolled .nav .nav-link {
  color: #fff !important;
}

.header.scrolled .header-right {
  color: #fff !important;
}

.header.scrolled .search-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: transparent !important;
}

.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  flex: 0 0 auto;
}

.header .header-right .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s ease;
}

.header .header-right .search-icon img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease;
}

.header .header-right .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: all .4s ease;
}

.header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
  width: 180px;
  background: rgba(255, 255, 255, 0.3);
}

.header .header-right .search-icon:hover img, .header .header-right .search-icon:focus-within img {
  left: 160px;
  transform: translate(0, -50%);
}

.header .header-right .search-icon:hover input, .header .header-right .search-icon:focus-within input {
  width: 130px;
  opacity: 1;
  padding-right: 30px;
}

.header .header-right .talent-btn {
  display: inline-block;
  width: 104px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  color: #144290;
  font-size: 16px;
  text-decoration: none;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
  flex: 0 0 auto;
}

.logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo .logo-main img {
  height: 48px;
  object-fit: contain;
  display: block;
}

.logo .logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  font-weight: 500;
  margin-left: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 10px 0;
  opacity: .9;
  display: block;
}

.nav .nav-link:hover, .nav .nav-link.active {
  opacity: 1;
}

.nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s;
}

.nav .nav-link:hover::before, .nav .nav-link.active::before {
  width: 30px;
}

.nav .nav-link.nav-talent {
  display: none;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown .dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  flex: 0 0 auto;
  background: none;
  transition: transform .2s ease, top .2s ease;
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
  top: 1px;
}

@media (max-width: 1200px) {
  .nav {
    gap: 28px;
  }
  .header .header-right {
    gap: 14px;
  }
  .header .header-right .talent-btn {
    width: 96px;
    font-size: 15px;
  }
  .header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
    width: 160px;
  }
  .header .header-right .search-icon:hover img, .header .header-right .search-icon:focus-within img {
    left: 140px;
  }
  .header .header-right .search-icon:hover input, .header .header-right .search-icon:focus-within input {
    width: 110px;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #2c53b3;
  z-index: 1001;
  transition: all .3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  text-align: center;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #2c53b3;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  width: 30px;
  height: 21px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all .3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.recruit-hero {
  height: 430px;
  background: url("../images/laowu.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 90px;
}

.recruit-hero .hero-content {
  text-align: center;
  color: #144290;
}

.recruit-hero .hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  margin: 0 0 10px;
}

.recruit-hero .hero-content .subline-en {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.recruit-hero .hero-content .breadcrumb {
  font-size: 20px;
}

.recruit-hero .hero-content .breadcrumb a {
  color: #144290;
}

.recruit-overview {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.recruit-overview .overview-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.recruit-overview .overview-text {
  flex: 1;
}

.recruit-overview .overview-header {
  margin-bottom: 20px;
}

.recruit-overview .overview-header .section-tag {
  font-size: 22px;
  color: #2c53b3;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-left: 40px;
  text-transform: uppercase;
}

.recruit-overview .overview-header .section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #2c53b3;
}

.recruit-overview .overview-header h2 {
  font-size: 48px;
  margin: 8px 0 0;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
}

.recruit-overview .desc {
  color: #6d6d6d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 26px;
  text-align: justify;
}

.recruit-overview .overview-tags {
  display: flex;
  gap: 20px;
}

.recruit-overview .overview-tags .tag-item {
  padding: 8px 28px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1;
}

.recruit-overview .overview-tags .blue {
  background: #dbeafe;
  color: #2563eb;
}

.recruit-overview .overview-tags .green {
  background: #dcfce7;
  color: #16a34a;
}

.recruit-overview .overview-tags .orange {
  background: #ffedd5;
  color: #e65502;
}

.recruit-overview .overview-image {
  flex: 1;
}

.recruit-overview .overview-image img {
  width: 100%;
  border-radius: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 48px;
  color: #000;
  margin: 0 0 10px;
  font-weight: 700;
}

.section-header .subtitle-badge {
  display: inline-block;
  background: #ffc107;
  color: #144290;
  font-size: 22px;
  font-weight: 700;
  padding: 4px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-header .section-desc {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  line-height: 1.6;
}

.feature-highlights {
  height: 766px;
  background: url(../images/beijing3.png) no-repeat center center/cover;
  background-size: cover;
}

.feature-highlights .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-highlights .feature-card {
  margin-top: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 50px 30px;
  transition: .3s;
}

.feature-highlights .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-highlights .feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.feature-highlights .feature-card .icon-wrap.blue {
  background: url(../images/xinchang.png) no-repeat center/cover;
}

.feature-highlights .feature-card .icon-wrap.green {
  background: url(../images/jijie.png) no-repeat center/cover;
}

.feature-highlights .feature-card .icon-wrap.orange {
  background: url(../images/yidi.png) no-repeat center/cover;
}

.feature-highlights .feature-card .icon-wrap.purple {
  background: url(../images/xiaoneng.png) no-repeat center/cover;
}

.feature-highlights .feature-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 700;
}

.feature-highlights .feature-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.core-advantages {
  background: #fff;
}

.core-advantages .adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.core-advantages .adv-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
  height: 130px;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.core-advantages .adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.core-advantages .adv-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: var(--deep-color);
  z-index: 1;
}

.core-advantages .adv-card .adv-left {
  position: relative;
  z-index: 2;
  margin-left: 50px;
  width: 130px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-advantages .adv-card .adv-left .adv-number {
  font-size: 40px;
  font-weight: 800;
  color: #333;
  line-height: 1;
}

.core-advantages .adv-card .adv-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.08);
}

.core-advantages .adv-card .adv-right {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.core-advantages .adv-card .adv-right h3 {
  font-size: 19px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

.core-advantages .adv-card .adv-right p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.core-advantages .adv-card:nth-of-type(1) {
  --deep-color: #FACC42;
  background: #FFF9EB;
}

.core-advantages .adv-card:nth-of-type(2) {
  --deep-color: #92C974;
  background: #F1FAE8;
}

.core-advantages .adv-card:nth-of-type(3) {
  --deep-color: #9AA6C4;
  background: #EEF2F9;
}

.core-advantages .adv-card:nth-of-type(4) {
  --deep-color: #8CCBCB;
  background: #EBF9F9;
}

.process-section {
  background: #fff;
}

.process-section .process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.process-section .process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #E5E5E5;
  transform: translateX(-50%);
}

.process-section .timeline-item {
  display: flex;
  align-items: center;
  width: 50%;
  position: relative;
  margin-bottom: 40px;
}

.process-section .timeline-item:last-child {
  margin-bottom: 0;
}

.process-section .timeline-item .t-content {
  background: #F6F9FC;
  padding: 24px 30px;
  border-radius: 8px;
  flex: 1;
  transition: all .3s;
  display: flex;
  align-items: center;
}

.process-section .timeline-item .t-content .t-text {
  flex: 1;
}

.process-section .timeline-item .t-content .t-num {
  font-size: 24px;
  font-weight: 700;
  color: #144290;
  flex-shrink: 0;
}

.process-section .timeline-item .t-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #333;
}

.process-section .timeline-item .t-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.process-section .timeline-item .t-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #144290;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 5px #fff;
}

.process-section .timeline-item .t-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #144290;
  border-radius: 50%;
  transition: all .3s;
}

.process-section .timeline-item.left {
  padding-right: 50px;
  text-align: right;
  justify-content: flex-end;
}

.process-section .timeline-item.left .t-content {
  flex-direction: row;
}

.process-section .timeline-item.left .t-num {
  margin-left: 25px;
}

.process-section .timeline-item.left .t-dot {
  right: -12px;
}

.process-section .timeline-item.right {
  margin-left: 50%;
  padding-left: 50px;
  text-align: left;
  justify-content: flex-start;
}

.process-section .timeline-item.right .t-content {
  flex-direction: row-reverse;
}

.process-section .timeline-item.right .t-num {
  margin-right: 25px;
}

.process-section .timeline-item.right .t-dot {
  left: -12px;
}

.process-section .timeline-item:hover .t-content {
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 66, 144, 0.08);
  transform: translateY(-2px);
}

.process-section .timeline-item:hover .t-dot {
  background: #144290;
}

.process-section .timeline-item:hover .t-dot::after {
  background: #fff;
  transform: translate(-50%, -50%) scale(0.8);
}

.difference-section {
  background: #fff;
}

.difference-section .diff-container {
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}

.difference-section .diff-mobile-table {
  display: none;
}

.difference-section .diff-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.difference-section .diff-sidebar .diff-header {
  height: 90px;
  background: #6ba3ea;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.difference-section .diff-sidebar .diff-list .diff-item {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  border-bottom: 1px solid #f5f5f5;
}

.difference-section .diff-sidebar .diff-list .diff-item:last-child {
  border-bottom: none;
}

.difference-section .diff-content {
  background: #F2F8FF;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: -10px 10px 40px rgba(20, 66, 144, 0.15);
  margin-left: 280px;
}

.difference-section .diff-content .diff-table-header {
  display: flex;
  height: 90px;
  background: #4B85E6;
  box-sizing: border-box;
  padding-top: 20px;
  padding-left: 40px;
}

.difference-section .diff-content .diff-table-header .col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.difference-section .diff-content .diff-table-body .row {
  display: flex;
  height: 70px;
  border-bottom: 1px solid rgba(20, 66, 144, 0.05);
  padding-left: 40px;
  transition: background-color 0.3s;
}

.difference-section .diff-content .diff-table-body .row:last-child {
  border-bottom: none;
}

.difference-section .diff-content .diff-table-body .row:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.difference-section .diff-content .diff-table-body .row .col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
}

.difference-section .diff-content .diff-table-body .row .col.highlight {
  color: #144290;
  font-weight: 600;
}

.difference-section .diff-content .diff-table-body .row .col.strong {
  color: #144290;
  font-weight: 800;
  font-size: 18px;
}

.cases-section {
  background: #3b5998;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cases-section .section-header {
  margin-bottom: 50px;
}

.cases-section .section-header h2 {
  color: #fff;
  margin-bottom: 10px;
}

.cases-section .section-header .subtitle-badge {
  background: #FFD045;
  color: #144290;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
}

.cases-section .section-header .section-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 15px;
}

.cases-section .case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.cases-section .case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #333;
  transition: transform 0.3s;
}

.cases-section .case-card:hover {
  transform: translateY(-5px);
}

.cases-section .case-head {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
}

.cases-section .case-head .case-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin-right: 15px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.cases-section .case-head .case-info .case-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.cases-section .case-head .case-info .case-tags {
  font-size: 13px;
  color: #999;
}

.cases-section .case-body {
  padding: 20px 30px;
  flex: 1;
}

.cases-section .case-body .case-row {
  margin-bottom: 20px;
}

.cases-section .case-body .case-row:last-child {
  margin-bottom: 0;
}

.cases-section .case-body .case-row .case-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cases-section .case-body .case-row .case-label i {
  display: inline-block;
  margin-right: 4px;
}

.cases-section .case-body .case-row .case-label i.icon-flag {
  width: 20px;
  height: 20px;
  background: url(../images/tiaozhan.png) no-repeat;
  background-size: cover;
}

.cases-section .case-body .case-row .case-label i.icon-bulb {
  width: 20px;
  height: 20px;
  background: url(../images/dianzan.png) no-repeat;
  background-size: cover;
}

.cases-section .case-body .case-row .case-label.challenge {
  background: #FFF0E6;
  color: #FF7D40;
  border: 1px solid #FFD9C7;
}

.cases-section .case-body .case-row .case-label.solution {
  background: #E6F1FF;
  color: #144290;
  border: 1px solid #CCE0FF;
}

.cases-section .case-body .case-row p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.cases-section .case-result {
  background: #E9F8EE;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E8B57;
  font-weight: 700;
  font-size: 16px;
}

.cases-section .case-result .check-icon {
  margin-right: 10px;
  font-size: 12px;
  background: url(../images/good.png) no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .cases-section .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Contact Section V2 (Copied from News) */
.contact-section-v2 {
  background: #F3F7FF;
  padding-bottom: 0;
}

.contact-card-v2 {
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: 50px;
  margin-bottom: 100px;
  height: 630px;
  background: #144290;
  padding-left: 80px;
}

.contact-left {
  padding-top: 60px;
  width: 40%;
  background: #144290;
  color: #fff;
  position: relative;
  padding-right: 60px;
}

.contact-left .line-deco {
  width: 40px;
  height: 2px;
  background: #fff;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.contact-left .subtitle-en {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.contact-left h3 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.contact-left .contact-desc {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-left .contact-info-list .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #fff;
}

.contact-left .contact-info-list .c-item .icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-left .contact-info-list .c-item img {
  width: 36px;
  height: 36px;
  border: none;
}

.contact-left .work-hours {
  margin-top: 60px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-right {
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 60px;
  width: 66%;
  background: #DFEAFF;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 50px 50px 50px 50px;
}

.contact-right .simple-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.contact-right .simple-form .form-group {
  margin-bottom: 30px;
}

.contact-right .simple-form .form-group.half {
  flex: 1;
}

.contact-right .simple-form .form-group label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-weight: bold;
}

.contact-right .simple-form .form-group input,
.contact-right .simple-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.contact-right .simple-form .form-group input::placeholder,
.contact-right .simple-form .form-group textarea::placeholder {
  color: #ccc;
}

.contact-right .simple-form .form-group input:focus,
.contact-right .simple-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(26, 60, 142, 0.15);
}

.contact-right .simple-form .form-group textarea {
  resize: none;
  height: 188px;
}

.contact-right .simple-form .form-submit-row {
  text-align: right;
  margin-top: 30px;
}

.contact-right .simple-form .btn-submit {
  background: #1a3c8e;
  color: #fff;
  border: none;
  padding: 10px 50px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(26, 60, 142, 0.2);
  margin-top: 20px;
}

.contact-right .simple-form .btn-submit:hover {
  background: #194BA1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 60, 142, 0.3);
}

.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer .footer-logo {
  font-size: 26px;
  font-weight: 700;
}

.footer .footer-nav {
  display: flex;
  gap: 40px;
}

.footer .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .3s;
}

.footer .footer-nav a:hover, .footer .footer-nav a.active {
  color: #fff;
}

.footer .footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: #144290;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0d2e66;
  transform: translateY(-5px);
}

.wow {
  visibility: hidden;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-play-state: running;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.clipUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 992px) {
  html.no-scroll,
  body.no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .header {
    background: #1e3c8a;
    height: 70px;
    position: relative;
  }
  .header .container {
    height: 70px;
  }
  .logo {
    margin-top: 0;
  }
  .logo .logo-main {
    font-size: 18px;
    padding: 6px 10px;
    gap: 8px;
  }
  .logo .logo-main img {
    height: 48px;
  }
  .logo .logo-sub {
    margin-left: 0;
    line-height: 1.2;
    opacity: .9;
  }
  .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu-btn span {
    background: #fff !important;
  }
  .header-right {
    display: none !important;
  }
  .nav .nav-link.nav-talent {
    display: block;
  }
  .header.scrolled .nav .nav-link {
    color: #333 !important;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    border-top: 1px solid #eee;
    justify-content: flex-start;
    align-items: stretch;
  }
  .header .nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
    color: #333 !important;
    font-size: 15px;
    text-align: left;
    padding-left: 10px;
  }
  .header .nav .nav-link::before {
    display: none;
  }
  .header .nav.open {
    display: flex;
  }
  .dropdown {
    display: block;
    width: 100%;
    height: auto;
  }
  .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .dropdown .dropdown-toggle::after {
    border-right-color: #666;
    border-bottom-color: #666;
    top: 0;
  }
  .dropdown.open .dropdown-toggle::after {
    transform: rotate(-135deg);
    top: 2px;
  }
  .dropdown .dropdown-menu,
  .dropdown .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    padding: 0;
    transform: none;
  }
  .dropdown .dropdown-menu .menu-content,
  .dropdown .mega-menu .menu-content {
    padding: 0;
    display: block;
    width: 100%;
  }
  .dropdown .dropdown-menu .menu-links,
  .dropdown .mega-menu .menu-links {
    border: none;
    padding: 0;
    display: block;
    width: 100%;
  }
  .dropdown .dropdown-menu .menu-featured,
  .dropdown .mega-menu .menu-featured {
    display: none;
  }
  .dropdown .dropdown-menu a,
  .dropdown .mega-menu a {
    display: block;
    text-align: left;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
  }
  .dropdown .dropdown-menu a:last-child,
  .dropdown .mega-menu a:last-child {
    border-bottom: none;
  }
  .dropdown.open .dropdown-menu,
  .dropdown.open .mega-menu {
    display: block;
  }
  .recruit-hero {
    margin-top: 0;
    height: auto;
    padding: 60px 15px;
  }
  .recruit-hero .hero-content h1 {
    font-size: 32px;
  }
  .recruit-overview {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .recruit-overview .overview-content {
    flex-direction: column;
    gap: 30px;
  }
  .recruit-overview .overview-header {
    text-align: center;
  }
  .recruit-overview .overview-header .section-tag {
    padding-left: 0;
  }
  .recruit-overview .overview-header .section-tag::before {
    display: none;
  }
  .recruit-overview .overview-header h2 {
    font-size: 32px;
  }
  .recruit-overview .desc {
    font-size: 16px;
    line-height: 1.7;
  }
  .recruit-overview .overview-tags {
    flex-wrap: wrap;
    justify-content: center;
  }
  .recruit-overview .overview-tags .tag-item {
    font-size: 14px;
    padding: 8px 18px;
  }
  .section-header {
    margin-bottom: 30px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header .subtitle-badge {
    font-size: 14px;
  }
  .section-header .section-desc {
    font-size: 14px;
    margin-top: 12px;
  }
  .feature-highlights {
    height: auto;
    padding: 50px 0;
  }
  .feature-highlights .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .feature-highlights .feature-card {
    margin-top: 0;
    padding: 24px 18px;
  }
  .feature-highlights .feature-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .feature-highlights .feature-card h3 {
    font-size: 16px;
  }
  .feature-highlights .feature-card p {
    font-size: 13px;
  }
  .core-advantages .adv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .core-advantages .adv-card {
    height: auto;
  }
  .core-advantages .adv-card::before {
    width: 24px;
  }
  .core-advantages .adv-card .adv-left {
    margin-left: 24px;
    width: 92px;
  }
  .core-advantages .adv-card .adv-left .adv-number {
    font-size: 32px;
  }
  .core-advantages .adv-card .adv-left::after {
    height: 36px;
  }
  .core-advantages .adv-card .adv-right {
    padding: 16px;
  }
  .core-advantages .adv-card .adv-right h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .core-advantages .adv-card .adv-right p {
    font-size: 13px;
  }
  .process-section .process-timeline {
    margin: 30px auto 0;
  }
  .process-section .process-timeline::before {
    left: 12px;
    transform: none;
  }
  .process-section .timeline-item {
    width: 100%;
    margin-left: 0;
    padding-left: 44px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .process-section .timeline-item .t-dot {
    left: 0;
    right: auto;
  }
  .process-section .timeline-item.left .t-dot,
  .process-section .timeline-item.right .t-dot {
    left: 0;
    right: auto;
  }
  .process-section .timeline-item .t-content {
    flex-direction: row;
    padding: 18px 16px;
  }
  .process-section .timeline-item .t-num {
    margin: 0 0 0 16px;
  }
  .process-section .timeline-item h4 {
    font-size: 16px;
  }
  .process-section .timeline-item p {
    font-size: 13px;
  }
  .process-section .timeline-item.right {
    margin-left: 0;
    padding-left: 44px;
  }
  .process-section .timeline-item.left {
    padding-right: 0;
    justify-content: flex-start;
  }
  .difference-section .diff-container {
    display: none;
  }
  .difference-section .diff-mobile-table {
    display: block;
    margin: 30px auto 0;
    background: #F2F8FF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 66, 144, 0.15);
  }
  .difference-section .diff-m-head {
    display: grid;
    grid-template-columns: 96px 1fr 1fr;
  }
  .difference-section .diff-m-head .cell {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
  }
  .difference-section .diff-m-head .cell.item {
    background: #6ba3ea;
  }
  .difference-section .diff-m-head .cell.rpo, .difference-section .diff-m-head .cell.labor {
    background: #4B85E6;
  }
  .difference-section .diff-m-body {
    background: rgba(255, 255, 255, 0.6);
  }
  .difference-section .diff-m-body .diff-m-row {
    display: grid;
    grid-template-columns: 96px 1fr 1fr;
    min-height: 64px;
    border-bottom: 1px solid rgba(20, 66, 144, 0.08);
  }
  .difference-section .diff-m-body .diff-m-row:last-child {
    border-bottom: none;
  }
  .difference-section .diff-m-body .cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    word-break: break-word;
  }
  .difference-section .diff-m-body .cell.item {
    color: #144290;
    font-weight: 800;
  }
  .difference-section .diff-m-body .cell.highlight {
    color: #144290;
    font-weight: 700;
  }
  .difference-section .diff-m-body .cell.strong {
    color: #144290;
    font-weight: 900;
    font-size: 14px;
  }
  .cases-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cases-section .case-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cases-section .case-head {
    padding: 18px 18px 14px;
  }
  .cases-section .case-head .case-logo {
    width: 44px;
    height: 44px;
  }
  .cases-section .case-head .case-info .case-name {
    font-size: 16px;
  }
  .cases-section .case-body {
    padding: 16px 18px;
  }
  .cases-section .case-body .case-row {
    margin-bottom: 14px;
  }
  .cases-section .case-body .case-row .case-label {
    font-size: 13px;
  }
  .cases-section .case-result {
    padding: 14px 18px;
    font-size: 14px;
  }
  .cases-section .case-result span {
    line-height: 1.5;
  }
  /* Contact Mobile Styles */
  .contact-card-v2 {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 15px 30px 15px;
    height: auto !important;
    display: flex;
    flex-direction: column;
    padding-left: 0 !important;
    top: 0;
    background: #fff;
  }
  .contact-left {
    border-radius: 20px 20px 0 0;
    padding: 40px 20px;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .contact-left .line-deco {
    display: none;
  }
  .contact-right {
    width: 100%;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }
  .contact-right .simple-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact-right .simple-form .form-group {
    margin-bottom: 20px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-top .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .feature-highlights .feature-grid {
    grid-template-columns: 1fr;
  }
  .process-section .timeline-item {
    padding-left: 40px;
  }
  .difference-section .diff-m-head {
    grid-template-columns: 84px 1fr 1fr;
  }
  .difference-section .diff-m-head .cell {
    height: 58px;
    font-size: 14px;
  }
  .difference-section .diff-m-body .diff-m-row {
    grid-template-columns: 84px 1fr 1fr;
    min-height: 60px;
  }
  .difference-section .diff-m-body .cell {
    padding: 10px 8px;
    font-size: 12px;
  }
  .difference-section .diff-m-body .cell.strong {
    font-size: 13px;
  }
}
