.hero-section {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-section .hero-content .hero-text {
  max-width: 600px;
  color: white;
  margin: 0 auto;
}
.hero-section .hero-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  /*text-transform: lowercase;*/
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
.hero-section .hero-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}
.hero-section .cta-button {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  background: #241ce8;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-section .cta-button:hover {
  background: #1a15c4;
  transform: translateY(-2px);
}
.hero-section .hero-contact {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  justify-self: center;
}
.hero-section .hero-contact .contact-icon {
  width: 60px;
  height: 60px;
  background: #241ce8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-contact .contact-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}
.hero-section .hero-contact .contact-email {
  background: #241ce8;
  opacity: 0.68;
  color: white;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-section .hero-contact {
    margin-top: 2rem;
    align-self: center;
  }
}
.insights-section {
  background: #241ce8;
  padding: 4rem 0;
  color: white;
}
.insights-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 28px;
}
.insights-section .section-header .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.insights-section .section-header .insights-language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
}
.insights-section .section-header .insights-language-switcher .insights-lang-current {
  color: white;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 2px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
}
.insights-section .section-header .insights-language-switcher .insights-lang-divider {
  color: rgba(255, 255, 255, 0.5);
}
.insights-section .section-header .insights-language-switcher .insights-lang-option {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px 8px;
}
.insights-section .section-header .insights-language-switcher .insights-lang-option:hover {
  color: white;
}
.insights-section .insights-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .insights-section .insights-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .insights-section .insights-cards-grid {
    grid-template-columns: 1fr;
  }
}
.insights-section .insight-card {
  border-radius: 8px;
  border: 1px solid #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 2rem;
}
.insights-section .insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #fff!important;

}
.insights-section .insight-card:hover .card-image{
    display: block;
}
.insights-section .insight-card:hover .card-content h3{
    display: none;
}
.insights-section .insight-card{
  background: #241ce8;
  color: white;
}
.insights-section .insight-card .card-category{
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 19px;
  color: white;
  margin-bottom: 24px;
}
.insights-section .insight-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insights-section .insight-card .card-content .card-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  margin-bottom: 2rem;
}
.insights-section .insight-card .card-content .card-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}
.insights-section .insight-card .card-content .card-actions .see-update {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.9375rem;
  color: white;
  opacity: 0.9;
}
.insights-section .insight-card .card-content .card-actions .arrow-icon{
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.insights-section .insight-card .card-content .card-actions:hover .arrow-icon{
  opacity: 0.8;
}
.insights-section .insight-card .card-content .card-actions svg {
  display: none;
}
.card-image{
    display: none;
}
.insights-section .insight-card:hover {
  background: white;
  color: #241ce8;
  padding: 2rem;
}
.insights-section .insight-card:hover .card-category .a{
    display: block!important;
}
.insights-section .insight-card:hover .card-category .b{
    display: none!important;
}
.card-category .b{
    display: none;
}
.card-category .a{
    display: block;
}
.insights-section .insight-card:hover  .card-category {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.1875rem;
  color: #241ce8;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.insights-section .insight-card:hover .card-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}
.insights-section .insight-card:hover .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.news-image{
    display: none;
}
.insights-section .insight-card:hover .card-image .image-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.insights-section .insight-card:hover .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.insights-section .insight-card:hover .card-content .card-title {
  display: none;
}
.insights-section .insight-card:hover .card-content .card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.insights-section .insight-card:hover .card-content .card-actions .see-update {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 15px;
  color: #241ce8;
  font-weight: 500;
}
.insights-section .insight-card:hover .active .card-content .card-actions .arrow-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}
.insights-section .insight-card:hover .card-content .card-actions:hover .arrow-icon {
  opacity: 0.8;
}
.insights-section .insight-card:hover .card-content .card-actions svg {
  display: none;
}
.insights-section .news-list-section .news-list-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.insights-section .news-list-section .news-list {
  margin-bottom: 3rem;
}
.insights-section .news-list-section .news-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
  min-height: 80px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.insights-section .news-list-section .news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);

}
.insights-section .news-list-section .news-item:hover .news-image{
   display: block!important;
}
.insights-section .news-list-section .news-item .news-image {
  max-width: 143px;
  max-height: 85px;
  flex-shrink: 0;
  overflow: hidden;
}
.insights-section .news-list-section .news-item .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights-section .news-list-section .news-item .news-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.insights-section .news-list-section .news-item .news-content .news-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  flex: 1;
}
.insights-section .news-list-section .news-item .news-content .news-action {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .insights-section .news-list-section .news-item .news-content .news-action {
    display: none;
  }
}
.insights-section .news-list-section .news-item .news-content .news-action:hover {
  opacity: 0.8;
}
.insights-section .news-list-section .news-item .news-content .news-action .read-story-text {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: white;
  white-space: nowrap;
}
.insights-section .news-list-section .news-item .news-content .news-action .arrow-icon {
  width: 16px;
  height: 16px;
}
.insights-section .news-list-section .news-item.no-image .news-content {
  margin-left: 0;
}
.insights-section .news-list-section .read-more {
  text-align: center;
}
.insights-section .news-list-section .read-more .read-more-btn {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.insights-section .news-list-section .read-more .read-more-btn:hover {
  background: white;
  color: #241ce8;
}
.team-section {
  position: relative;
  background: #f7f7f8;
}
.team-section .team-background {
  padding: 6rem 0 4rem;
  background-image: url('../images/index/bg_professional team.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-bottom: calc(310px + 84px);
}
.team-section .team-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.team-section .team-background .content-part {
  position: relative;
  z-index: 2;
}
.team-section .team-background .section-header {
  text-align: left;
  margin-bottom: 3rem;
}
.team-section .team-background .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.5rem;
}
.team-section .team-background .section-subtitle {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.team-section .team-background .team-description {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 800px;
}
.team-section .team-bottom-placeholder {
  min-height: calc(230px + 68px);
}
.team-section .team-swiper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding-bottom: 68px;
}
.team-section .team-swiper .swiper-wrapper {
  align-items: flex-end;
}
.team-section .team-swiper .swiper-slide {
  height: auto;
  width: auto;
}
.team-section .team-member {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 280px;
}
@media (max-width: 768px) {
  .team-section .team-member {
    width: 100%;
    margin: 0 auto;
  }
}
.team-section .team-member .member-image {
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
.team-section .team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-section .team-member .member-info {
  background: white;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-height: 230px;
  transition: all 0.3s ease;
}
.team-section .team-member .member-info .member-role {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #040327;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.team-section .team-member .member-info .member-name {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #040327;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.team-section .team-member .member-info .member-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.team-section .team-member .member-info .member-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #040327;
  transition: color 0.3s ease;
}
.team-section .team-member .member-info .member-contact .contact-item .contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: background-image 0.3s ease;
}
.team-section .team-member .member-info .member-contact .contact-item .contact-icon.phone-icon {
  background: url('../images/shared/icon_normal_phone.png') no-repeat center;
  background-size: contain;
}
.team-section .team-member .member-info .member-contact .contact-item .contact-icon.email-icon {
  background: url('../images/shared/icon_normal_email.png') no-repeat center;
  background-size: contain;
}
.team-section .team-member .member-info .member-contact .contact-item .contact-icon img {
  display: none;
}
.team-section .team-member .member-info .member-contact .contact-item .contact-text {
  flex: 1;
}
.team-section .swiper-slide-active .member-info .member-name {
  color: #241ce8;
}
.team-section .swiper-slide-active .member-info .member-contact .contact-item .contact-icon.phone-icon {
  background-image: url('../images/shared/icon_selected_phone.png');
}
.team-section .swiper-slide-active .member-info .member-contact .contact-item .contact-icon.email-icon {
  background-image: url('../images/shared/icon_selected_email.png');
}
.team-section .swiper-pagination {
  display: none;
}
.team-section .swiper-button-next,
.team-section .swiper-button-prev {
  display: none;
}
.partners-section {
  background: #000;
}
.partners-section .content-part {
  width: 100%;
  display: flex;
  justify-content: center;
}
.partners-section .partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .partners-section .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners-section .partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: transparent;
}
.partners-section .partner-logo:hover {
  background: #241ce8;
}
.partners-section .partner-logo img {
  width: auto;
  height: 87px;
  object-fit: contain;
  filter: brightness(0.4) contrast(1.2);
  transition: filter 0.3s ease;
}
.partners-section .partner-logo:hover img {
  filter: brightness(1) contrast(1);
}
.cases-section {
  padding: 80px 0 68px;
  background: white;
}
.cases-section .case-featured {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 85px;
}
@media (max-width: 1024px) {
  .cases-section .case-featured {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.cases-section .case-content .section-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 25px;
  color: #040327;
  margin-bottom: 42px;
}
.cases-section .case-content .case-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.3;
  color: #040327;
  margin-bottom: 1.5rem;
  margin-right: 60px;
}
.cases-section .case-content .case-description {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #706f94;
  margin-bottom: 2rem;
}
.cases-section .case-content .case-meta {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cases-section .case-content .case-meta .case-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.cases-section .case-content .case-meta .case-author {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 0.875rem;
  color: #666;
}
.cases-section .case-sidebar {
  display: flex;
  flex-direction: column;
}
.cases-section .case-sidebar .case-related {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cases-section .case-sidebar .related-item {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
.cases-section .case-sidebar .related-item:last-child {
  border-bottom: none;
}
.cases-section .case-sidebar .related-item img {
  width: 172px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}
.cases-section .case-sidebar .related-item .related-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: #241ce8;
  font-weight: bold;
  line-height: 1.4;
  color: #222;
  cursor: pointer;
  transition: color 0.3s ease;
}
.cases-section .case-sidebar .related-item .related-title:hover {
  color: #241ce8;
}
.cases-section .case-sidebar .case-read-more {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .cases-section .case-sidebar .case-read-more {
    margin-left: unset;
    margin: auto;
  }
}
.cases-section .case-sidebar .case-read-more .read-more-btn {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  background: transparent;
  color: #222;
  border: none;
  padding: 0;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cases-section .case-sidebar .case-read-more .read-more-btn .arrow-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.cases-section .case-sidebar .case-read-more .read-more-btn:hover {
  color: #241ce8;
}
.cases-section .case-sidebar .case-read-more .read-more-btn:hover .arrow-icon {
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .insights-section .featured-article {
    flex-direction: column;
  }
  .insights-section .featured-article .article-title {
    font-size: 1.5rem;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .case-featured .case-title {
    font-size: 1.5rem;
  }
}
.nav-link.current {
  color: #241ce8 !important;
}
.nav-link.current::after {
  width: 100% !important;
}
