:root {
  --bg: #e8edf6;
  --text: #0d0d0d;
  --muted: #767676;
  --blue: #1d4ed8;
  --blue-strong: #0a66dd;
  --orange: #f97316;
  --orange-strong: #e86911;
  --dark: #0d0d0d;
  --white: #ffffff;
  --line: rgba(13, 13, 13, 0.08);
  --shadow: 0 12px 40px rgba(13, 13, 13, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  /* font-family: Poppins, Arial, sans-serif; */
  font-family: Poppins;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-section .shell {
  padding: 60px 130px;
}

.shell {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding: 0 130px;
}

.page-main {
  padding-top: 80px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 4px rgba(13, 13, 13, 0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.15);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 66px;

}

.brand img {
  width: 140px;
  height: 100px;
  margin-left: -20px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.36px;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue-strong);
}

.main-nav a.is-active {
  color: var(--blue-strong);
  font-weight: bold;
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 2px;
  background: var(--blue-strong);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 50;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  transition: all 0.3s ease;
}
.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 0.36px;
}

.header-inner .btn-primary {
  background: var(--orange);
}

.header-inner .btn-primary:hover {
  background: var(--orange-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding: 0 24px;
  letter-spacing: 0.32px;
}

.btn-primary {
  color: var(--white);
  background: #1D4ED8;
}

.btn-primary:hover {
  background: #1945C1;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn-outline-light:hover {
  color: var(--blue);
  background: var(--white);
}

.btn-outline-dark {
  color: var(--dark);
  border-color: var(--dark);
  background: transparent;
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--dark);
}

.btn-surface {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.btn-surface:hover {
  background: #f7f9fc;
}

.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
}

.lang-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #5a5a68;
  border-bottom: 2px solid #5a5a68;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 72px;
  padding: 6px 0;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 12px 30px rgba(13, 13, 13, 0.12);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 8px 14px;
  text-align: left;
}

.lang-menu button:hover {
  background: #f6f7fb;
  color: var(--blue-strong);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 750px;
  margin-top: -80px;
}

.hero-media,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.88) 0%,
    rgba(13, 13, 13, 0.6) 58%,
    rgba(13, 13, 13, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 640px;
  gap: 40px;
  align-items: center;
  min-height: 750px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 30px 0 40px;
  /* max-width: 883px; */
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-title {
  margin: 100px 0 0 0;
  font-size: 64px;
  width: 1200px;
  line-height: 1.1;
  font-weight: 600;
  /*text-transform: uppercase;*/
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-title strong {
  display: block;
  color: var(--blue-strong);
}

.hero-title span {
  margin-top: 20px;
  display: block;
  color: var(--white);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.hero-badge {
  margin-top: 50px;
  width: 152px;
  height: 50px;
  object-fit: contain;
}

.hero-product {
  position: relative;
  height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-product img {
  max-height: 600px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-product img.is-transitioning,
.hero-copy.is-transitioning {
  opacity: 0;
  transform: translateX(30px);
}

.hero-dots {
  position: absolute;
  /* You can adjust the horizontal position here */
  left: 50%;
  /* You can adjust the vertical position of the hero dots here */
  /* For example, increase the percentage to move it further down */
  bottom: 25%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dots button,
.hero-dots .swiper-pagination-bullet {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  width: 8px;
  height: 8px;
  padding: 0;
  opacity: 1;
  transition: all 0.2s ease;
}

.hero-dots button.is-active,
.hero-dots .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--orange);
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section {
  position: relative;
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: var(--bg);
}

.section-head {
  margin-bottom: 56px;
  /* text-align: center; */
}

.section-head--left {
  text-align: left;
}

.section-head h2 {
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  width: 1280px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.section-head--with-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.section-head--with-action > div {
  max-width: 1040px;
}

.carousel-wrap {
  position: relative;
}

.carousel-window {
  overflow: hidden;
}

.application-track,
.featured-track {
  display: flex;
  gap: 32px;
  transition: transform 0.45s ease;
}

.application-swiper,
.featured-swiper,
.blog-feature-swiper {
  width: 100%;
}

.about-thumbs-swiper {
  width: 100%;
  max-width: 740px;
  margin: 0;
}

.application-swiper .swiper-wrapper,
.featured-swiper .swiper-wrapper {
  align-items: stretch;
}

.application-swiper .swiper-slide {
  height: auto;
  width: auto;
}

.featured-swiper .swiper-slide {
  height: auto;
  width: auto;
}

.blog-feature-swiper .swiper-slide {
  height: auto;
}

.about-thumbs-swiper .swiper-slide {
  height: auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
}

.carousel-arrow--left {
  left: -22px;
}

.carousel-arrow--right {
  right: -22px;
}

.application-card,
.featured-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  flex: 0 0 auto;
}

.application-card {
  width: 800px;
  height: 450px;
}

.application-card__bg,
.application-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-card__image img {
  position: absolute;
}

.application-card__bg {
  z-index: 1;
}

.application-card__bg,
.featured-card__image img {
  object-fit: cover;
}

.application-card__overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.54) 100%);
  z-index: 10;
}

.application-card__curve {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  z-index: 66;
  object-fit: contain;
  object-position: right;
}

.application-card__device {
  z-index: 166;
  position: absolute;
  right: 30px;
  bottom: 25px;
  width: auto;
  max-width: 46%;
  max-height: 220px;
  object-fit: contain;
}

.application-card p {
  position: absolute;
  left: 40px;
  bottom: 25px;
  text-transform: capitalize;
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
  z-index: 200;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.section-actions--left {
  justify-content: flex-start;
}

.section-actions--center {
  justify-content: center;
}

.featured-card {
  width: 370px;
  height: 400px;
  min-height: 400px;
  background: var(--white);
  cursor: pointer;
}

.featured-card__inner {
  position: relative;
  min-height: 510px;
}

.featured-card__title {
  padding: 40px 35px 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
 margin-top: -20px;
}

.featured-card__image {
  position: relative;
  height: 200px;
  margin: 26px 0 0;
    margin-top:43px
}

.proimg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px
}

.featured-card__image img {
  object-fit: contain;

}

.featured-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.featured-card:hover .featured-card__overlay {
  opacity: 1;
}

  .featured-section .carousel-arrow {
    display: none;
  }

  @media (max-width: 1200px) {
    .featured-section .carousel-arrow {
      display: flex;
    }
  }

.company-section {
  height: 960px;
  padding: 90px 0;
  overflow: hidden;
}

.company-layout {
  display: flex;
  align-items: flex-start;
  margin: -20px -15px;
}

.company-gallery {
  padding: 0 15px;
}

.company-copy {
  width: 866px;
  /* padding: 0 15px; */
  margin: 0 0 0 20px;
}

.company-thumbs{
  margin-top: 44px;
}

.company-gallery .about-thumbs-swiper{
  width: 740px;
}

.company-main-image {
  width: 740px;
  height: 400px;
  max-width: 100%;
  margin-bottom: 20px;
}

.company-main-image img {
  width: 740px;
  border-radius: 10px;
}

.company-thumbs .swiper-slide {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  width: 238px;
  height: 140px;
}

.company-thumbs .swiper-slide button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.company-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .company-section .section-head {
  margin-bottom: 30px;
} */

.company-copy > p {
  color: var(--text-color, #666);
  /* margin-bottom: 20px; */
  line-height: 1.8;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid var(--border-color, #eee);
  border-bottom: 1px solid var(--border-color, #eee);
}

.stat-item {
  width: 50%;
  margin-bottom: 20px;
}

.stat-item p{
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -5px;
}

.stat-item strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 14px;
  color: var(--text-color, #666);
  text-transform: uppercase;
  white-space: nowrap;
}

.certificates-layout {
  display: grid;
  grid-template-columns: 392px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.certificate-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.certificate-feature img {
  width: 260px;
  height: 392px;
  object-fit: cover;
  transform: rotate(-90deg);
}

.certificate-marquee {
  overflow: hidden;
}

.certificate-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.certificate-track:hover {
  animation-play-state: paused;
}

.certificate-track img {
  height: 260px;
  width: auto;
  object-fit: cover;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.export-map {
  position: relative;
  max-width: 1331px;
  margin: 0 auto;
}

.export-map > img {
  width: 100%;
  display: block;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-marker.is-main {
  opacity: 1;
}

.map-marker p {
  margin: -2px 0 0;
  font-size: 15px;
  white-space: nowrap;
  font-family: Poppins, sans-serif;
}

.map-dot {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange) 0%, #ff9d53 100%);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.map-marker.is-main .map-dot {
  background: linear-gradient(180deg, var(--blue) 0%, #4a95ff 100%);
}

.map-marker.is-visible {
  animation: marker-in 0.5s ease forwards;
}

@keyframes marker-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1024px) {
  @keyframes marker-in {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
    }
    60% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(0.75);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(0.6);
    }
  }
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 830px) minmax(0, 1fr);
  gap: 40px;
}

.blog-feature {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 560px;
}

.blog-feature-slide {
  position: relative;
  min-height: 560px;
}

.blog-feature-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.blog-feature-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.blog-feature-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px 30px 26px;
  background: rgba(13, 13, 13, 0.7);
  color: var(--white);
}

.blog-feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 20px;
}

.blog-feature-row p {
  margin: 0;
  white-space: nowrap;
}

.blog-feature-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
}

.blog-feature-link:hover {
  text-decoration: underline;
}

.blog-feature-content h3,
.blog-list-card h3 {
  margin: 0;
  text-transform: capitalize;
}

/* Blog Feature Pagination (Dots) Position */
.blog-feature .hero-dots--blog.swiper-pagination {
  /* Adjust these values to change the position */
  top: 30px !important;
  right: 30px !important;
  bottom: auto !important;
  left: auto !important;
  
  width: auto !important;
  transform: none !important;
}

.blog-feature-swiper {
  min-height: 560px;
}

.blog-list {
  display: grid;
  gap: 20px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 120px 1px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-radius: 6px;
  min-height: 160px;
  padding: 20px 32px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.blog-list-card:hover {
  transform: translateY(-2px);
}

.blog-list-date {
  text-align: center;
}

.blog-list-date strong {
  display: block;
  font-size: 36px;
  font-weight: 500;
}

.blog-list-date span {
  color: rgba(13, 13, 13, 0.4);
  font-size: 18px;
}

.blog-list-divider {
  width: 1px;
  height: 120px;
  background: rgba(13, 13, 13, 0.1);
}

.blog-list-copy h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-list-copy p {
  margin: 0;
  color: rgba(13, 13, 13, 0.4);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.blog-list-card:hover .blog-list-date strong,
.blog-list-card:hover .blog-list-date span,
.blog-list-card:hover .blog-list-copy h3,
.blog-list-card:hover .blog-list-copy p {
  color: var(--blue);
}

.online-message-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.online-message-bg,
.online-message-bg > img,
.online-message-bg > div {
  position: absolute;
  inset: 0;
}

.online-message-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-message-bg > div {
  background: rgba(0, 0, 0, 0.38);
}

.online-message-title {
  position: relative;
  z-index: 2;
  margin: 0 0 36px;
  text-align: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}

.online-message-card,
.contact-modal__form {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 6px;
  padding: 30px 60px 40px;
}

.contact-modal__form .field-grid {
  gap: 20px 30px;
}

.contact-modal__form .field-grid--2 .field:nth-child(3),
.contact-modal__form .field-grid--2 .field:nth-child(4) {
  grid-column: 1 / -1;
}

.field-grid {
  display: grid;
  gap: 20px 60px;
  margin-bottom: 20px;
}

.field-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field-grid .field {
  margin-bottom: 0;
}

.field span {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.field input,
.field textarea,
.code-box {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.code-box:focus-within {
  outline: none;
  border-color: var(--blue-strong);
  background: var(--white);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.field textarea {
  resize: none;
  min-height: 112px;
}

.field--message {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.field--message textarea {
  height: 100%;
}

.field--code {
  width: 100%;
}

.field--narrow {
  width: 46%;
}

.code-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.code-box input {
  border: 0;
  background: transparent;
  padding: 0;
}

.code-box input:focus {
  outline: none;
  background: transparent;
}

.code-box img {
  height: 28px;
  width: auto;
}

.online-message-submit {
  display: flex;
  margin: 36px auto 0;
  min-width: 250px;
}

.site-footer {
  position: relative;
}

.site-footer__bar {
  height: 4px;
  background: var(--orange);
}

.site-footer__body {
  background: #0d0d0d;
  color: var(--white);
  padding: 74px 0 40px;
}

.footer-grid {
  display: grid;
  margin: 0 0 60px 0;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer-brand__top {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-brand__top img {
  width: 129px;
  height: 46px;
  object-fit: contain;
}

.footer-brand__top p {
  max-width: 285px;
  line-height: 20px;
  margin: 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff; /* Add explicit color for the SVG icons */
}

.footer-socials a svg {
  margin: 9px 0 0 9px;
  display: block; /* Remove extra space below inline elements */
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p svg {
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer-grid h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background-color: #F97316;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.site-footer__bottom div {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.contact-modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.contact-modal.is-open,
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal__backdrop,
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.contact-modal__hero {
  position: relative;
  padding: 40px 60px 0;
  background: none;
}

.contact-modal__hero h2 {
  margin: 0;
  color: #111827;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  text-transform: none;
}

.contact-modal__close {
  position: absolute;
  top: 38px;
  right: 60px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: var(--blue, #2563EB);
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.contact-modal__submit {
  display: flex;
  margin: 28px auto 0;
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.lightbox__dialog {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
}

.lightbox__dialog img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.side-panel {
  position: fixed;
  /* You can adjust the position here */
  right: 0;
  top: 280px;
  z-index: 100;
  width: 90px;
  transform: translate(100%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.side-panel.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}

.side-panel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 80px;
  border: 0;
  color: var(--white);
  background: var(--blue-strong);
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.side-panel-item:first-child {
  border-top-left-radius: 6px;
}

.side-panel-item:last-child {
  border-bottom-left-radius: 6px;
  border-bottom: 0;
}

.side-panel-item:hover {
  background: #0858be;
}

.back-to-top {
  position: absolute;
  left: 1835px;
  /* right: calc(50vw - 580px); */
  bottom: 160px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--orange-strong);
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .shell {
    padding: 0 48px;
  }
  .main-nav {
    gap: 60px;
    font-size: 16px;
  }
  .featured-card,
  .application-card {
    width: calc((100% - 32px) / 2);
  }
  .field--narrow {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .shell {
    padding: 0 24px;
  }
  .header-inner {
    gap: 16px;
  }
  .header-phone {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 24px 30px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: -1;
    gap: 0;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .main-nav a.is-active::after {
    display: none;
  }
  .main-nav a.is-active {
    color: var(--blue-strong);
  }
  .hero-section {
    min-height: auto;
  }
  .hero-content {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .hero-copy {
    margin-top: 0;
  }
  .hero-title {
    font-size: 28px;
    margin: 0;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    width: 100%;
    max-width: 100%;
  }
  .hero-badge {
    margin-top: 30px;
    width: 120px;
  }
  .hero-kicker {
    margin: 20px 0 30px;
    font-size: 16px;
  }
  .section-head p {
    font-size: 16px;
  }
  .export-map {
    min-height: auto;
    padding-bottom: 0;
    height: auto;
    margin: 40px -24px 0;
    position: relative;
    overflow: hidden;
  }
  .export-map > img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .export-map > div:nth-of-type(1) { left: 76% !important; }
  .export-map > div:nth-of-type(2) { left: 79% !important; }
  .export-map > div:nth-of-type(3) { left: 87% !important; }
  .export-map > div:nth-of-type(4) { left: 57.5% !important; }
  .export-map > div:nth-of-type(5) { left: 59% !important; }
  .export-map > div:nth-of-type(6) { left: 19% !important; }
  .map-marker {
    transform: translate(-50%, -50%) scale(0.6);
  }
  .map-marker.is-main {
    transform: translate(-50%, -50%) scale(0.6);
  }
  .map-marker p {
    font-size: 18px;
    margin-top: 4px;
    color: var(--dark);
    font-weight: 500;
  }
  .map-marker img {
    width: 24px !important;
    height: 24px !important;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 8px;
  }
  .footer-grid > div {
    word-break: break-word;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .hero-actions,
  .section-actions,
  .site-footer__bottom,
  .section-head--with-action {
    flex-direction: column;
    align-items: flex-start;
  }
  .featured-card,
  .application-card {
    width: 100%;
  }
  .field-grid--2,
  .stats {
    grid-template-columns: 1fr;
  }
  .field--message {
    grid-column: auto;
    grid-row: auto;
  }
  .blog-list-card {
    grid-template-columns: 1fr;
  }
  .blog-list-divider {
    display: none;
  }
  .back-to-top {
    left: auto;
    right: 48px;
  }
  .side-panel {
    display: block;
  }
  .hero-dots {
    left: 50% !important;
    top: auto !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;
  }
  .company-section {
    height: auto;
    padding: 60px 0;
  }
  .company-layout {
    flex-direction: column;
  }
  .company-gallery {
    width: 100%;
  }
  .company-copy {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .company-main-image {
    width: 100%;
    height: auto;
  }
  .company-main-image img {
    width: 100%;
    height: auto;
  }
  .company-gallery .about-thumbs-swiper {
    width: 100%;
  }
  .hero-title, .section-head p {
    width: 100%;
  }
  .hero-content,
  .blog-layout,
  .certificates-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .back-to-top {
    left: auto;
    right: 48px;
  }
}

@media (max-width: 768px) {
  .online-message-card,
  .contact-modal__form {
    padding: 20px;
  }
  .contact-modal__hero {
    padding: 20px 20px 0;
  }
  .contact-modal__close {
    top: 18px;
    right: 20px;
  }
  .stat-item {
    width: 100% !important;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .hero-product {
    position: relative;
    height: auto;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .company-thumbs .swiper-slide {
    width: 160px;
    height: 94px;
  }
  .hero-product img {
    max-height: 40vh;
    object-fit: contain;
  }
}


/* 分页器小圆点样式 */
.hero-dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-dots .swiper-pagination-bullet-active {
  background: #F97316;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* 小圆点悬停效果 */
.hero-dots .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}
 



 
