/* Hero Banner */
.hero {
  height: 8.68rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /*opacity: 0;*/
  transition: opacity 0.7s ease;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 12rem;
  padding: 2.4rem 0.4rem 0;
  margin: 0 auto;
}

.hero-sunto-auout {
  font-family: "Arial Bold MT", "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  /*letter-spacing: 0.02rem;*/
  color: #fff;
  margin-bottom: 0.2rem;
  /* text-transform: uppercase; */
  text-align: center;
  word-wrap: break-word;
}

.hero-sunto-auout .first-letter {
  font-size: 1.5em;
}

/* Background Wrapper Section */
.bg-wrapper-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bg-wrapper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.bg-wrapper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Industry Solutions Section */
.industry-solutions {
  position: relative;
  z-index: 2;
  padding: 0.8rem 0.8rem;
}

.industry-solutions .solutions-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.solutions-left {
  flex: 1;
}

.solutions-title {
  font-size: 0.36rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.solutions-desc {
  font-size: 0.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.2rem;
}

.solutions-features {
  display: flex;
  gap: 0.15rem;
}

.feature-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.15rem;
  padding: 0.2rem 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0.08rem 0.3rem rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 0.6rem;
  height: 0.6rem;
}

.feature-text {
  font-size: 0.24rem;
  font-weight: bold;
  color: #2c60e2;
  text-align: center;
  margin: 0;
  padding-top: 0.3rem;
}

.solutions-right {
  flex: 1;
}

.solutions-image {
  width: 100%;
  border-radius: 0.15rem;
  display: block;
}

/* Application Cases Section */
.application-cases {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0.8rem;
}

.cases-wrapper {
  position: relative;
  border-radius: 0.15rem;
  overflow: hidden;
  height: 7.7rem;
}

.cases-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
   transition: transform 0.3s ease;
}
.cases-wrapper:hover .cases-bg{
  transform: scale(1.05);
}
.cases-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
   height: 100%;
  /* background: linear-gradient(135deg, rgba(44, 96, 226, 0.8) 0%, rgba(26, 74, 158, 0.8) 100%); */
  border-radius: 0.15rem;
}

.cases-title {
  position: relative;
  z-index: 1;
  font-size: 0.48rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0 0 0.4rem 0;
  padding-top: 0.4rem;
  cursor: pointer;
}



.cases-content {
  position: relative;
  z-index: 1;
  padding: 0 0.4rem 0.4rem 0.4rem;
}

.cases-subtitle {
  font-size: 0.48rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 0.1rem 0;
  cursor: pointer;
}



.cases-desc {
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 0.2rem 0;
  cursor: pointer;
  max-width: 6rem;
}



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

.cases-list li {
  font-size: 0.24rem;
  color: #fff;
  padding-left: 0.15rem;
  margin-bottom: 0.08rem;
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.cases-list li:hover {
  transform: scale(1.02);
}

.cases-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.08rem;
  height: 0.08rem;
  background: #fff;
  border-radius: 50%;
}

/* Products Section */
.products-section {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0.8rem;
}

.products-title {
  font-size: 0.36rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 0 0.6rem 0;
}

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.tab-btn {
  font-size: 0.36rem;
  color: #2c60e2;
  background: transparent;
  border: 0.01rem solid #2c60e2;
  border-radius: 0.5rem;
 width: 3rem;
 height: 1rem;
 display: flex;
 justify-content: center;
 align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
   position: relative;
}

.tab-btn.active {
  background: #2c60e2;
  color: #fff;
 
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -0.12rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.12rem solid transparent;
  border-right: 0.12rem solid transparent;
  border-top: 0.12rem solid #2c60e2;
}

.tab-btn:hover {
  background: #2c60e2;
  color: #fff;
}

.tab-btn:hover::after {
  content: "";
  position: absolute;
  bottom: -0.12rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.12rem solid transparent;
  border-right: 0.12rem solid transparent;
  border-top: 0.12rem solid #2c60e2;
}


.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.product-card {
  position: relative;
  border-radius: 0.15rem;
  overflow: hidden;
}

.product-name {
  font-size: 0.3rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 0 0.15rem 0;
}

.product-image-container {
  position: relative;
  width: 100%;
  border-radius: 0.15rem;
  overflow: hidden;
}

.product-bg {
  width: 100%;
  display: block;
}

.product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.product-more-btn {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #2c60e2;
  color: #fff;
  border: none;
  border-radius: 0.3rem;
  padding: 0.08rem 0.2rem;
  font-size: 0.18rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.product-more-btn img {
  width: 0.19rem;
  height: 0.19rem;
}

.product-more-btn:hover {
  background: #1a4a9e;
}

/* Customer Products Section */
.customer-products-section {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0;
}

.customer-products-title {
  font-size: 0.36rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 0 0.3rem 0;
}

.customer-products-slider {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.customer-products-track {
  display: flex;
  transition: transform 0.3s ease;
}

.customer-product-card {
  flex-shrink: 0;
  width: 50vw;
  padding: 0 0.1rem;
  border-radius: 0.15rem;
  overflow: hidden;
}

.customer-product-image {
  width: 100%;
  height: 4.92rem;
  object-fit: cover;
  display: block;
  border-radius: 0.15rem;
overflow: hidden;
}
.customer-product-image img{
      object-fit: cover;
  display: block;
      transition: transform 0.3s ease;
}
.customer-product-image:hover img{
  transform: scale(1.05);
}

.customer-product-desc {
  font-size: 0.24rem;
  color: #333;
  margin: 0.15rem 0 0 0;
  line-height: 1.5;
}

/* Solution Section */

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 0.3rem;
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: #fff;
  }

  .qa-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.2rem;
  }
}

@media (max-width: 768px) {
  .solution-footer-content {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }
}

@media (max-width: 992px) {
  .industry-solutions {
    padding: 0.4rem 0.2rem;
  }

  .industry-solutions .solutions-container {
    flex-direction: column;
    gap: 0.2rem;
  }

  .solutions-features {
    /*flex-direction: column;*/
    gap: 0.23rem;
    margin: 0.5rem 0;
  }
.feature-text{
    font-size: 0.2rem;
}
  .application-cases {
    padding: 0.2rem;
  }

  .cases-title {
    padding-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .cases-content {
    padding: 0 0.2rem 0.2rem 0.2rem;
  }

  .products-section {
    padding: 0.4rem 0.2rem;
  }

  .products-tabs {
    flex-wrap: wrap;
    gap: 0.1rem;
  }

  .tab-btn {
    font-size: 0.18rem;
    padding: 0.08rem 0.15rem;
  }

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

  .customer-products-section {
    padding: 0.4rem 0;
  }

  .customer-product-card {
    width: 50vw;
  }

  .customer-product-image {
    height: 3rem;
  }
}

@media (max-width: 992px) {
  .solutions-section {
    padding: 0.4rem 0.2rem;
    overflow-x: hidden;
  }

  .solutions-grid {
    gap: 0.3rem;
  }

  .solution-card {
    flex-direction: column;
    max-width: 100%;
  }

  .solution-image {
    width: 100%;
  }

  .solution-image img {
    width: 100%;
    height: 2.5rem;
  }

  .solution-content {
    padding: 0.3rem;
  }

  .contact-section-type {
    padding: 0 0.2rem;
  }

  .contact-section {
    flex-direction: column;
    padding: 0.4rem;
    margin-top: 0.5rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 0.3rem;
  }

  .contact-title-col {
    padding-right: 0;
    text-align: center;
  }

  .contact-title {
    font-size: 0.4rem;
    width: 100%;
    text-align: center;
  }

  .contact-arrow-col {
    flex: none;
    padding: 0.2rem 0;
  }

  .contact-arrow {
    width: 0.6rem;
  }

  .contact-form-col {
    padding-left: 0;
    width: 100%;
    gap: 0.2rem;
  }
  .hero{
      height: 9.2rem;
  }
.hero-content{
    padding: 3rem 0.4rem 0 !important;;
}
  .hero-sunto-auout {
    font-size: 0.48rem;
  }

  .cases-wrapper {
    min-height: 100vw;
  }

  .cases-bg {
    height: 100%;
  }
  .cases-subtitle{
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
  }
  .solutions-title{
      padding-top:0.8rem;
      padding-bottom:0.3rem;
  }
}