@import url("base.css");
@import url("header.css");
@import url("footer.css");
@import url("consultation.css");
.container {
  border-top: 1px solid transparent;
  width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  height: 520px;
  background: url("../images/hero-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  text-align: left;
}

/* .hero h1 {
  width: 680px;
  margin-top: 200px;
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: 0em;
  color: #061b1f;
}

.hero p {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  margin-top: 24px;
  font-variation-settings: "opsz" auto;
  color: rgba(6, 27, 31, 0.6);
} */

.hero h1 {
  margin-top: 200px;
  font-size: 56px;
  font-weight: normal;
  line-height: 64px;
  letter-spacing: 0em;
  font-family: Alibaba PuHuiTi 3;
  color: #061b1f;
}

.hero p {
  margin: 24px 0 32px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  color: rgba(3, 13, 13, 0.6);
}
/* Core Functions Section */
.core-functions {
  padding: 80px 0;
  background-color: #f5f7fa; /* Light grey background */
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.core-functions .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.core-functions h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.core-functions .subtitle {
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
}

/* Tabs Styling */
.tabs-wrapper {
  display: flex;
  flex-direction: column;
}

.tab-header {
  display: flex;
  gap: 40px;
  /* border-bottom: 1px solid #e0e0e0; Removed to match UI */
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px; /* Increased size */
  color: #666;
  padding: 10px 0; /* Reduced vertical padding */
  cursor: pointer;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #0056ff;
}

.tab-btn.active {
  color: #0056ff;
  font-weight: bold;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0056ff;
  border-radius: 2px;
}

/* Tab Content Layout */
.tab-content-container {
  position: relative;
  min-height: 400px;
}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.tab-pane.active {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 60px;
  opacity: 1;
}

/* Left Content */
.tab-left {
  flex: 1;
  max-width: 500px;
  padding-top: 10px;
  position: relative;
}

.tab-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.title-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tab-title h3 {
  font-size: 28px; /* Increased size */
  color: #333;
  font-weight: 400;
  margin: 0;
}

.tab-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

/* Dynamic Tab Items Styling */
.tab-item-box {
  margin-bottom: 20px;
}

.tab-item-box:last-child {
  margin-bottom: 0;
}

.tab-item-box h4 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
  font-weight: 500;
}

.tab-item-box p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 8px 12px;
  background-color: #0056ff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0043c5;
}

/* Right Image */
.tab-right {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.tab-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* Removed box-shadow and border-radius to match clean UI */
  transition: transform 0.3s ease;
}

.tab-right img:hover {
  transform: translateY(-5px);
}
/* Technical Highlights Section */
.technical-highlights {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f4f8fb 0%,
    #ffffff 100%
  ); /* Softer gradient background */
}

.technical-highlights h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 60px;
  position: relative;
}

.highlights-grid {
  display: grid; /* Use grid for better alignment */
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.highlight-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%; /* Ensure equal height */
}

.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(24, 24, 245, 0.1);
  border-color: rgba(24, 24, 245, 0.2);
}

.highlight-item .icon-wrapper {
  width: 120px; /* Slightly larger */
  height: 120px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Remove background */
  border-radius: 0; /* Remove border radius */
  padding: 0; /* Remove padding */
  transition: all 0.3s ease;
}

.highlight-item:hover .icon-wrapper {
  background: transparent; /* No background on hover */
  transform: scale(1.1) rotate(5deg); /* Subtle animation */
}

.highlight-item .icon-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.highlight-item h3 {
  font-size: 20px;
  font-weight: 400;
  color: #061b1f;
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 60px; /* Align titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item p {
  font-size: 15px;
  color: rgba(6, 27, 31, 0.7);
  line-height: 26px;
  text-align: justify; /* Justify alignment */
  text-align-last: left; /* Ensure last line aligns left */
}

/* Product Value Section */
.product-value {
  padding: 80px 0;
  background: #fff;
}

.product-value h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #061b1f;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-item.active {
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(24, 24, 245, 0.1);
  border: 1px solid #e6f0ff;
  border-bottom: 4px solid #1818f5;
  position: relative;
}

.value-item .icon-wrapper {
  width: 80px;
  height: 80px;
  margin-right: 24px;
  flex-shrink: 0;
}

.value-item .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-item .text-wrapper h3 {
  font-size: 20px;
  font-weight: 400;
  color: #061b1f;
  margin-bottom: 12px;
}

.value-item.active .text-wrapper h3 {
  color: #1818f5;
}

.value-item .text-wrapper p {
  font-size: 14px;
  color: rgba(6, 27, 31, 0.6);
  line-height: 24px;
}

/* Product Scenarios */
.product-scenarios {
  padding: 80px 0;
  background-color: #061b1f;
  color: #fff;
  text-align: center;
}

.product-scenarios .container {
  overflow: hidden;
  position: relative;
}

.product-scenarios h2 {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2px;
}

.scenarios-slider {
  position: relative;
  padding-bottom: 80px; /* Space for controls */
}

.scenarios-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 248px;
}

.scenarios-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.scenarios-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.scenarios-swiper .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 20px 20px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

/* Navigation Buttons */
.scenarios-slider .swiper-button-prev,
.scenarios-slider .swiper-button-next {
  top: auto;
  bottom: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  svg {
    width: 20px;
    height: 20px;
  }
}

.scenarios-slider .swiper-button-prev:hover,
.scenarios-slider .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.scenarios-slider .swiper-button-prev {
  left: 0;
}

.scenarios-slider .swiper-button-next {
  left: 56px;
}

/* Pagination Progressbar */
.scenarios-slider .swiper-pagination {
  top: auto;
  bottom: 16px;
  left: auto;
  right: 0;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}

.scenarios-slider
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #fff;
}
