.about-us-container {
  background-color: #181952;
  padding: 0 4%;
  box-sizing:border-box;
  position: relative;
  /* overflow: hidden; */
   max-width: 1450px;
  margin: 0 auto;
}

.about-us-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
 
  position: relative;
}

.about-us-image {
  /* flex: 1; */
  position: relative;
  margin-top: -80px;
}

.about-us-image img {
  width: 100%;
  max-width:450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-us-text {
  flex: 1;
  color: white;
  padding-top: 100px;
  box-sizing:border-box
}

.about-us-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}

.about-us-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: white;
  margin-top: 10px;
}

.about-us-description {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
}

.about-us-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: white!important;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.about-us-btn:hover {
  background-color: white;
  color: #181952;
}
.ab-container{
    margin: 100px 0;
    margin-top: 150px;
}
@media (max-width: 768px) {
    .about-us-text{
        padding-top:20px
    }
  .about-us-content {
    flex-direction: column;
  }
  
  .about-us-image {
    margin-top: 0;
  }
  
  .about-us-title {
    font-size: 24px;
  }
  
  .about-us-container {
    padding: 30px 15px;
  }
  .ab-container{
    margin:0;
}
.about-us-description p{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

}


/* Product Center Module */
.product-center-container {
  padding: 80px 20px;
  ;
  box-sizing:border-box;
  background-color: #ffffff;
}

.product-center-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-center-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}

.product-center-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  margin: 0 auto;
  margin-top: 10px;
}

.product-center-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1450px;
  margin: 0 auto;
}

.product-item {
  background: linear-gradient(to bottom, #ffffff, #c6c6c6);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
      padding-top: 25px;
    box-sizing: border-box;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 280px;
  overflow: hidden;
}

.product-image img {
      width: 70%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    display: block;
}

.product-info {
  padding: 30px;
  text-align: center;
}

.product-title {
  font-size: 18px;
  font-weight: bold;
  color: #493b9a;
  margin-bottom: 15px;
  position: relative;
}

.product-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #493b9a;
  margin: 0 auto;
  margin-top: 10px;
}

.product-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #493b9a!important;
  border: 2px solid #493b9a;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.product-btn:hover {
  background-color: #493b9a;
  color: #ffffff!important;
}

@media (max-width: 1024px) {
  .product-center-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-center-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-center-title {
    font-size: 28px;
  }
  
  .product-center-container {
    padding: 60px 15px;
  }
  
  .product-image {
    height: 300px;
  }
  
  .product-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .product-center-grid {
    grid-template-columns: 1fr;
  }
  
  .product-center-title {
    font-size: 24px;
  }
  
  .product-image {
    height: 250px;
  }
}

/* News Module */
.news-container {
  padding: 80px 20px;
  ;
  box-sizing:border-box;
  background-color: #ffffff;
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}

.news-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  margin: 0 auto;
  margin-top: 10px;
}

.news-content {
  display: flex;
  gap: 30px;
  max-width: 1450px;
  margin: 0 auto;
  align-items: stretch;
}

.news-left {
  flex: 2;
  position: relative;
  width: 40%;
}

.news-carousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.news-carousel .swiper-wrapper {
  height: 100%;
}

.news-carousel .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-carousel-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.news-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-carousel-info {
  display: flex;
  flex: 1;
  background-color: #181952;
  color: white;
  /* padding: 20px; */
}

.news-carousel-date {
  flex: 1;
  background-color: #737373;
  color: white;
  padding: 15px;
  text-align: center;
  margin-right: 20px;
}

.news-carousel-date .day {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.news-carousel-date .month-year {
  font-size: 16px;
  margin-top: 5px;
}

.news-carousel-content {
  flex: 3;
  display: flex;
  flex-direction: column;
   padding: 20px; 
   box-sizing:border-box
}

.news-carousel-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height:54px;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-carousel-desc {
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-carousel .swiper-button-prev,
.news-carousel .swiper-button-next {
position: absolute;
    bottom: 10px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #6662b9;
    color: #d8dad7;
    background-image: none;
    font-size: 31px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
}

.news-carousel .swiper-button-prev {
  right: 55px;
}

.news-carousel .swiper-button-next {
  right: 10px;
}

.news-right {
  flex: 3;
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 60%;
}

.news-item {
  flex: 1;
  width: 33.33%;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.news-item:nth-child(1),
.news-item:nth-child(3) {
  background-color: #f1f2f4;
  color: #737373;
}

.news-item:nth-child(2) {
  background-color: #181952;
  color: white;
}

.news-item-date {
  margin-bottom: 15px;
}

.news-item-date .day {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.news-item-date .month-year {
  font-size: 18px;
  margin-top: 3px;
}

.news-item-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .news-content {
    flex-direction: column;
  }
  
  .news-left,
  .news-right {
    width: 100%;
  }
  
  .news-right {
    flex-direction: row;
  }
  
  .news-item {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .news-container {
    padding: 60px 15px;
  }
  .news-item-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
  .news-title {
    font-size: 28px;
  }
  
  .news-right {
    flex-direction: column;
  }
  
  .news-item {
    width: 100%;
  }
  
  .news-carousel-image {
    height: 280px;
  }
  
  .news-carousel-info {
    flex-direction: column;
  }
  
  .news-carousel-date {
    margin-right: 0;
    display:none;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .news-title {
    font-size: 24px;
  }
  
  .news-carousel-image {
    height: 280px;
  }
  
  .news-item {
    padding: 15px;
  }
}

/* Honor Certificate Module */
.honor-container {
  padding: 80px 20px;
  background-color: #ffffff;
      max-width: 1450px;
    margin: 0 auto;
    overflow: hidden;
    ;
    box-sizing:border-box;
}

.honor-header {
  text-align: center;
  margin-bottom: 60px;
}

.honor-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}

.honor-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  margin: 0 auto;
  margin-top: 10px;
}

.honor-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

.honor-carousel .swiper-wrapper {
  align-items: center;
}

.honor-carousel .swiper-slide {
  width: 500px;
  opacity: 0.6;
  transition: all 0.3s ease;
  transform: scale(0.8);
  z-index: 1;
}

.honor-carousel .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.honor-carousel .swiper-slide-next,
.honor-carousel .swiper-slide-prev {
  opacity: 0.8;
  transform: scale(0.9);
  z-index: 1;
}

.honor-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.honor-item img {
  width: 100%;
  height: auto;
  display: block;
}

.honor-carousel .swiper-button-prev,
.honor-carousel .swiper-button-next {
  position: absolute;
  top: -15px;
  width: 40px;
  height: 40px;
  line-height:40px;text-align:center;
  background-image: none;
  border-radius: 8px;
  background-color: #eeeeee;
  color: #000000;
  
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

.honor-carousel .swiper-button-prev {
  right: 60px;
  left:auto;
}

.honor-carousel .swiper-button-next {
  right: 10px;
}

@media (max-width: 768px) {
  .honor-container {
    padding: 60px 15px;
  }
  
  .honor-title {
    font-size: 28px;
  }
  
  .honor-carousel {
    padding: 0 30px;
  }
  
  .honor-carousel .swiper-slide {
    width: 300px;
  }
  
  .honor-carousel .swiper-button-prev,
  .honor-carousel .swiper-button-next {
    width: 30px;
    height: 30px;
    line-height:30px;
    font-size: 14px;
  }
  
  .honor-carousel .swiper-button-prev {
    right: 45px;
  }
  
  .honor-carousel .swiper-button-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .honor-title {
    font-size: 24px;
  }
  
  .honor-carousel .swiper-slide {
    width: 250px;
  }
}

/* Quality Service Module */
.service-container {
  padding: 80px 20px;
  background-color: #ffffff;
      ;
    box-sizing:border-box;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}

.service-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  margin: 0 auto;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1450px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-icon {
  margin-bottom: 30px;
}

.service-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.service-content {
  color: #1c1b45;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  .service-container {
    padding: 60px 15px;
  }
  
  .service-title {
    font-size: 28px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-icon img {
    width: 60px;
    height: 60px;
  }
  
  .service-content {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .service-title {
    font-size: 24px;
  }
  
  .service-icon img {
    width: 50px;
    height: 50px;
  }
}

/* Industry Case Module */
.case-container {
  padding: 80px 20px;
  background-color: #ffffff;
      ;
    box-sizing: border-box;
}

.case-header {
  text-align: center;
  margin-bottom: 60px;
}

.case-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}

.case-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #000000;
  margin: 0 auto;
  margin-top: 10px;
}

.case-carousel {
  position: relative;
  max-width: 1450px;
  overflow:hidden;
  margin: 0 auto;
}

.case-carousel .swiper-wrapper {
  align-items: center;
}

.case-carousel .swiper-slide {
  width: 250px;
  margin-right: 20px;
}

.case-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.case-carousel .swiper-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.case-carousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d1;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-carousel .swiper-pagination-bullet-active {
  background-color: #6662b9;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .case-container {
    padding: 60px 15px;
  }
  
  .case-title {
    font-size: 28px;
  }
  
  .case-carousel .swiper-slide {
    width: 180px;
    margin-right: 15px;
  }
  

}

@media (max-width: 480px) {
  .case-title {
    font-size: 24px;
  }
  
  .case-carousel .swiper-slide {
    width: 150px;
    margin-right: 10px;
  }
  

}

/* Footer Module */
.footer-container {
  background-color: #181952;
  color: white;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}

.footer-nav {
  text-align: right;
  padding: 30px 20px;
  border-bottom: 2px solid #7b7e9d;
  max-width: 1450px;
    margin: 0 auto;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.footer-nav li {
  display: inline-block;
  margin-left: 40px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #d1d1d1;
}

.footer-content {
  padding: 50px 20px;
  max-width: 1450px;
    margin: 0 auto;
  display: flex;
  gap: 40px;
}

.footer-contact {
  flex: 2;
}

.footer-contact h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-contact p {
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-about {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-about h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  align-self: flex-start;
}
.footer-about h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-qr {
  display: flex;
  gap: 20px;
  align-self: flex-start;
  margin-top: auto;
}

.footer-qr img {
  width: 140px;
  object-fit: contain;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
}

.footer-brand h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  text-align: right;
}

.footer-divider {
  height: 2px;
  background-color: #7b7e9d;
  margin: 0 20px;
  max-width: 1450px;
    margin: 0 auto;
}

.footer-copyright {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  max-width: 1450px;
    margin: 0 auto;
  color: #fff;
}
.footer-copyright a{
    color:#fff
}
@media (max-width: 768px) {
  .footer-nav {
    text-align: center;
  }
  
  .footer-nav li {
    margin: 0 15px;
  }
  
  .footer-content {
    flex-direction: column;
    padding: 30px 15px;
  }
  
  .footer-contact,
  .footer-about,
  .footer-brand {
    width: 100%;
  }
  
  .footer-brand {
    align-items: center;
    margin-top: 30px;
  }
  
  .footer-brand p {
    text-align: center;
  }
  
  .footer-qr {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-nav li {
    margin: 0 10px;
  }
  
  .footer-nav a {
    font-size: 12px;
  }
  
  .footer-contact h3,
  .footer-about h3 {
    font-size: 16px;
  }
  
  .footer-brand h3 {
    font-size: 20px;
  }
  
  .footer-qr img {
    width: 80px;
    height: 80px;
  }
}

