:root {
  --orange: #ff6b00;
  --black: #030303;
  --near-black: #08090b;
  --charcoal: #17181c;
  --ink: #101115;
  --muted: #74777f;
  --soft: #f6f6f5;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--black);
  font-size: 15px;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.site-nav {
  min-height: 58px;
  background: rgb(24 24 24 / 95%);
  ;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nav-shell {
  padding-block: 8px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text {
  display: grid;
  color: #fff;
  line-height: 1;
}

.brand-text strong {
  font-size: 15px;
  font-style: italic;
  font-weight: 800;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.9px;
}

.navbar-nav {
  gap: 34px;
}

.site-nav .nav-link {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--orange);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.22);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  min-height: 40px;
  padding: 13px 21px;
  border-radius: 8px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 35px rgba(255, 107, 0, 0.25);
}

.btn-orange:hover {
  color: #fff;
  background: #ff7f22;
}

.btn-dark-soft {
  color: #fff;
  background: #24262b;
}

.btn-dark-soft:hover {
  color: #fff;
  background: #31343b;
}

.btn-outline-orange {
  color: var(--orange);
  border: 1px solid var(--orange);
  background: transparent;
}

.btn-outline-orange:hover {
  color: #fff;
  background: var(--orange);
}

.btn-black {
  color: #fff;
  background: #050505;
}

.btn-white {
  color: var(--orange);
  background: #fff;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 23% 15%, rgba(255, 107, 0, 0.13), transparent 27%),
    linear-gradient(135deg, #100b08 0%, #050506 62%, #060709 100%);
}

.section-charcoal {
  color: #fff;
  background: var(--charcoal);
}

.section-light {
  color: var(--ink);
  background: var(--soft);
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 150px 0 112px;
  color: #fff;
  background: linear-gradient(90deg, rgb(6 3 2) 20%, rgba(16, 8, 4, 0.82) 38%, rgba(16, 8, 4, 0.38) 60%, rgba(0, 0, 0, 0.04) 100%), linear-gradient(180deg, rgba(0, -13, 0, 0.3), rgba(0, 0, 0, 0.06)), url(../image/infinite/infinite-series-banner-image.webp) center left / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.08), transparent 38%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* .hero-content {
  max-width: 620px;
} */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.13);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-title {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
}

.hero-title em {
  color: var(--orange);
  font-style: normal;
  font-weight: 500;
}

.hero-section h2 {
  max-width: 610px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.25;
}

.hero-section p,
.muted-copy {
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  font-weight: 500;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;

}

.cta-actions .btn-black:hover {
  background: #171515;
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.cta-actions .btn-white:hover {
  background: #efe6e6;
  color: var(--orange);
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.cta-actions .btn-outline-light:hover {
  background: #e86609;
  color: #fff;
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.cta-actions .btn-black,
.cta-actions .btn-white,
.cta-actions .btn-outline-light {
  transition: all 0.3s ease;
}

.stats-section,
.coordination-section,
.workflow-section,
.applications-section {
  padding: 78px 0;
}

.section-heading {
  margin-bottom: 15px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading h2 span,
.software-card h3,
.mini-feature-grid h3,
.info-card h3 {
  color: var(--orange);
}

.section-heading p {
  margin: 8px 0 0;
  color: #92959c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.stats-row {
  margin-top: 50px;
}

.stat-number {
  color: var(--orange);
  font-size: clamp(54px, 8vw, 84px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.stat-label {
  position: relative;
  margin-top: 10px;
  padding-bottom: 26px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
}

.stat-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
}

.platform-section,
.materials-section {
  padding: 78px 0;
}

.platform-section {
  background: #050609;
  background:
    linear-gradient(90deg, rgba(6, 3, 2, 0.92) 0%, rgba(16, 8, 4, 0.82) 27%, rgba(16, 8, 4, 0.38) 51%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.06)),
    url("../image/infinite/high-productivity-8-laser.webp") center right / cover no-repeat;
}

.mini-feature-grid {
  margin-top: 28px;
}

.mini-feature-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-feature-grid p,
.line-feature p,
.material-item span {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
}

.line-feature .h3-head-orange {
  color: var(--orange);
}

.sync-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 107, 0, 0.13), transparent 40%),
    linear-gradient(180deg, #1b1b1f 0%, #17171a 58%, #2a1c16 100%);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.025);
}

.sync-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.sync-cube {
  position: relative;
  width: 104px;
  height: 92px;
  opacity: 0.28;
}

.sync-cube::before,
.sync-cube span,
.sync-cube i {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
}

.sync-cube::before {
  left: 18px;
  top: 0;
  width: 68px;
  height: 38px;
  transform: skewY(-20deg) rotate(30deg);
}

.sync-cube span {
  left: 5px;
  top: 32px;
  width: 48px;
  height: 54px;
  transform: skewY(25deg);
}

.sync-cube i {
  right: 6px;
  top: 32px;
  width: 48px;
  height: 54px;
  transform: skewY(-25deg);
}

.sync-label {
  position: absolute;
  right: 38px;
  bottom: 38px;
  text-align: right;
  text-transform: uppercase;
}

.sync-label span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.sync-label strong {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  font-style: italic;
}

.coordination-section .muted-copy {
  color: #858992;
}

.coordination-section .section-heading {
  margin-bottom: 20px;
}

/* .feature-card-grid {
  margin-top: 20px;
} */

.info-card,
.software-card,
.app-card {
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(12, 13, 16, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(9, 10, 12, 0.035);
}

.info-card h3,
.software-card h3,
.app-card h3 {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.info-card p,
.software-card p,
.app-card p {
  margin: 0;
  color: #7e828a;
  font-size: 16px;
  font-weight: 500;
}

.info-card:hover {
  background-color: rgb(9 9 11 / var(--tw-bg-opacity, 1));
}

.info-card:hover p {
  color: #fff;
}

.info-card-toggle {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: 0;
}

.info-card-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.info-card-toggle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(12, 13, 16, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(9, 10, 12, 0.035);
  cursor: pointer;
  min-height: 120px;
}

.info-card-toggle-summary h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.toggle-icon::before {
  content: "+";
}

.info-card-toggle-input:checked+.info-card-toggle-summary .toggle-icon::before {
  content: "−";
}

.info-card-toggle-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.info-card-toggle-input:checked~.info-card-toggle-content {
  max-height: 260px;
  opacity: 1;
}

.info-card-toggle-content p {
  margin: 0;
  padding: 0 34px 34px;
  color: #7e828a;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(12, 13, 16, 0.1);
  border-top: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  background: #fff;
}

.info-card-toggle-summary:hover {
  background: #fbfbfb;
}

.info-card-toggle.dark-card .info-card-toggle-summary,
.info-card-toggle.dark-card .info-card-toggle-content p {
  background: #090a0d;
  border-color: rgba(255, 255, 255, 0.08);
}

.info-card-toggle.dark-card .info-card-toggle-summary h3,
.info-card-toggle.dark-card .info-card-toggle-summary .toggle-icon {
  color: #fff;
}

.info-card-toggle.dark-card .info-card-toggle-content p {
  color: rgba(255, 255, 255, 0.68);
}

.info-card-toggle-input:checked~.info-card-toggle-content {
  margin-top: -13px;
}

.dark-card {
  color: #fff;
  /* background: #090a0d; */
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.reliability-section {
  padding: 78px 0 78px;
}

.reliability-grid {
  margin-top: 12px;
}

.line-feature {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.line-feature h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-section .section-heading {
  max-width: 700px;
  margin-inline: auto;
}

.software-row {
  margin-top: 44px;
}

.software-card {
  min-height: 200px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  perspective: 1100px;
}

.software-card:hover {
  background-color: #FF6B00;
}

.software-card-inner {
  width: 100%;
  min-height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  position: relative;
}

.software-card:hover .software-card-inner,
.software-card.active .software-card-inner {
  transform: rotateY(180deg);
}

.software-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
  border-radius: 14px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background: #fff;
  box-shadow: 0 15px 35px rgba(9, 10, 12, 0.035);
}

.software-card-front {
  z-index: 2;
}

.software-card-back {
  transform: rotateY(180deg);
  background: #fff;
}

.software-card-back img {
  max-width: 160px;
  width: 80%;
  object-fit: contain;
}

.software-card.active,
.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(255, 107, 0, 0.23);
}

.software-card.active h3,
.software-card.active p,
.software-card:hover h3,
.software-card:hover p {
  color: #fff;
}

.materials-section {
  background: #07080a;
}

.material-grid {
  max-width: 760px;
  margin-left: auto;
}

.material-item {
  min-height: 88px;
  padding-left: 24px;
  border-left: 2px solid var(--orange);
  font-size: 16px;
  font-weight: 500;
}

.material-item span {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.material-item strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
}

.app-grid {
  margin-top: 34px;
}

.app-card {
  min-height: 158px;
}

.app-card img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.app-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.1);
}

.app-card span {
  display: block;
  margin-bottom: 20px;
  color: rgba(9, 10, 12, 0.12);
  font-size: 24px;
  font-weight: 800;
}

.app-card h3 {
  color: var(--orange);
  margin-top: 20px;
}

.cta-section {
  padding: 50px 0;
  color: #fff;
  text-align: center;
  background: var(--orange);
}

.cta-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.3;
  text-transform: uppercase;
}

.cta-section p {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
}

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

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.5);
  background: #020202;
}

.site-footer strong {
  color: #fff;
  font-size: 15px;
  font-style: italic;
}

.site-footer strong span {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer small {
  font-size: 16px;
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.up-to {
  font-size: 25px;
  font-weight: 600;
  font-style: italic;
  color: #adadad;
}

.hightlight-sign {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0px;
  color: #5f5f5f;
}

.hightlight-sign-cont {
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.orange-head {
  color: var(--orange) !important;
}

.nav-cta {
  font-size: 12px;
}

h2 .banner-8-laser {
  color: var(--orange);
  transform: skewX(-17deg);
  display: block;
  margin-bottom: -23px;
  text-transform: uppercase;
}

.lpbf-platform .lpbf-box {
  margin-top: 8px;
}

.text-font-size {
  font-size: 16px;
  font-weight: 500;
}

.text-zinc-600 {
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / var(--tw-text-opacity, 1));
}

.font-light {
  font-weight: 300;
}

.not-italic {
  font-style: normal;
}

/*************/
.modal-dialog-scrollable .modal-content {
  background-color: #000000d1;
  backdrop-filter: blur(4px);
  padding: 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: auto;
  border: 2px solid #414141;
}

.modal-header {
  padding: 0 20px 20px;
}

.modal-header h5 {
  font-size: 36px;
}

.modal-dialog-scrollable .modal-body {
  margin-top: -20px;
}

.modal-dialog-scrollable form .form-control {
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
}

.modal-dialog-scrollable form .form-control:focus {
  box-shadow: 0 0 0 0.25rem #ff6b00;
}

.modal-dialog-scrollable form .form-control::placeholder {
  color: #6e6e6e;
}

.modal-header .btn-close {
  margin-top: -50px;
  margin-right: -30px;
}

.modal-dialog-scrollable form button#contact-submit {
  background-color: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.modal-dialog-scrollable form button#contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.modal-dialog-scrollable .modal-header {
  border-bottom: none;
}

.modal-dialog-scrollable .modal-title {
  color: #fff;
}

/****************/
#brochureModal .modal-content {
  background-color: #000000d1;
  backdrop-filter: blur(4px);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #414141;
}

#brochureModal .modal-title {
  color: #fff;
}

#brochureModal .modal-header {
  border-bottom: none;
}

#brochureModal input.form-control {
  min-height: 50px;
}

#brochureModal .form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(253, 97, 13);
}

#brochureModal button.btn.btn-primary.brochure-submit-btn {
  background-color: var(--orange);
}

nav.navbar .nav-shell {
  padding: 0 !important;
}

.middle-footer {
  padding: 60px 0px;
  justify-content: center;
  align-items: center;
  background: #1c1b1b;
  align-content: center;
  color: #4b4b4d;
}

.footer-menu2 p,
.footer-menu2 span {
  font-weight: 500;
  line-height: 1.7;
}

.footer-menu h4 {
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
}

.footer-menu h4:before {
  content: '';
  width: 40px;
  height: 3px;
  background: #e26e1b;
  position: absolute;
  left: 0px;
  bottom: -15px;
}

.bottom-footer {
  background: #000000;
  padding: 20px 0px 10px 0px;
}

.bottom-footer p {
  color: #fff;
  font-weight: 500;
}

.social-icons {
  float: none;
  margin-top: 0;
}

.social-icons .fa {
  margin-left: 5px;
  color: #fff;
  transition: all 0.3s linear;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
}

.social-icons a .fa.fa-linkedin {
  background: #0e76a8;
}

.social-icons a .fa.fa-instagram {
  background-color: #dd2b75;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a .fa.fa-twitter {
  background-color: #1da1f2;
}

.social-icons a .fa.fa-youtube {
  background: red;
}

.social-icons a:hover .fa {
  transform: scale(1.2);
}


.mf1 .width-45>img {
  transform: scale(1.3);
}

.mf1.section-3 .shape-left-rect {
  background: #dcdcdc;
}


.feature-icon-box.frs .col-md-3 {
  padding: 20px;
}

.feature-icon-box.frs img {
  max-width: 120px;
}

.list-group li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.list-group li {
  margin-top: 10px;
}

.list-group {
  list-style: none;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: .25rem;
}

.btn-yellow {
  border: 0px;
  background: #ff6b00;
  min-height: 40px;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 13px 21px;
  border-radius: 8px;
}

.modal-header {
  color: #e26e1b;
}

/* .modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
} */

.modal .form-group {
  margin-bottom: 15px;
}

.btn-line {
  border: 2px solid #e26e1b;
  background: #e26e1b;
  font-weight: 400;
  width: auto;
  margin-left: 5px;
  outline: none;
  text-decoration: none;
  padding: 12px 20px;
  display: inline-block;
  color: #1d1d1d;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.modal-header .btn-close {
  margin-top: -18px;
  margin-right: -14px;

}

.foot-sub:hover {
  cursor: pointer;
}

.banner-description {
  max-width: 700px;
}

@media screen and (max-width: 1279px) {
  .social-icons {
    float: none;
    margin-top: 24px;
  }
}

@media screen and (max-width: 1399px) {

  .social-icons .fa {
    margin-left: 1px;
    color: #fff;
    transition: all 0.3s linear;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
  }
}

@media screen and (max-width: 1279px) {

  .footer-menu .d-flex.align-items-center.mt-4 {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .social-icons {
    float: none;
    margin-top: 24px;
  }

  .social-icons .fa {
    margin-right: 5px;
    margin-left: 1px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 18px 0;
  }

  .navbar-nav {
    gap: 6px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero-section {
    min-height: 640px;
    padding-top: 110px;
    background-position: 58% center;
    text-align: center;
  }

  .hero-section p,
  .hero-section h2,
  .muted-copy {
    margin-inline: auto;
  }

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

  .section-heading:not(.center) {
    text-align: center;
  }

  .material-grid {
    margin-left: 0;
  }
}

@media(max-width:768px) {
  .footer-menu h4 {
    margin: 20px 0px;
  }

  .hero-title span {
    margin: auto;
  }

  .hero-section {
    background: linear-gradient(357deg, rgb(6 3 2 / 83%) 20%, rgba(16, 8, 4, 0.82) 38%, rgba(16, 8, 4, 0.38) 60%, rgba(0, 0, 0, 0.04) 100%), linear-gradient(180deg, rgba(0, -13, 0, 0.3), rgba(0, 0, 0, 0.06)), url(../image/infinite/mobile-banner.webp) center left / cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 40px;
  }

  h2 .banner-8-laser {
    margin-bottom: -14px;
  }
}

@media (max-width: 575.98px) {
  .software-card {
    min-height: auto;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }


  .stats-section,
  .coordination-section,
  .workflow-section,
  .applications-section,
  .platform-section,
  .materials-section,
  .reliability-section,
  .cta-section {
    padding-block: 64px;
  }

  .hero-section {
    min-height: 80vh;
    padding: 60px 0px 25px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title span {
    margin: auto;
  }

  .hero-title span,
  .hero-title em {
    display: block;
  }

  .sync-card {
    max-width: 430px;
  }

  .btn {
    width: auto;
  }

  .stat-number {
    font-size: 48px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 40px;
  }
}

@media(min-width:768px) and (max-width:1200px) {
  .hero-section {
    background: linear-gradient(90deg, rgb(6 3 2) 20%, rgba(16, 8, 4, 0.82) 38%, rgba(16, 8, 4, 0.38) 60%, rgba(0, 0, 0, 0.04) 100%), linear-gradient(180deg, rgba(0, -13, 0, 0.3), rgba(0, 0, 0, 0.06)), url(../image/infinite/infinite-series-banner-image.webp) center right / cover no-repeat;
  }
}