.container {
  width: 100%;
  max-width: 1300px;
  position: relative;
  padding-right: calc(var(1.5rem) * .5);
  padding-left: calc(var(1.5rem) * .5);
  margin-right: auto;
  margin-left: auto;
}
.container_nav {
  max-width: 1500px;
}
.navbar {
  height: 90px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #30373F;
  transition: background-color 0.8s ease;
}
.navbar-scrolled {
  background-color: #30373F !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-mobile-open {
  background-color: #30373F !important;
}
.navbar-brand img {
  max-height: 50px;
}
.nav-link {
  color: #FFFFFF !important;
  margin: 0 0.2rem;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 90px;
  position: relative;
}
.nav-link:hover {
  text-decoration: none;
}
.nav-link em {
  display: block;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.5s ease;
  margin: 0;
  font-style: normal;
}
.nav-link:hover em {
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.pq-submenu-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
  margin-top: 2px;
}
.dropdown-menu {
  position: absolute;
  top: 90px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 0;
  border-radius: 2px;
  padding: 0;
  font-weight: 600;
}
.dropdown-item {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 50px;
}
.dropdown-item:hover {
  background-color: #e6af5d;
  color: #ffffff;
  text-decoration: none;
}
.navbar-toggler {
  border: none;
  outline: none;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.quote {
  float: right;
  margin-left: 80px;
}
.quote a {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #e6af5d;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 2;
  font-size: 16px;
  padding: 0 24px;
  position: relative;
  border-radius: 2px;
  transition: all 0.2s ease;
  overflow: hidden;
  text-decoration: none;
}
.quote a span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease-out;
}
.quote a:hover {
  text-decoration: none;
  transition: transform 0.2s ease;
}
.quote .fa-chevron-right {
  margin-left: 12px;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  line-height: 1;
}
.quote a:hover {
  text-decoration: none;
  justify-content: center;
}
.quote a:hover span {
  transform: translateX(10px);
}
.quote a:hover .fa-chevron-right {
  transform: translateX(20px);
  opacity: 0;
}
.navbar-toggler-icon {
  display: none !important;
}
.toggle-icon {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.toggle-icon span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.toggle-icon span:nth-child(1) {
  top: 0;
}
.toggle-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.toggle-icon span:nth-child(3) {
  bottom: 0;
}
.toggle-icon.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.toggle-icon.active span:nth-child(2) {
  opacity: 0;
}
.toggle-icon.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown-menu {
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-mobile-open {
    background-color: transparent !important;
  }
}
@media (max-width: 991.98px) {
  .quote {
    display: none;
  }
  .navbar {
    height: auto;
    padding: 0.5rem 1rem;
  }
  .nav-link {
    height: auto;
    padding: 0.8rem 0;
    justify-content: flex-start;
  }
  .nav-link em {
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
  }
  .nav-link:hover em {
    width: 20px;
    left: 0;
    transform: none;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .dropdown-item {
    color: #fff !important;
    padding: 0.5rem 1rem;
  }
  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
  }
  .navbar-collapse {
    margin-top: 0.5rem;
  }
  .navbar-brand img {
    max-width: 200px;
  }
}
.dropdown-toggle::after {
  display: none !important;
}
.banner {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  background: url("../images/banner.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.carousel-inner {
  height: 100%;
  touch-action: pan-x;
}
.carousel-item {
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 80%;
  max-width: 1400px;
  min-width: 300px;
  padding: 20px 40px;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .banner-content {
    pointer-events: auto;
  }
  .banner-content .readmore {
    pointer-events: auto;
  }
}
.banner-content .readmore {
  position: absolute;
  width: 180px;
  height: 56px;
  line-height: 56px;
  left: 40px;
  bottom: 50px;
}
.banner-content .readmore-img2{
  left: 50%; 
  margin-left: -90px;
  bottom: 50px;
}
.banner-content .readmore a {
  display: block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: #e6af5d;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.banner-content .readmore a:hover {
  text-decoration: none;
  background: #30373f;
}
.banner-text {
  flex: 1;
  text-align: left;
}
.banner-text h1, .banner-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #30373F;
}
.banner-text p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  color: #333333;
}
.banner-img {
  flex: 0 0 650px;
}
.banner-img2 {
  flex: 0 0 550px;
  max-width: 350px;
  max-height: 420px;
  overflow: hidden;
  margin-right: 120px;
  margin-left: 60px;
}
.banner-img img {
  width: 100%;
  height: auto;
}
.banner-content.reverse-layout {
  flex-direction: row-reverse;
}
@media (max-width: 991.98px) {
  .banner-content.reverse-layout {
    flex-direction: column;
  }
  .banner-text {
    text-align: center;
  }
  .banner-text h2 br {
    display: none;
  }
}
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  gap: 12px;
  z-index: 15;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cecece;
  border: none;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: #e6af5d;
  width: 30px;
  border-radius: 6px;
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
  z-index: 15;
  border: none;
}
.carousel-control-prev {
  left: 30px;
}
.carousel-control-next {
  right: 30px;
}
.carousel-control-prev:hover, .carousel-control-next:hover {}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 200px;
  height: 200px;
  background-size: 100%;
  background-image: none;
}
.carousel-control-prev-icon::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e6af5d;
  font-size: 40px;
}
.carousel-control-next-icon::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e6af5d;
  font-size: 40px;
}
@media (max-width: 991.98px) {
  .banner {
    min-height: 400px;
    height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .banner-content {
    flex-direction: column;
    gap: 20px;
    touch-action: pan-y;
    pointer-events: auto;
  }
  .carousel-inner {
    touch-action: pan-x pan-y;
  }
  .banner-content .readmore {
    pointer-events: auto;
    position: absolute;
    width: 160px;
    height: 50px;
    line-height: 50px;
    left: 50%;
    bottom: -65px;
    margin-left: -80px;
  }
  .banner-text h1, .banner-text h2 {
    font-size: 28px;
  }
  .banner-text h1 {
    font-size: 28px;
  }
  .banner-text h2 {
    font-size: 28px;
  }
  .banner-text p {
    font-size: 16px;
  }
  .banner-text p.b2 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .banner-img {
    flex: 0 0 120px;
  }
  .banner-img2 {
    flex: 0 0 300px;
    max-width: 200px;
    max-height: 400px;
    overflow: hidden;
    margin-right: 0;
    margin-left: 0;
  }
  .carousel-indicators {
    bottom: 20px;
  }
  .carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev {
    left: 15px;
  }
  .carousel-control-next {
    right: 15px;
  }
  .carousel-control-prev-icon::before, .carousel-control-next-icon::before {
    font-size: 30px;
  }
  .banner-text {
    text-align: center;
  }
}
.messages {
  background-color: #30373f;
  padding: 0 !important;
  position: relative;
}
.messages:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-messages.png");
  box-sizing: border-box;
}
.products {
  padding: 90px 0;
  background-color: #f9f9f9;
}
.products .container {
  position: relative;
}
.products-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 15px;
}
.products-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #30373F;
  margin: 0;
  text-transform: capitalize;
}
.products-nav {
  display: flex;
  gap: 10px;
}
.products-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e6af5d;
  background-color: #fff;
  color: #e6af5d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  touch-action: manipulation;
}
.products-nav-btn:hover {
  background-color: #e6af5d;
  color: #fff;
}
.products-list-wrap {
  overflow: hidden;
  padding: 0 15px;
  touch-action: pan-x;
}
.products-list {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-item {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.product-img {
  width: 100%;
  height: 280px;
  padding: 30px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-item:hover .product-img img {
  transform: scale(1.05);
}
.product-title {
  padding: 20px 30px 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #30373F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(18px * 1.3 * 3);
}
.product-readmore {
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #e6af5d;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 20px 10px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.product-readmore:hover {
  color: #e6af5d;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .products {
    padding: 60px 0;
  }
  .products-title h2 {
    font-size: 24px;
  }
  .product-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .product-img {
    height: 220px;
  }
}
@media (max-width: 575.98px) {
  .product-item {
    flex: 0 0 100%;
  }
  .product-img {
    height: 280px;
    padding: 10px;
  }
  .products-nav {
    gap: 5px;
  }
  .products-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.about-section {
  padding: 80px 0;
  background-color: #fff;
}
.about-section .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.section-subtitle {
  color: #e6af5d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.section-title {
  color: #30373F;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.about-list li {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
.about-list li i.fa-angle-right {
  color: #e6af5d;
  margin-right: 10px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  .about-content {
    gap: 30px;
  }
  .section-title {
    font-size: 28px;
    text-align: center;
  }
  .section-title br {
    display: none;
  }
}
.function, .function-lm1390, .function-wfc1390 {
  padding: 80px 0;
  position: relative;
}
.function {
  background-color: #fff;
}
.function-lm1390 {
  background-color: #f9f9f9;
}
.function-wfc1390 {
  background-color: #fff;
}
.function .container, .function-lm1390 .container, .function-wfc1390 .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.function-left, .function-lm1390 .function-left, .function-wfc1390-left {
  padding: 0 20px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
}
.section-subtitle {
  color: #e6af5d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}
.section-title {
  color: #30373F;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.section-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.function-btn, .function-lm1390 .function-btn, .function-wfc1390-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #cecece;
  cursor: pointer;
  gap: 10px;
  background: #ffffff;
}
.function-btn img, .function-lm1390 .function-btn img, .function-wfc1390-btn img {
  width: 120px;
}
.function-btn:hover, .function-lm1390 .function-btn:hover, .function-wfc1390-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.function-right, .function-lm1390 .function-right, .function-wfc1390-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.function-card, .function-lm1390 .function-card, .function-wfc1390-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 0;
}
.function-card {
  background-color: #f9f7f5;
}
.function-lm1390 .function-card {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.function-wfc1390-card {
  background-color: #f9f7f5;
}
.function-card-img, .function-lm1390 .function-card-img, .function-wfc1390-card-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.function-card-img img, .function-lm1390 .function-card-img img, .function-wfc1390-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.function-card-content h3, .function-lm1390 .function-card-content h3, .function-wfc1390-card-content h3 {
  color: #30373F;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
}
.function-card-content p, .function-lm1390 .function-card-content p, .function-wfc1390-card-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.video-modal, .video-modal-wfc1390 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.video-modal.active, .video-modal-wfc1390.active {
  opacity: 1;
  visibility: visible;
}
.video-modal-content, .video-modal-wfc1390-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.video-modal.active .video-modal-content, .video-modal-wfc1390.active .video-modal-wfc1390-content {
  transform: scale(1);
}
.modal-inner-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: auto;
  height: auto;
  padding: 8px;
  border: none;
  background: transparent !important;
  color: #ffffff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 15;
}
.video-modal iframe, .video-modal-wfc1390 iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.function .section-subtitle img {
  width: 180px;
}
.function-lm1390 .section-subtitle img {
  width: 280px;
}
.function-wfc1390 .section-subtitle img {
  width: 360px;
}
.function-lm1390 .function-right {
  gap: 40px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .function, .function-lm1390, .function-wfc1390 {
    padding: 50px 0;
  }
  .function .container, .function-lm1390 .container, .function-wfc1390 .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .function-left, .function-lm1390 .function-left, .function-wfc1390-left {
    position: static;
    top: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .function .section-subtitle, .function-lm1390 .section-subtitle, .function-wfc1390 .section-subtitle {
    text-align: center;
  }
  .section-title {
    font-size: 28px;
  }
  .function-btn, .function-lm1390 .function-btn, .function-wfc1390-btn {
    padding: 10px 25px;
    font-size: 13px;
    display: block;
    margin: 0 auto;
  }
  .function-card, .function-lm1390 .function-card, .function-wfc1390-card {
    flex-direction: row;
    gap: 15px;
    padding: 20px;
  }
  .function-card-img, .function-lm1390 .function-card-img, .function-wfc1390-card-img {
    width: 100px;
    height: 100px;
    margin: 0;
  }
  .video-modal-content, .video-modal-wfc1390-content {
    max-width: 100%;
  }
  .modal-inner-close {
    font-size: 18px;
    top: 10px;
    right: 10px;
    padding: 6px;
  }
  .function-lm1390 .function-right {
    gap: 20px;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .modal-inner-close {
    display: none;
    position: fixed !important;
    top: 30%;
    right: 15px !important;
    z-index: 9999 !important;
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
  }
  .modal-inner-close i {
    color: #000 !important;
    font-size: 20px !important;
  }
  .video-modal, .video-modal-wfc1390 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    z-index: 9998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
  }
  .video-modal-content, .video-modal-wfc1390-content {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
  }
}
.processing {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}
.processing-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
}
.processing-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #30373F;
  margin: 0;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.processing-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #e6af5d;
}
.processing-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px;
}
.processing-card {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.card-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #30373F;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}
.card-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background-color: #e6af5d;
}
.card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #616161;
  margin-bottom: 30px;
  min-height: 77px;
}
.material-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}
.material-item {
  width: calc((100% - 30px) / 3);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.extra-item {
  width: calc((100% - 30px) / 3);
  margin-top: 15px;
  margin-left: calc((100% - (calc((100% - 30px) / 3))) / 2);
}
.material-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.material-mask {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  bottom: 0;
  background-color: rgba(48, 55, 63, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  transition: all 0.4s ease;
  box-sizing: border-box;
  padding: 0 5px;
}
.material-item:hover .material-mask {
  height: 100%;
  background-color: rgba(48, 55, 63, 0.6);
}
@media (max-width: 991.98px) {
  .processing {
    padding: 80px 0;
  }
  .processing-title h2 {
    font-size: 28px;
  }
  .processing-content {
    gap: 20px;
  }
  .processing-card {
    flex: 0 0 100%;
    padding: 30px 20px;
  }
  .material-item {
    width: calc((100% - 30px) / 3);
  }
  .extra-item {
    width: calc((100% - 20px) / 3);
    margin-left: calc((100% - (calc((100% - 20px) / 3))) / 3);
  }
  .card-subtitle {
    font-size: 20px;
  }
  .card-desc {
    font-size: 14px;
    min-height: inherit;
  }
  .material-mask {
    height: 25px;
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .processing {
    padding: 60px 0;
  }
  .processing-title {
    margin-bottom: 40px;
  }
  .processing-title h2 {
    font-size: 24px;
  }
  .material-item {
    width: calc((100% - 30px) / 3);
  }
  .extra-item {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.slogan {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 1px;
  overflow: hidden;
  margin: 0;
  padding: 140px 0;
  text-align: center;
  width: 100%;
  min-height: 448px;
}
@media (max-width: 768px) {
  .slogan {
    font-size: 22px;
    line-height: 1.8;
    padding: 80px 0;
    min-height: 0px;
  }
}
@media (max-width: 480px) {
  .slogan {
    font-size: 20px;
    line-height: 1.7;
    padding: 60px 15px;
  }
}
@media (max-width: 375px) {
  .slogan {
    font-size: 18px;
    line-height: 1.6;
    padding: 50px 10px;
  }
}
.parameters {
  padding: 100px 0;
  position: relative;
  background: #f9f9f9;
}
.parameters-title {
  margin-bottom: 30px;
  text-align: center;
  padding: 0 15px;
}
.parameters-title h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #30373F;
  margin: 0;
  text-transform: capitalize;
  display: inline-block;
  padding-bottom: 15px;
}
.parameters-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #e6af5d;
}
.parameters-content {
  margin: 0 auto;
  padding: 20px;
  max-width: 1300px;
  width: 100%;
  box-sizing: border-box;
}
.laser-parameter-table {
  width: 100%;
  overflow-x: auto;
}
.laser-parameter-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 500px;
}
.laser-parameter-table thead tr {
  background: linear-gradient(90deg, rgba(24, 27, 33, 0.8), rgba(48, 55, 63, 0.8));
  color: #ffffff;
}
.laser-parameter-table th:nth-child(1), .laser-parameter-table td:nth-child(1) {
  width: 50%;
  word-wrap: break-word;
}
.laser-parameter-table th:nth-child(2), .laser-parameter-table td:nth-child(2) {
  width: 50%;
  word-wrap: break-word;
}
.laser-parameter-table th, .laser-parameter-table td {
  padding: 12px 20px;
  text-align: left;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
}
.laser-parameter-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.laser-parameter-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.laser-parameter-table tbody tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .parameters {
    padding: 60px 0;
  }
  .parameters-title h2 {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .parameters-content {
    padding: 10px;
  }
  .laser-parameter-table th, .laser-parameter-table td {
    padding: 12px 15px;
    font-size: 14px;
  }
  .laser-parameter-table th:nth-child(1), .laser-parameter-table td:nth-child(1) {
    width: 45%;
  }
  .laser-parameter-table th:nth-child(2), .laser-parameter-table td:nth-child(2) {
    width: 55%;
  }
}
@media (max-width: 480px) {
  .parameters-title h2 {
    font-size: 24px;
  }
  .laser-parameter-table th, .laser-parameter-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
  .laser-parameter-table th:nth-child(1), .laser-parameter-table td:nth-child(1) {
    width: 45%;
  }
  .laser-parameter-table th:nth-child(2), .laser-parameter-table td:nth-child(2) {
    width: 55%;
  }
}
.applications {
  padding: 100px 0;
  position: relative;
  background: #ffffff;
}
.applications-title {
  margin-bottom: 30px;
  text-align: center;
  padding: 0 15px;
}
.applications-title h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #30373F;
  margin: 0;
  text-transform: capitalize;
  display: inline-block;
  padding-bottom: 15px;
}
.applications-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #e6af5d;
}
.image-grid-container {
  margin: 0 auto;
  padding: 20px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 15px;
  align-items: stretch;
}
.image-item {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.image-item7 {
  grid-column: 4 / 5;
}
.double-row {
  grid-row: span 2;
}
.image-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
}
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 55, 63, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 80%;
  min-width: 80%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 0 10px;
}
.image-item:hover .image-wrapper {
  transform: scale(1.05);
}
.image-item:hover .image-wrapper::after {
  opacity: 0.8;
}
.image-item:hover .image-text {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .applications {
    padding: 80px 0;
  }
  .applications-title h2 {
    font-size: 24px;
  }
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
  }
  .image-text {
    font-size: 16px;
  }
  .double-row {
    grid-row: span 1;
  }
  .image-item7 {
    grid-column: auto;
    display: none;
  }
}
@media (max-width: 575.98px) {
  .applications {
    padding: 60px 0;
  }
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 100px;
    gap: 10px;
  }
  .double-row {
    grid-row: span 1;
  }
  .image-item7 {
    grid-column: auto;
    display: none;
  }
  .app1 {
    display: block !important;
  }
  .image-text {
    font-size: 12px;
  }
}
.messages .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}
.messages .messleft {
  padding: 150px 90px 140px 15px;
  visibility: visible;
  animation-duration: 1.25s;
  animation-name: fadeInLeft;
  flex: 0 0 auto;
  width: 50%;
  box-sizing: border-box;
}
.messages .messleft .messleft-title {
  margin-bottom: 45px;
}
.messages .messleft .messleft-sub-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #e6af5d;
  letter-spacing: 1px;
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
.messages .messleft .messleft-sub-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  border-bottom: 1px solid #e6af5d;
}
.messages .messleft .messleft-main-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 50px;
  z-index: 9;
  color: #ffffff;
  padding: 0;
  margin: 0 0;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.messages .messleft .messleft-info {
  color: #ffffff;
  position: relative;
}
.messages .messleft .messleft-info-star {
  color: #ffa94d;
  margin-bottom: 15px;
}
.messages .messleft .messleft-info-star .fa-quote-right {
  font-size: 28px;
  line-height: 36px;
  position: absolute;
  right: 0;
  top: 0;
}
.messages .messleft .messleft-info-description {
  margin-bottom: 0;
  width: 95%;
}
.messages .messleft .messleft-info-media {
  margin-top: 30px;
  display: flex;
  position: relative;
  align-items: center;
}
.messages .messleft .messleft-info-media-img {
  margin-right: 15px;
}
.messages .messleft .messleft-info-media-img img {
  display: block;
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.messages .messleft .messleft-info-media-meta .messleft-info-media-meta-title {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}
.messages .messleft .messleft-info-media-meta span {
  color: #e6af5d;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.messages .contact-form {
  flex: 0 0 auto;
  width: 50%;
  visibility: visible;
  animation-name: fadeInRight;
  animation-duration: 1.25s;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 45px;
  background-color: #FFFFFF;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.messages .contact-form .form-title {
  font-weight: 600;
  font-size: 42px;
  line-height: 50px;
  z-index: 9;
  color: #30373f;
  padding: 0;
  margin: 0 0;
  position: relative;
  display: block;
  text-transform: capitalize;
}
.messages .contact-form .form-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 9;
  position: relative;
  margin: 15px 0 0;
  color: #616161;
  margin-bottom: 30px;
}
.messages .message-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}
.messages .message-form .form-group {
  flex: 1;
  min-width: calc(50% - 10px);
}
.messages .message-form .form-group2 {
  flex: 1;
  min-width: calc(50% - 10px);
}
.messages .message-form .form-group-fullwidth {
  flex: 0 0 100% !important;
  min-width: 100% !important;
}
.messages .message-form input {
  background: #f6f4f5;
  border: 1px solid #f6f4f5;
  color: #30373F;
  width: 100%;
  float: none;
  font-size: 16px;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  border-radius: 0;
  -webkit-transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}
.messages .message-form textarea {
  background: #f6f4f5;
  border: 1px solid #f6f4f5;
  color: #30373F;
  width: 100%;
  float: none;
  padding: 10px 15px;
  outline: none;
  -webkit-transition: all 0.5s ease-in-out;
  height: 90px;
  flex: 0 0 100%;
  min-height: 90px;
}
.messages .message-form .privacyError {
  color: #f20e0e;
  font-size: 12px;
  margin-top: 4px;
  width: 100%;
}
.messages .message-form .privacy {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
}
.messages .message-form .privacy_agree {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  cursor: pointer;
}
.messages .message-form .privacy_label {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  flex: 1;
}
.messages .message-form .privacy_label a {
  color: #e6af5d;
  text-decoration: underline;
}
.messages .message-form input:hover, .messages .message-form textarea:hover {
  border: 1px solid #e6af5d;
}
.messages .message-form button {
  margin: 0 auto;
  display: block;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #e6af5d;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 2;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  color: #ffffff;
  fill: #ffffff;
  padding: 12px 24px;
  position: relative;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  letter-spacing: 1px;
}
.messages .message-form button:hover {
  background: #30373f;
}
.messages .message-form .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.messages .message-form .error-tip {
  display: block;
  color: #f20e0e;
  font-size: 12px;
  margin-top: 5px;
  height: 16px;
}
.messages .messleft, .messages .contact-form {
  opacity: 0;
  transition: all 1s ease-out;
}
.messages .messleft {
  transform: translateX(-100px);
}
.messages .contact-form {
  transform: translateX(100px);
}
.messages.animate .messleft, .messages.animate .contact-form {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 991.98px) {
  .messages .container {
    padding: 0 !important;
    margin: 0 auto;
  }
  .messages .messleft, .messages .contact-form {
    width: 100%;
    padding: 30px 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    transform: translateX(0);
    opacity: 1;
  }
  .messages .messleft .messleft-main-title {
    font-size: 30px;
    line-height: 50px;
  }
  .messages .contact-form .form-title {
    font-size: 30px;
  }
  .messages .message-form .form-group, .messages .message-form .form-group2 {
    min-width: 100%;
  }
  .messages .contact-form {
    margin: 0 1.25rem 50px;
    box-sizing: border-box;
    width: calc(100% - 2.5rem);
    max-width: 100%;
  }
}
footer {
  background: #30373f;
  position: relative;
  color: #ffffff;
  padding: 60px 0 30px;
}
footer:before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-messages.png");
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
.footer-logo img {
  max-height: 50px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background-color: #e6af5d;
  color: #ffffff;
  text-decoration: none;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}
.footer-col-1 p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-contact i {
  color: #e6af5d;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #e6af5d;
  text-decoration: none;
  padding-left: 5px;
}
.footer-col-4 address {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.8;
}
.footer-col-4 address span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.footer-col-4 address i {
  color: #e6af5d;
  width: 16px;
}
.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-col {
    min-width: 100%;
  }
  .footer-col h5 {
    font-size: 16px;
  }
  .footer-logo img {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  footer {
    padding: 40px 0 20px;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer-col-2, .footer-col-3 {
    display: none;
  }
  .footer-social a {
    width: 35px;
    height: 35px;
  }
  .footer-copyright p {
    font-size: 12px;
    padding: 0 10px;
  }
}