/* 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 {
  font-family: "Arial Bold MT", "Arial Black", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: transparent;
  -webkit-text-stroke: 0.02rem #cadce8;
  text-stroke: 0.02rem #cadce8;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.hero-sunto-auout {
  font-family: "Arial Bold MT", "Arial Black", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: transparent;
  -webkit-text-stroke: 0.02rem #dbf0fe;
  text-stroke: 0.02rem #dbf0fe;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.hero-tagline {
  font-size: 0.3rem;
  line-height: 0.3rem;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: 0.45rem;
  opacity: 0.95;
  text-transform: capitalize;
}

.hero-btn {
  display: inline-block;
  width: 1.6rem;
  height: 0.45rem;
  line-height: 0.45rem;
  text-align: center;
  background: transparent;
  border: 0.02rem solid #2c60e2;
  color: #2c60e2;
  text-decoration: none;
  border-radius: 0.225rem;
  font-weight: 600;
  font-size: 0.14rem;
  letter-spacing: 0.01rem;
  transition: all 0.3s;
}

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

/* 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;
}

/* Sections inside background wrapper */
.bg-wrapper-section section {
  position: relative;
  z-index: 1;
}

/* Company Announcement Section */
.announcement-section {
  position: relative;
  z-index: 1;
  padding: 0.6rem 0.8rem;
}

.announcement-title {
  font-size: 0.48rem;
  font-weight: bold;
  color: #2c60e2;
  text-align: center;
  margin-bottom: 0.15rem;
}

.announcement-list {
  max-width: 100%;
  margin: 0 auto 0.3rem;
  margin-top: 0.6rem;
}

.announcement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0;
  border-bottom: 0.01rem solid #e0e0e0;
}

.announcement-item:first-child {
  padding-top: 0;
}
.announcement-item a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.announcement-text {
  font-size: 0.2399rem;
  color: #333;
  margin: 0;
  width: 80%;
  margin-right: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.38rem;
}

.announcement-text:hover {
  color: #2c60e2;
  cursor: pointer;
}

.announcement-date {
  font-size: 0.15rem;
  color: #999;
  flex-shrink: 0;
  text-align: right;
}

.announcement-btn {
  display: block;
  margin: 0 auto;
  padding: 0.1rem 0.3rem;
  background: #2c60e2;
  color: #fff;
  border: none;
  border-radius: 0.2rem;
  font-size: 0.12rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.announcement-btn img {
  width: 0.15rem;
  height: 0.15rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.3rem;
  width: 100%;
}

.pagination-prev,
.pagination-next {
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #D0D0D0;
}



.pagination-prev:hover,
.pagination-next:hover{
  background: #2c60e2;
}

.pagination-next:hover {
  background: #1a4dc7;
}

.pagination-prev img,
.pagination-next img {
  width: 0.12rem;
  height: 0.22rem;
}



.pagination-numbers {
  display: flex;
  gap: 0.15rem;
}

.pagination-number {
  font-size: 0.18rem;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  padding:0 0.2rem;
}

.pagination-number:hover {
  color: #2c60e2;
}

.pagination-number.active {
  color: #2c60e2;
  font-weight: bold;
}

/* Solution Section */
.solution-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.solution-footer-content {
  padding-top: 0.8rem;
  align-self: flex-start;
  width: 100%;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}



.column-title {
  font-size: 0.16rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.15rem;
}

.column-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.column-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.14rem;
  transition: color 0.3s ease;
}

.column-links a:hover {
  color: #2c60e2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.2rem;
  }
}

@media (max-width: 992px) {
  .hero {
    height: 9.2rem !important;
    padding: 0 0.2rem;
  }

  .hero-sunto {
    font-size: 0.48rem !important;
    letter-spacing: 0 !important;
    margin-top: 0.5rem;
  }

  /*....*/
  .hero-content{
      width: 80%;
  }
    .hero-sunto {
        font-size: 0.46rem;
        letter-spacing: 0.05rem;
        margin-top: 2rem;
    }
  .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;
  }

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

  .qa-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: #000;
  }

  header.scrolled .menu-toggle {
    color: #262728;
  }

  .solution-footer-content {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  /* Contact Section */
  .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;
  }

  .form-row .form-input {
    margin-left: 0;
  }


}

@media (max-width: 768px) {
  .announcement-section {
    padding: 0.4rem 0.2rem;
  }

  .announcement-title {
    font-size: 0.48rem;
  }

  .announcement-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
  }

  .announcement-date {
    color: #666;
    font-size: 0.23rem;
  }
}

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

  .solution-footer-content {
    padding-right: 0.15rem;
    padding-left: 0.15rem;
  }

  /* Contact Section */
  .contact-title {
    font-size: 0.24rem;
  }

  .form-input {
    font-size: 0.14rem;
  }

  .contact-btn {
    justify-content: center;
  }
}