@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

:root {
  --white: #ffffffff;
  --main-yellow: #fdb72a;
  --secondary-blue: #00aa8d;
  --secondary-blue-subtle: #dff7f5;
  --dark-blue: #324a70;
  --main-gray: #3c3c3c;
  --main-gray-subtle: #e3e3e3;
  --main-text: #716659;
  --main-transition: all 0.2s ease-in-out;
  --linkheight: 2rem;
  --brand-color: #00aa8d;
  --black: hsl(0, 0%, 0%);
}

.col {
  color: #e6fffb;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-blue);
  border-radius: 6px;
}

body::-webkit-scrollbar-track {
  background-color: #dfdede;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  color: #fff;
  background-color: var(--secondary-blue);
}

body {
  /* font-family: Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro,
    sans-serif; */
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

h2 {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
}

h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--main-text);
}

/* h6 {
  font-weight: 300;
} */

p {
  font-size: 1rem;
  font-weight: 300;
}

.text-brown {
  color: var(--main-text) !important;
}

.button-1 {
  background-color: #4caf50;
  color: white;
  padding: 6px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

.font-titillium {
  font-family: "Open Sans", sans-serif;
  /* font-family: Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro,
    sans-serif; */
}

.text-blue {
  color: var(--dark-blue);
}

.bg-blue {
  background-color: var(--secondary-blue) !important;
}

.bg-blue-subtle {
  background-color: #f3fffd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bg-light-blue {
  background-color: var(--secondary-blue) !important;
}

.text-theme {
  color: var(--secondary-blue);
}

/* Hover effect */
.button-1:hover {
  background-color: #45a049;
}

.hidden-button {
  display: none; /* Hide the actual input button */
}

.custom-button span {
  position: relative;
  z-index: 1;
}

/* input field  */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  color: var(--main-gray);
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  color: var(--main-gray);
  font-size: 14px;
}

.form-select {
  color: var(--main-gray);
  font-size: 14px;
}

input[type="file"] {
  color: var(--main-gray);
  font-size: 14px;
}

input[type="file"]:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 0.2rem rgba(39, 181, 152, 0.25);
}

.faq-blue {
  color: var(--dark-blue);
}

.sliderfont {
  font-family: "Times New Roman", Times, serif;
}

.sliderfont {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .sliderfont {
    font-size: 25px;
  }
}

.text-teal {
  color: var(--secondary-blue) !important;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
    font-weight: 300;
  }

  h3 {
    font-size: 1.25rem;
    font-weight: 300;
  }

  p {
    font-size: 0.8rem;
    font-weight: 300;
  }
}

.container-fluid {
  padding: 4rem 0;
}

@media screen and (max-width: 768px) {
  .container-fluid {
    padding: 2rem 0;
  }
}

.custom-button {
  display: inline-block;
  border-radius: 50px;
  background-color: var(--secondary-blue);
  border: 1px solid var(--secondary-blue);
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 5px;
  width: 140px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 5px;
}

.custom-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.custom-button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.3s;
}

.custom-button:hover span {
  padding-right: 15px;
}

.custom-button:hover span:after {
  opacity: 1;
  right: 0;
}

.custom-button:hover {
  background-color: transparent;
  border: 1px solid var(--secondary-blue);
  color: var(--secondary-blue);
}
/* --bt 2 */
.custom-button2 {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  padding: 12px 5px;
  width: 130px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 5px;
}

.custom-button2 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.custom-button2 span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.3s;
}

.custom-button2:hover span {
  padding-right: 15px;
}

.custom-button2:hover span:after {
  opacity: 1;
  right: 0;
}

.custom-button2:hover {
  background-color: transparent;
  background-color: red;
  border: 1px solid red;
  color: var(--white);
}
/* --bt 4 */
.custom-button4 {
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  padding: 12px 5px;
  width: 130px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 5px;
}

.custom-button4 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.custom-button4 span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.3s;
}

.custom-button4:hover span {
  padding-right: 15px;
}

.custom-button4:hover span:after {
  opacity: 1;
  right: 0;
}

.custom-button4:hover {
  background-color: transparent;
  background-color: white;
  border: 1px solid teal;
  color: var(--brand-color);
}

/* btn 3 */
.custom-button-3 {
  display: inline-block;
  border-radius: 2px;
  background-color: var(--secondary-blue);
  border: 1px solid var(--secondary-blue);
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  padding: 6px 2px;
  width: 80px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0 !important;
}

.custom-button-3 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.custom-button-3 span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.3s;
}

.custom-button-3:hover span {
  padding-right: 15px;
}

.custom-button-3:hover span:after {
  opacity: 1;
  right: 0;
}

.custom-button-3:hover {
  background-color: transparent;
  border: 1px solid var(--secondary-blue);
  color: var(--secondary-blue);
}

/* -------------------------------------------------- Header -------------------------------------------------- */

/* .header-logo {
  width: 80px;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 60px;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
  }
}

header {
  position: fixed;
  width: 100%;
  transition: top 0.3s;
  padding: 7px 4rem 5px 4rem;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  header {
    padding: 5px 1rem 5px 1.2rem;
  }
}

.header-top {
  color: white;
}

.header-top .header-icon a {
  text-decoration: none;
  font-size: 16px;
  margin: 0 10px;
  color: var(--main-gray-subtle);
  transition: color 0.3s ease;
}

.header-top .header-icon a:hover {
  color: var(--secondary-blue);
}

.header.overlay1::before {
  background: rgba(0, 0, 0, 0.8);
}

.header-detail {
  font-size: 13px;
}

.header-detail .mail .icon {
  color: var(--secondary-blue);
  font-size: 17px;
  margin: 0 5px 0 0;
}

.header-detail .phno .icon {
  color: var(--secondary-blue);
  font-size: 17px;
  margin: 0 5px 0 0;
}

header .navbar a {
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  font-weight: 300 !important;
  margin: 0 30px 0 0;
}

@media screen and (min-width: 1000px) {
  .nav-item {
    position: relative;
  }

  .nav-item .dropdown a {
    margin-right: 0 !important;
  }

  .dropdown {
    display: none;
    position: absolute;
    background-color: whitesmoke;
    color: #000;
    width: 200px;
    text-align: center;
    margin-left: -70px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(10px);
  }
  .text-gray {
    color: var(--main-gray) !important;
    font-weight: 300 !important;
  }

  .nav-item:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown a {
    display: block;
    font-size: 13px !important;
    padding: 5px 10px;
    transition: background-color 0.1s ease-in-out;
  }

  .dropdown a:hover {
    background-color: #00aa8d !important;
    color: white !important;
    border-radius: 4px;
  }
}

.active {
  color: var(--secondary-blue) !important;
}

.quote-button {
  background-color: var(--secondary-blue);
  color: var(--white);
  border: 1px solid var(--secondary-blue);
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  border-top-left-radius: 3rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 0;
  border-bottom: 2px solid var(--secondary-blue);
}

.quote-button:hover {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--secondary-blue);
  border-bottom: 2px solid var(--secondary-blue);
}

.navbar a:hover {
  color: var(--secondary-blue);
}

.offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  background-color: var(--secondary-blue);
}

.offcanvas-title {
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.offcanvas-body {
  padding: 20px;
  background-color: var(--secondary-blue);
}

.navbar-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.navbar-2 a,
.navbar-2 button {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-2 a:hover,
.navbar-2 button:hover {
  background-color: #004d40;
  border-radius: 0;
  color: #ddd;
}

.navbar-2 a.active {
  border-radius: 0;
  background-color: #004d40;
  color: #fff !important;
}

.nav-item {
  position: relative;
}

.nav-link.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  flex-direction: column;
  background-color: #444;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  border-radius: 5px;
}
.dropdown-item {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
  background-color: #555;
  color: #ddd;
} */

.quote-button {
  background-color: var(--secondary-blue);
  color: var(--white);
  border: 1px solid var(--secondary-blue);
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
  border-top-left-radius: 3rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 0;
  border-bottom: 2px solid var(--secondary-blue);
}

.quote-button:hover {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--secondary-blue);
  border-bottom: 2px solid var(--secondary-blue);
}

.quote-button-2 {
  background-color: var(--secondary-blue);
  color: var(--white);
  border: 1px solid var(--secondary-blue);
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  /* border-top-left-radius: 3rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 0; */
  border-bottom: 2px solid var(--secondary-blue);
}

.quote-button-2:hover {
  background-color: transparent;
  color: black;
  /* color: var(--white); */
  border: 1px solid var(--secondary-blue);
  /* border-bottom: 2px solid var(--secondary-blue); */
}

/* -------------------------------------------------- footer -------------------------------------------------- */
.printlay-logo {
  width: 180px;
  height: 90px;
}

footer {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer {
  position: relative;
  /* background: url("./images/3dprinter.jpg") no-repeat center center/cover; */
  color: white;
  padding: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.9
  ); /* Adjust the opacity for the overlay effect */
  z-index: 1;
}

.footer .container-fluid,
.footer .container {
  position: relative;
  z-index: 2;
}

footer h3 {
  color: var(--secondary-blue);
}

footer p span {
  color: lightseagreen;
  font-weight: 300;
}

.social-icon a {
  font-size: 20px;
  margin: 0 8px;
  color: var(--main-gray-subtle);
  padding: 10px;
  transition: color 0.3s ease;
}

.social-icon a:hover {
  color: var(--main-yellow);
}

ul.footer-list {
  list-style: none;
  padding: 0;
}

ul.footer-list a {
  text-decoration: none;
  color: white;
  font-weight: 300;
  display: block;
  font-size: 14px !important;
  padding: 6px 0;
  transition: color 0.3s ease;
}

ul.footer-list a:hover {
  color: var(--secondary-blue);
}

.social-menu a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}

.social-menu a i {
  font-size: 15px;
  color: #fff; /* Initial icon color set to white */
  transition: color 0.3s;
}

.social-menu a:hover i {
  color: #fff; /* Icon color stays white on hover */
}

/* Facebook */
.social-menu a:nth-child(1) {
  border-color: #3b5998;
}
.social-menu a:nth-child(1):hover {
  background-color: #3b5998;
}

@media screen and (max-width: 768px) {
  .social-menu a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .social-menu a i {
    font-size: 15px;
    color: #fff; /* Initial icon color set to white */
    transition: color 0.3s;
  }
}

/* Instagram */
.social-menu a:nth-child(2) {
  border-color: #e4405f;
}
.social-menu a:nth-child(2):hover {
  background-color: #e4405f;
}

/* LinkedIn */
.social-menu a:nth-child(3) {
  border-color: #0077b5;
}
.social-menu a:nth-child(3):hover {
  background-color: #0077b5;
}

/* Pinterest */
.social-menu a:nth-child(4) {
  border-color: #bd081c;
}
.social-menu a:nth-child(4):hover {
  background-color: #bd081c;
}

/* Google Plus */
.social-menu a:nth-child(5) {
  border-color: #db4437;
}
.social-menu a:nth-child(5):hover {
  background-color: #db4437;
}

/* Twitter */
.social-menu a:nth-child(6) {
  border-color: #1da1f2;
}
.social-menu a:nth-child(6):hover {
  background-color: #1da1f2;
}

.social-menu-2 a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}

.social-menu-2 a i {
  font-size: 15px;
  color: #fff;
  transition: color 0.3s;
}

.social-menu-2 a:hover i {
  color: #fff;
}

.social-menu-2 a:nth-child(1) {
  background-color: #3b5998;
  border-color: #3b5998;
}
.social-menu-2 a:nth-child(1):hover {
  background-color: #3b5998;
}

@media screen and (max-width: 768px) {
  .social-menu-2 a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
  }
  .social-menu-2 a i {
    font-size: 15px;
    color: #fff;
    transition: color 0.3s;
  }
}

.social-menu-2 a:nth-child(2) {
  background-color: #e4405f;
  border-color: #e4405f;
}
.social-menu-2 a:nth-child(2):hover {
  background-color: #e4405f;
}

.social-menu-2 a:nth-child(3) {
  background-color: #0077b5;
  border-color: #0077b5;
}
.social-menu-2 a:nth-child(3):hover {
  background-color: #0077b5;
}

.social-menu-2 a:nth-child(4) {
  background-color: #bd081c;
  border-color: #bd081c;
}
.social-menu-2 a:nth-child(4):hover {
  background-color: #bd081c;
}

.social-menu-2 a:nth-child(5) {
  background-color: #db4437;
  border-color: #db4437;
}
.social-menu-2 a:nth-child(5):hover {
  background-color: #db4437;
}

.social-menu-2 a:nth-child(6) {
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.social-menu-2 a:nth-child(6):hover {
  background-color: #1da1f2;
}

.social-menu-2 {
  position: fixed;
  left: 0;
  top: 65%;
  transform: translateY(-50%);
  z-index: 9998;
  background-color: #f8f9fa;
  padding: 10px 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.vr-button {
  width: fit-content;
  display: flex;
  padding: 0.6rem 1rem;
  cursor: pointer;
  gap: 0.4rem;
  position: fixed;
  left: 0;
  top: 33%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 9998;
  margin-left: -49px;
  /* font-weight: bold; */
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  background: linear-gradient(
      15deg,
      #006151,
      #00796d,
      #00968a,
      #00a59c,
      #00b1ae,
      #00b1ae,
      #00968a,
      #00796d,
      #006151,
      #00a59c
    )
    no-repeat;
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out !important;
}

.vr-button:hover {
  background-size: 320%;
  background-position: right center;
}

@media screen and (max-width: 768px) {
  .social-menu-2 {
    display: none !important;
  }
  .vr-button {
    top: 50%;
  }
}
.vr-button,
.social-menu-2 {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

.vr-button.visible,
.social-menu-2.visible {
  visibility: visible;
  opacity: 1;
}

.ft-link {
  color: var(--secondary-blue);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fr-link:active {
  color: var(--secondary-blue);
}

.ft-link:hover {
  color: var(--secondary-blue);
}

/* -------------------------------------------------- Index -------------------------------------------------- */
.carousel-inner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.carousel-item {
  position: relative;
  text-align: center;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.text-overlay {
  position: absolute;
  top: 55%;
  left: 8%;
  color: white;
}

.text-overlay h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}

.text-overlay h3 {
  font-size: 1.2rem;
  font-weight: 300;
}

.text-overlay span {
  color: var(--secondary-blue);
}

@media screen and (max-width: 768px) {
  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  .carousel-inner img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  .text-overlay h1 {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    font-family: "Open Sans", sans-serif;
  }

  .text-overlay h3 {
    font-size: 1rem;
    font-weight: 300;
  }
}

.industry-img {
  width: 250px;
  height: 220px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 728px) {
  .industry-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (max-width: 400px) {
  .industry-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
  }
}

.industry-img:hover {
  transform: scale(1.1);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
}

.overlay {
  position: relative;
  display: inline-block;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.overlay img {
  z-index: 0;
  transition: transform 0.3s ease;
}

.overlay:hover img {
  transform: scale(1.1);
}

.tech-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.cta-img {
  position: relative;
  width: 100%;
  object-fit: cover;
  background-attachment: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--secondary-blue);
}

.cta-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 181, 164, 0.8);
}

.border-right {
  border-top-right-radius: 15rem;
}

@media screen and (max-width: 768px) {
  .border-right {
    border-top-right-radius: 0;
  }
}

.ctaparallax {
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 305px;
}

.ctaparallax .parallax-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 305px;
  margin-top: 0px;
}

figure.snip1139 {
  font-family: "Raleway", Arial, sans-serif;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .figure.snip1139 {
    margin-left: 50px;
  }
}

figure.snip1139 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.snip1139 img {
  max-width: 100%;
  vertical-align: middle;
}
figure.snip1139 blockquote {
  position: relative;
  background-color: #ffffff;
  height: 150px;
  padding: 25px 50px 25px 50px;
  font-size: 0.8em;
  font-weight: 500;
  text-align: left;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}
figure.snip1139 blockquote:before,
figure.snip1139 blockquote:after {
  font-family: "FontAwesome";
  content: "\201C";
  position: absolute;
  font-size: 20px;
  opacity: 0.3;
  font-style: normal;
}
figure.snip1139 blockquote:before {
  top: 25px;
  left: 20px;
}
figure.snip1139 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}
figure.snip1139 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  margin: 0;
  position: absolute;
}
figure.snip1139 .author {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 25px;
  color: #000000;
  background-color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}
figure.snip1139 .author h5 {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  font-weight: 600;
}
figure.snip1139 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}

.select-material {
  padding: 0px;
  background-attachment: relative;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.select-material-bg {
  background-color: rgba(34, 56, 181, 0.3);
  width: 100%;
  height: 100%;
}

.w3-container {
  padding: 20px;
  border: 1px solid var(--white);
}

.w3-c2 {
  background-color: rgba(255, 255, 255, 0.856);
}

.w4-container {
  padding: 10px;
}

.w3-c4 {
  background-color: rgba(23, 181, 164, 0.8);
}

.custom-select {
  width: 300px;
  margin: 0 auto;
  position: relative;
}

.custom-select select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 14px;
  color: var(--main-gray);
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
}

.custom-select:hover select {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 1px 3px rgba(37, 227, 240, 0.1);
}

.custom-select select:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 1px 3px rgba(37, 227, 240, 0.1);
}

@media screen and (max-width: 768px) {
  .custom-select {
    width: 100%;
  }
}

.form-select option {
  padding: 0px;
  font-size: 13px;
  color: var(--secondary-blue);
  cursor: pointer;
}

.form-select option:hover {
  background-color: var(--secondary-blue);
  color: var(--white);
}

.sub-container {
  border: 1px solid white;
  padding: 8px;
}

/* ------------------------------------------Gallery------------------------------------------- */

.gallery-img {
  width: 270px;
  height: 250px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1030px) {
  .gallery-img {
    max-width: 100% !important;
    height: 280px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .gallery-img {
    max-width: 100% !important;
    height: 250px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
  }
}

@media screen and (max-width: 600px) {
  .gallery-img {
    max-width: 100% !important;
    height: 100px;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
  }
}

.gallery-item {
  position: relative;
}

.gallery-link {
  display: block;
  position: relative;
}

.gallery-img {
  display: block;
  transition: transform 0.3s ease;
}

.gallery-link .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-link .overlay i {
  color: white;
  font-size: 2rem;
}

.gallery-link:hover .overlay {
  opacity: 1;
}

.gallery-link:hover .gallery-img {
  transform: scale(1.05);
}

/* ------------------------------------------Contact------------------------------------------- */

.form-control::placeholder {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 300;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 0.2rem rgba(39, 181, 152, 0.25);
}

.form-contro {
  transition: 0.3s ease;
}

.form-control:hover {
  border-color: var(--secondary-blue);
}

.bg-contact-subtle {
  background-color: #00695c;
}

.bg-contact {
  background-color: #004d40;
}

.icon-1 {
  font-size: 30px;
}

.icon-1 + p {
  font-size: 20px;
  font-weight: 300;
  margin: 10px 0 10px 0;
}

.icon-1 + p + p {
  font-size: 18px;
  font-weight: 100;
  margin: 10px 0 10px 0;
}

/* ------------------------------------------Faq------------------------------------------- */

.faq-h1 {
  font-size: 30px;
  color: var(--dark-blue);
}

.faq-p > p {
  font-size: 23px;
  font-weight: 100;
  letter-spacing: -1px;
  color: var(--dark-blue);
}

.faq-h3 {
  font-size: 23px;
  font-weight: 100;
  letter-spacing: -1px;
  color: var(--dark-blue);
}

.faq-p2 > p {
  font-size: 15px;
  font-weight: 100;
}

.careers p {
  font-size: 15px;
  font-weight: 100;
}

.careers-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

label {
  font-size: 15px;
  font-weight: 100;
  color: var(--main-gray);
}

.printlay-logo-sub {
  width: 80px;
}

.m-100 {
  margin: 0 100px;
}

@media screen and (max-width: 1030px) {
  .m-100 {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .m-100 {
    margin: 0;
  }
}

/* ------------------------------------------ 3D scanning ------------------------------------------- */

.bg-container {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .bg-container {
    height: 50vh;
  }
}

.main-h1 {
  padding: 0;
  margin: 0;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.2;
  font-size: 3.5rem;
}

@media screen and (max-width: 768px) {
  .main-h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 500px) {
  .main-h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 400px) {
  .main-h1 {
    font-size: 1.8rem;
  }
}

.sub-h1 {
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
}

.sub-h2 {
  font-size: 1.9rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 768px) {
  .sub-h1 {
    font-size: 1.7rem;
  }
}

.img-container-2 {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.scanning-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: filter 0.3s ease-in-out;
}

.img-container-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.img-container-2:hover::before {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .scanning-img {
    height: 250px;
    border-radius: 10px;
  }
  .img-container-2 {
    height: 250px;
    border-radius: 10px;
  }
}

.txet-lb {
  color: 69, 69, 69;
}

.service-list {
  list-style-type: none;
  padding: 0;
}

.service-list li {
  margin: 20px 0;
  font-size: 16px !important;
  font-weight: 300;
}

.service-list li i {
  font-size: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-2 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card-4 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(10px);
  background-color: aliceblue;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card-5 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(13.4px);
  background-image: linear-gradient(
    45deg,
    rgba(76, 52, 52, 0.7),
    rgba(76, 52, 52, 0.7)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icons {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .icons {
    width: 80px;
    height: 80px;
  }
}

.bg-container-2 {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-image-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-2 {
    height: 100%;
  }
}

.bg-image-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-3 {
    height: 100%;
  }
}

.mini-p {
  font-size: 15px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .mini-p {
    line-height: 1.2rem;
  }
}

.scanning-img-2 {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: filter 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .scanning-img-2 {
    height: 350px;
  }
}

.border-left {
  border-left: 8px solid var(--secondary-blue);
}

/* ------------------------------------------ 3D Modeling ------------------------------------------- */

.model-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.image-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.model-grid {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.overlay-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}

.text-overlay {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  text-align: center;
}

.bg-image-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-4 {
    height: 100%;
  }
}

.bg-container-5 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 100px 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-image-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-5 {
    height: 100%;
  }
}

.service-card-3 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 10px;
  backdrop-filter: blur(100px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.designs-img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.skil-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bg-grad-blue {
  background-image: linear-gradient(to top, #00aa8d 0%, #537895 100%);
}

.sub-h5 {
  padding: 0 2rem;
  margin: 0;
  font-size: 1em;
  line-height: 25px;
  color: #333;
}

.gallery-link {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 29, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-link:hover .gallery-img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-link:hover::after {
  opacity: 1;
}

.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.styled-hr {
  border: 2px solid white !important;
  width: 100%;
  position: relative;
  z-index: 1;
}

.main-icon {
  position: absolute;
  font-size: 20px;
  background-color: white;
  color: red;
  border-radius: 50%;
  padding: 10px;
  z-index: 2;
}

.card__wrapper {
  display: flex;
  flex-direction: row;
}

.main-card {
  display: flex;
  padding: 1rem;
  background-color: #252525;
  border-radius: 0px 0px 12px 12px;
  justify-content: space-between;
  align-items: center;
}

.card__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.card__info span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.card__info p {
  color: #919191;
  font-size: 13px;
  font-weight: 400;
}

.banner {
  position: relative;
  width: 100%;
  height: 250px;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.games {
  display: flex;
  flex-wrap: wrap; /* Ensure items wrap properly */
  justify-content: center;
  gap: 10px;
  align-items: stretch;
}

.one h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.one h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1;
}
.one h1 em {
  font-style: normal;
  font-weight: 600;
}

.one h1 {
  text-align: center;
  /* text-transform: uppercase; */
  color: var(--dark-blue);
  padding-bottom: 5px;
}
.one h1:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: var(--dark-blue);
}
.one h1:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 25px;
  left: 50%;
  margin-left: -50px;
  background-color: var(--dark-blue);
}

.ben-card {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1660914256311-918659fae88f?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.ben-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.ben-card-title {
  position: absolute;
  /* top: 10px;
  left: 50%;
  transform: translateX(-50%); */
  color: #fff;
  font-size: 2rem;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.ben-card-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 60px 10px 10px 10px;
}

.bg-container-6 {
  position: relative;
  width: 100%;
  height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-image-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px) !important;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-6 {
    height: 100%;
  }
}

.money-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 50%;
}
.pricing-section {
  text-align: center;
  padding: 50px 20px;
  /* background-color: #f9f9f9; */
  max-width: 1200px;
  margin: auto;
}

.pricing-section h1 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.pricing-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pricing-card {
  background: linear-gradient(135deg, #00aa8d, #78ffd6);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  flex: 1;
  transition: transform 0.3s;
}

.pricing-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.pricing-card .price {
  font-size: 48px;
  margin-bottom: 20px;
  color: #111;
}

.pricing-card .price .currency {
  font-size: 24px;
  vertical-align: super;
}

.pricing-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: aliceblue;
}

.pricing-card .btn {
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.3s;
}

.pricing-card .btn:hover {
  background-color: #333;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.bg-container-7 {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-image-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-sub-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px) !important;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .bg-container-7 {
    height: 80vh;
  }
}

@media screen and (max-width: 728px) {
  .bg-container-7 {
    height: 50vh;
  }
}

.what-we-do {
  /* display: flex; */
  background: linear-gradient(135deg, #004d40, #00aa8d);
  border-radius: 4px;
  padding: 10px 0;
  color: white;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do i {
  font-size: 2rem;
  transition: color 0.3s ease;
}

.what-we-do p {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
}

.what-we-do:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.what-we-do:hover i {
  color: #ffd700;
}

.medical-card {
  background-color: #ddfff9;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.card h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #343a40;
}

.card p {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 1rem;
}

.btn-theme-outline {
  background-color: transparent;
  border: 1px solid #09a186;
  color: #09a186;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-theme-outline:hover {
  background-color: #09a186;
  color: white;
}

.btn-theme {
  background-color: #09a186;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-theme:hover {
  background-color: #07876d;
  color: white;
}

.filament-h1 {
  font-size: 39px;
  font-weight: 300;
  line-height: 39px;
}

.mini-p-2 {
  font-size: 15px !important;
  font-weight: 300 !important;
}

.custom-list {
  list-style-type: none;
}

.custom-list li::before {
  content: "\2022";
  color: #00aa8d;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -2em;
}

.custom-list-items {
  padding-left: 0;
  padding: 5px 0;
}

.sub-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--secondary-blue);
  border-radius: 50%;
}

.sub-icon {
  color: white;
  font-size: 50px;
}

.main-h5 {
  font-size: 22px !important;
  font-weight: 600 !important;
}

.w-30 {
  width: 30%;
}

.bg-container-7 {
  position: relative;
  overflow: hidden;
}

.bg-image-7 {
  width: 100%;
  transition: transform 0.1s ease;
  object-fit: cover;
}

.overlay-sub-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Add your overlay styles here */
}

.custom-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #f8f9fa;
  padding: 20px;
  border: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.custom-title {
  margin: 0;
  padding: 0;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
.custom-text {
  margin: 0;
  padding: 15px 0 0 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.highlight {
  background-color: #ffeb3b;
}

.main-custom-list {
  list-style-type: disc;
  padding-left: 20px;
  color: var(--secondary-blue);
}
.main-custom-list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.main-custom-list-item p {
  font-size: 15px !important;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .main-custom-list {
    padding-left: 20px;
  }
}

.overlay-sub-8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* backdrop-filter: blur(3px); */
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.height-100 {
  height: 350px !important;
}

@media screen and (max-width: 768px) {
  .height-100 {
    height: 250px !important;
  }
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center/50% 50%;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%2873, 80, 87, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.overlay-sub-9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.tech-card {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  height: 350px;
  border-radius: 4px;
}

.tech_img {
  width: 100%;
  height: 350px;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .tech-card {
    height: 200px;
  }
  .tech_img {
    height: 200px;
  }
}

.overlay-9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.show_text {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.tech-card:hover .overlay-9 {
  background: rgba(0, 0, 0, 0.7);
}

.tech-card:hover .tech_img {
  transform: scale(1.1);
}

.tech-card:hover .show_text {
  opacity: 0;
}

.tech-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 215, 167, 0.5);
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tech-title {
  margin: 0 0 10px;
  font-size: 2.5rem;
  color: var(--white);
  /* font-weight: 600; */
}

.tech-p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 300;
}

.tech-card:hover .tech-content {
  opacity: 1;
  visibility: visible;
}

.vbp-header-menu-button__svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: scaleX(-1);
}

.vbp-header-menu-button__svg line {
  stroke: var(--brand-color);
  stroke-dasharray: 100%;
  stroke-dashoffset: 0%;
  transition: transform 0.3s, stroke-dashoffset 0.4s;
  transform-origin: center;
  stroke-width: 3px;
}

.vbp-header-menu-button__svg .top {
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  -moz-transform: translateY(35%);
  -ms-transform: translateY(35%);
  -o-transform: translateY(35%);
}

.vbp-header-menu-button__svg .middle {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s;
  -ms-transition: opacity 0.3s, transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
}

.vbp-header-menu-button__svg .bottom {
  transform: translateY(33%);
  -webkit-transform: translateY(33%);
  -moz-transform: translateY(33%);
  -ms-transform: translateY(33%);
  -o-transform: translateY(33%);
  stroke-dasharray: 100%;
  stroke-dashoffset: 9px;
}
.vbp-header-menu-button__svg:hover .bottom {
  stroke-dashoffset: 0%;
}
/*** Mode Croix ***/
body.menu-open .vbp-header-menu-button__svg .top {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .middle {
  transform: scaleX(0.1);
  -webkit-transform: scaleX(0.1);
  -moz-transform: scaleX(0.1);
  -ms-transform: scaleX(0.1);
  -o-transform: scaleX(0.1);
  opacity: 0;
}

body.menu-open .vbp-header-menu-button__svg line.bottom {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .bottom {
  stroke-dashoffset: 0%;
}

.product-img-container {
  width: 100%;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease-in-out;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s ease-in-out;
}

@media screen and (max-width: 768px) {
  .product-img-container {
    height: 150px;
  }

  .product-img {
    height: 150px;
  }
}

.product-img-container:hover .product-img {
  transform: scale(1.1);
}

.product-img-container:hover .product-overlay {
  opacity: 1;
  /* show overlay on hover */
}

.center-text {
  font-weight: 300;
  text-align: center;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.custom-icon {
  color: teal; /* Teal color for icons */
  font-size: 2rem;
}

.custom-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px); /* Moves the card up on hover */
  box-shadow: 0 8px 15px rgba(34, 249, 185, 0.511);
  /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
}

.contact-icon {
  color: teal;
}

/* For clickable links */
.custom-card-link {
  position: relative;
}

.custom-card-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* .pt-120 {
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .pt-120 {
    padding-top: 80px;
  }
} */

.spare-h2 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .spare-h2 {
    font-size: 1rem;
    font-weight: 500;
  }
}

.production-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .production-img {
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .production-img {
    height: 200px;
  }
}

.metal-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.metal-item {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
  margin: 5px;
  border-bottom: 2px solid var(--secondary-blue) !important;
}

.metal-item:hover {
  color: #008080;
  transform: translateY(-10px);
}

.top-img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.top-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.top-img:hover {
  transform: scale(1.1);
}

.bottom {
  background-color: #252525;
  color: white; /* Ensures text is visible on brown background */
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.timg:hover .top-img {
  transform: scale(1.1); /* Zooms the image when card is hovered */
}

.bg-teal {
  background-color: #b0fff2;
}

.quote-p {
  font-size: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.table {
  font-size: 12px;
}

.btn-teal {
  background-color: #00aa8d;
  color: white;
  width: 100px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 300;
  padding: 10px 20px;
  border: 1px solid #00aa8d;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.btn-teal:active {
  transform: translateY(-5px);
}

.btn-teal:hover {
  border: 1px solid #00aa8d;
  background-color: white;
  color: #00aa8d;
}

.overlay-sub-10 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.arch-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.accordion {
  padding: 0;
  list-style: none;
  /* border-top: 1px solid #e5e5e5; */
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion-thumb {
  margin: 0;
  padding: 0.8rem 0;
  cursor: pointer;
  font-weight: normal;
  color: #00aa8d;
  font-weight: 500;
}

/* Chevron */
.accordion-thumb::before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  margin-right: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  transition: transform 0.2s ease-out;
}

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: 0.8rem;
  display: none;
}

/* Active */
.accordion-item.is-active .accordion-thumb::before {
  transform: rotate(45deg);
}

.text-teal-a {
  color: #008080;
}

.text-teal-a:hover {
  color: #00aa8d;
}

.edu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ml-34 {
  margin-left: 34px;
}

@media screen and (max-width: 768px) {
  .ml-34 {
    margin-left: 0;
  }
}

.accordion-button:not(.collapsed) {
  background-color: #00aa8d;
  color: white;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button {
  border: none;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button.collapsed i {
  color: #00aa8d;
}

.accord-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

.overlay-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay with 40% opacity */
  border-radius: 4px;
}

.link-hover {
  color: white;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.link-hover:hover {
  color: rgb(99, 255, 255);
}

.help-img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.help-img-1 {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.step-img {
  width: 100px;
  height: 500px;
  margin-left: -50px;
  object-fit: contain;
}

.step-img-r {
  width: 100px;
  height: 500px;
  padding-top: 40px;
  margin-right: -62px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .help-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
  }

  .help-img-1 {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .step-img {
    width: 100px;
    height: 300px;
    object-fit: contain;
  }

  .step-img-r {
    width: 100px;
    height: 250px;
    padding-top: 40px;
    margin-right: -62px;
    object-fit: contain;
  }
}

.mt-200 {
  margin-top: -150px;
}

@media screen and (max-width: 768px) {
  .mt-200 {
    margin-top: 0px;
  }
}

.blog-banner {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .blog-banner {
    height: 250px;
  }
}

.blog-product-banner {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .blog-product-banner {
    height: 250px;
  }
}

.blog-p {
  font-size: 13px;
  line-height: 1.6;
}

.blog-a {
  text-decoration: none;
  color: black;
}
/* From Uiverse.io by alexruix */
.group {
  display: flex;
  line-height: 28px;
  align-items: center;
  position: relative;
  max-width: 190px;
}

.input {
  width: 100%;
  height: 40px;
  line-height: 28px;
  padding: 0 1rem;
  padding-left: 2.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #e4e4e4;
  color: #0d0c22;
  transition: 0.3s ease;
}

.input::placeholder {
  color: #9e9ea7;
}

.input:focus,
input:hover {
  outline: none;
  border-color: rgba(234, 76, 137, 0.4);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgb(234 76 137 / 10%);
}

.icon {
  position: absolute;
  left: 1rem;
  fill: #9e9ea7;
  width: 1rem;
  height: 1rem;
}

.blog-mini-banner {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.icon-1 {
  font-size: 1rem;
  color: #00aa8d;
}

.text-yellow {
  color: #faa519 !important;
  margin-bottom: 30px !important;
}

.v-img {
  width: 150px;
  height: 165px;
  object-fit: cover;
}

.print-3d {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .print-3d {
    height: 250px;
  }
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 4px;
}

.service-img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

.service-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background: rgba(29, 29, 29, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-img-wrapper:hover::after {
  border-radius: 4px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .service-img-wrapper {
    height: 150px;
  }
}

.footer-logo {
  width: 100px;
  height: 90px;
  object-fit: contain;
}
.m-p {
  font-size: 13px !important;
  font-weight: 300 !important;
}

.vector {
  width: 100%;
  height: 450px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .vector {
    height: 250px;
  }
}

.vector-1 {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .vector-1 {
    height: 250px;
  }
}

.vector-2 {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .vector-2 {
    height: 150px;
  }
}

.vector-container {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin: auto;
}

.vector-container-2 {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin: auto;
}

.vector-3 {
  width: 300px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-text {
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.main-text-2 {
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .vector-3 {
    height: 300px;
  }
}

.i-container {
  position: relative;
  display: inline-block;
}

.mail-icon {
  position: relative;
  z-index: 1;
}

.phone-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #000;
  border-radius: 50%;
  padding: 5px;
  width: 24px;
  height: 24px;
}

.br-right {
  border-left: 1px solid #e5e5e5;
}

@media screen and (max-width: 768px) {
  .br-right {
    border-left: none;
  }
}

.cube-img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
}

.material-bg {
  position: relative;
  width: 100%;
  height: 80vh;
}

.material {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
}

.overlay-material {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 100, 0.4);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .overlay-material {
    background-color: rgba(0, 0, 100, 0.5);
  }
}

.pagination {
  margin-top: 20px;
}

.pagination .page-item {
  margin: 0 4px;
}

.pagination .page-item .page-link {
  color: #6c757d;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.pagination .page-item.active .page-link {
  background-color: var(--secondary-blue);
  color: #fff;
  border-color: var(--secondary-blue);
}

.pagination .page-item .page-link:hover {
  background-color: #e2e6ea;
  border-color: #dee2e6;
  color: #495057;
}

.pagination .page-item.disabled .page-link {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  pointer-events: none;
}

.pagination .page-item .page-link span {
  display: inline-block;
}

@media (max-width: 576px) {
  .pagination .page-item .page-link {
    padding: 6px 10px;
  }
}

/* .mini-p-3 {
  font-size: 14px !important;
  font-weight: 600 !important;
} */

.fs-15 {
  font-size: 14px !important;
}

.fs-155 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.contact-a {
  color: black;
  font-size: 15px !important;
  font-weight: 300 !important;
}

.contact-a:hover {
  color: var(--secondary-blue) !important;
}

.careers::-webkit-scrollbar {
  width: 6px;
}

.careers::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.careers::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 10px;
}

.careers::-webkit-scrollbar-thumb:hover {
  background-color: #a1a1a1;
}

.cursor-pointer {
  cursor: pointer !important;
}

.batch {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .careers-ht {
    height: 450px;
    overflow-y: scroll;
  }
}

.services-card {
  background-color: #716659;
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.col-md-4:nth-child(2) .services-card {
  background-color: var(--secondary-blue);
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.col-md-4:nth-child(1) .services-card:nth-child(2) {
  background-color: lightgray;
  color: rgb(33, 33, 33);
  padding: 30px;
  border-radius: 8px;
}

.col-md-4:nth-child(2) .services-card:nth-child(2) {
  background-color: #716659;
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.col-md-4:nth-child(3) .services-card:nth-child(2) {
  background-color: lightgray;
  color: rgb(33, 33, 33);
  padding: 30px;
  border-radius: 8px;
}

@media screen and (max-width: 728px) {
  .services-card {
    padding: 15px;
    border-radius: 4px;
  }
  .col-md-4:nth-child(2) .services-card {
    padding: 15px;
    border-radius: 4px;
  }

  .col-md-4:nth-child(1) .services-card:nth-child(2) {
    padding: 15px;
    border-radius: 4px;
  }

  .col-md-4:nth-child(2) .services-card:nth-child(2) {
    padding: 15px;
    border-radius: 4px;
  }

  .col-md-4:nth-child(3) .services-card:nth-child(2) {
    padding: 15px;
    border-radius: 4px;
  }
}

.our-service-img {
  width: 100%;
  height: 350px;
  border-radius: 4px;
  object-fit: cover;
}

.tab-content {
  display: none;
}

.button-link {
  display: none;
}

.tab.activee {
  background-color: var(--secondary-blue) !important;
  color: white;
}

.tab {
  cursor: pointer !important;
  background-color: lightgray;
  color: black;
}

.client-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
}

.gray-img img:hover {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.fw-400 {
  font-weight: 700;
}

.line-h {
  line-height: 0;
}

.border-teal {
  border-bottom: 1px solid var(--secondary-blue);
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-container2 {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.feather-1 {
  width: 50px;
  height: 50px;
  stroke-width: 1;
}

.inmoov-1 {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.inmoov-3 {
  width: 100%;
  height: 400px;
  border-radius: 1px;
  object-fit: cover;
}

#button {
  display: inline-block;
  background-color: var(--brand-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 60px;
  right: 20px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.client-logo-2 {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
}

.main-pro-card {
  text-decoration: none;
}
.main-pro-card:hover {
  text-decoration: underline;
}

.tags-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tag {
  display: inline-block;
  background-color: var(--brand-color);
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  margin: 5px;
  line-height: 12px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  transition: background-color 0.3s;
}

.tag:hover {
  background-color: var(--secondary-blue);
}

.case-container {
  position: relative;
  width: 100%;
  height: 250px;
}

.case-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-study-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.line-container {
  position: absolute;
  bottom: -20%;
  left: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.line-container-2 {
  position: absolute;
  bottom: -100%;
  right: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.vr-line {
  width: 2px;
  height: 50px;
  background-color: rgb(49, 255, 203);
  margin-bottom: 5px;
}

.date {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.small-font {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.case-arrow .fa-arrow-right-long {
  transition: 0.3s ease-in-out;
  color: black;
}

.case-arrow:hover .fa-arrow-right-long {
  transform: translateX(10px);
  transition: 0.3s ease-in-out;
}

.case-sub-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .case-sub-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

.study-mini-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.micro-p {
  font-size: 12px;
}

.micro-p-2 {
  font-size: 14px;
}

.blog-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 450px;
}

.blog-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.date-module {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  padding: 5px 10px;
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1;
}

.date-module-p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.blog-container:hover .blog-img {
  transform: scale(1.1);
}

.blog-list {
  list-style-type: none;
  display: flex;
}

.blog-list-items a {
  color: black;
  font-style: italic;
  text-decoration: underline;
  margin-right: 10px;
}

.blog-list-items a:hover {
  text-decoration: none;
}

.text-hover-none {
  color: black;
  text-decoration: underline;
}

.text-hover-none:hover {
  text-decoration: none;
}

.project-card {
  transition: 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(34, 249, 185, 0.2);
}

.w-10 {
  width: 10%;
}

.printing-master {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
}

.micro-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 2px;
}
.row {
  display: flex;
}

.column-img {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  transition: flex-grow 0.5s ease, transform 0.5s ease;
}

.column-img:hover {
  flex-grow: 2;
}

.column-img:hover .full-img {
  transform: scale(1.1);
}

.column-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background-color 0.5s ease;
}

.column-img:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
}

.image-column {
  position: relative;
  overflow: hidden;
  transition: flex-grow 0.9s ease;
  flex-grow: 1;
}

.image-column:hover {
  flex-grow: 2;
}

.full-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
  border: 1px solid var(--brand-color);
}

.image-column:hover .full-img {
  transform: scale(1.1);
}

@media screen and (max-width: 728px) {
  .full-img {
    height: 200px;
  }
}

.image-column::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.3s;
}

.image-column:hover::after {
  opacity: 1;
  border: none;
}

.image-column .text-overlayed p {
  display: none;
}

.image-column:hover .text-overlayed p {
  width: 100%;
  display: block;
}

.text-overlayed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 5px;
  border-radius: 2px;
  z-index: 1;
}

.text-overlayed h4 {
  margin: 0;
}

.ms-lg-6 {
  margin-left: 130px !important;
}

.hover-a {
  color: var(--brand-color);
  text-decoration: none;
}

.hoerv-a:hover {
  color: #004d40;
  text-decoration: underline !important;
}

#spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.material-img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.bottom-left-context {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
}

.material_img {
  width: 270px;
  height: 270px;
  object-fit: contain;
  border-radius: 4px;
}

.material-content {
  display: none;
}

.about-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 728px) {
  .about-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
}

.about-sub-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.icon-round {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-round i {
  font-size: 1.5em;
  color: white;
}

.about-img-3 {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.footer-card-img {
  width: 200px;
  height: 200px;
  border-radius: 3px;
}

.creative-testimonial--slider {
  padding: 0px 0px;
}

.slider_avatar {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.creative-testimonial--slider .testimonial-inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-inner .testimonial-heading {
  text-align: center;
  max-width: 60%;
  margin: auto;
  font-size: 2.813rem;
  line-height: 3.125rem;
  letter-spacing: -1px;
  margin-top: 0px;
  margin-bottom: 50px;
}
.testimonial-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 6%;
}
.swiper-slide .swiper-slide--inner {
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: relative;
  overflow-x: hidden;
}
.swiper-slide--inner .testimonial-detail img {
  height: 35px;
}
.swiper-slide--inner .testimonial-detail p {
  margin: 0px;
  color: #242e45;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 5px;
}
.swiper-slide--inner .testimonial-detail span {
  color: var(--brand-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: normal;
}
.company-details--row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.company-details--row .company-box {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding: 0px 15px;
}
.company-details--row .company-box .company-box-inner {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  background: #fff;
  text-align: center;
  border-radius: 6px;
}
.company-box-inner .company-box-top {
  padding-top: 10%;
  padding-bottom: 10%;
  border-bottom: 1px solid #dee2e6;
}
.company-box-inner .company-box-top img {
  height: 40px;
}
.company-box-inner .company-box-bottom {
  padding: 15px;
}
.company-box-inner .company-box-bottom span {
  font-size: 15px;
  color: #878898;
  line-height: 30px;
}
.company-box-inner .company-box-bottom span strong {
  color: #242e45;
}

/* Responsive Ipad */
@media only screen and (max-width: 981px) {
  .creative-testimonial--slider {
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-inner .testimonial-heading {
    max-width: 100%;
  }
  .swiper-slide .swiper-slide--inner {
    padding-left: 0%;
    padding-right: 0%;
  }
  .swiper-button-next.slide-btns,
  .swiper-button-prev.slide-btns {
    display: none;
  }
  .company-details--row .company-box {
    padding: 0px 5px;
  }
}
/* Responsive Ipad */
@media only screen and (max-width: 460px) {
  .testimonial-inner .testimonial-heading {
    font-size: 1.813rem;
    line-height: 2.125rem;
  }
  .swiper-slide .swiper-slide--inner {
    flex-direction: column;
    text-align: center;
  }
  .company-details--row {
    justify-content: center;
    flex-direction: column;
  }
  .company-details--row .company-box {
    padding: 0px 0px;
    margin-bottom: 20px;
    width: 100%;
  }
}

.testimonials-wrap {
  padding: 40px 0;
}
.heading-section {
  text-align: center;
}
.sub-heading {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: #2e9ca1;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heading-section h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
}
.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  min-width: 80px;
  background-size: 100%;
}
.carousel-testimonial .item {
  padding: 30px 10px;
}
.quote {
  position: absolute;
  top: -23px;
  color: var(--brand-color);
  font-size: 27px;
}
.name {
  margin-bottom: 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 500;
}
.position {
  color: #adadad;
  font-size: 14px;
}
.carousel-testimonial .owl-nav {
  text-align: center;
}
.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}
.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}
.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  vertical-align: 0px;
  line-height: 16px;
}
.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}

.left-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--brand-color);
  transition: 0.1s ease-in-out;
}

.left-arrow i {
  color: var(--brand-color);
}

.left-arrow:hover {
  cursor: pointer;
}

.right-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--brand-color);
  transition: 0.1s ease-in-out;
}

.right-arrow i {
  color: var(--brand-color);
}

.right-arrow:hover {
  /* transform: translateX(5px); */
  cursor: pointer;
}

/* .horizontal-tabs {
  position: relative;
  width: 100%;
}

.horizontal-tabs-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
}

.horizontal-tabs-list:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #dbdfe8; 
  transform: translateY(-50%);
  z-index: 1;
}

.horizontal-tabs-list-items {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--brand-color);
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.progress-line {
  position: absolute;
  top: 39%;
  left: 0;
  height: 1px;
  background-color: var(--brand-color);
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  transition: width 0.3s ease-in-out;
} */

.horizontal-tabs {
  position: relative;
  width: 100%;
}

.horizontal-tabs-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
}

.horizontal-tabs-list:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #dbdfe8;
  transform: translateY(-50%);
  z-index: 1;
}

.horizontal-tabs-list-items {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #dbdfe8;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: border-color 0.3s ease-in-out;
}

.horizontal-tabs-list-items.active {
  border-color: var(--brand-color);
}

.progress-line {
  position: absolute;
  top: 39%;
  left: 0;
  height: 1.5px;
  background-color: var(--brand-color);
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  transition: width 0.3s ease-in-out;
}

.works_img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.service_work {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.silicon-img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  .silicon-img {
    width: 100%;
  }
  .service_work {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
  }
}

.hero {
  /* background: linear-gradient(135deg, #0d6efd, #6c63ff); */
  background: linear-gradient(135deg, #00aa8d, #85cfac);
  color: white;
  padding: 60px 30px;
  border-radius: 10px;
}

.cta-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.features {
  background: white;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-blue);
}

.video-custom {
  /* width: 100% !important; */
  height: 400px !important;
  /* margin: 0 auto; */
  background-color: #f8f9fa !important;
  /* object-fit: cover !important; */
}

.custom-material-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-material-list li {
  padding: 5px 20px;
  background-color: var(--brand-color);
  /* background-color: rgb(242, 242, 242); */
  font-size: 14px;
  margin: 0 15px 10px 15px;
  border-radius: 100px;
  display: block;
  color: white;
}

.video-custom {
  width: 60%;
  height: 400px;
  margin: 0 auto;
}

.plyr:hover .plyr__controls {
  opacity: 1;
  visibility: visible;
}

.plyr .plyr__controls {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.advantages-section {
  background-color: #ffffff;
  padding: 60px 30px;
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.advantages-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.advantages-card {
  background-color: #e6fffb;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.advantages-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantages-card .tool-icon-2 {
  font-size: 2.5rem;
  color: var(--secondary-blue);
  margin-bottom: 20px;
}

.advantages-card h4 {
  font-size: 1.5rem;
  color: #333;
  /* font-weight: bold; */
  margin-bottom: 15px;
}

.advantages-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

.cta-container .cta-btn {
  background-color: var(--secondary-blue);
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
}

.cta-container .cta-btn:hover {
  background-color: #0fe2bf;
}

@media (max-width: 768px) {
  .advantages-card {
    margin-bottom: 30px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #00aa8d, #85cfac);
  color: white;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.cta-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--main-text);
  /* font-weight: bold; */
}

.cta-card p {
  font-size: 0.9rem;
  color: black;
}

.cta-card .tool-icon {
  font-size: 2rem;
  color: var(--secondary-blue);
  margin-bottom: 10px;
}

.cta-btn-main {
  text-align: center;
  margin-top: 30px;
}

.cta-btn-main .btn {
  background-color: #ffffff;
  color: #004085;
  border: 2px solid #004085;
  text-transform: uppercase;
  font-weight: bold;
}

.cta-btn-main .btn:hover {
  background-color: #004085;
  color: #ffffff;
}

.process-step {
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.process-step:hover {
  transform: translateY(-10px);
}

.process-step i {
  color: #008080;
  margin-bottom: 15px;
}

.process-step h4 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin-top: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .process-step {
    padding: 15px;
  }
  .process-step h4 {
    font-size: 1.2rem;
  }
  .process-step p {
    font-size: 0.9rem;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #343a40;
  /* margin-bottom: 50px; */
}
.step-container {
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.step-icon {
  font-size: 3rem;
  color: var(--brand-color);
  margin-bottom: 0;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 300;
  color: #343a40;
  margin-bottom: 5px;
}
.step-description {
  font-size: 1rem;
  color: #646a70;
  line-height: 1.6;
  max-width: 350px;
  margin: 0 auto;
}
.step-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.step-row .step-container {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

@media (max-width: 768px) {
  .step-row {
    flex-direction: column;
    align-items: center;
  }
}

.hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.main-hero-content {
  position: relative;
  z-index: 2;
}

.hero-sub-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.cta-scan {
  background: linear-gradient(rgba(40, 90, 82, 0.9), rgba(46, 110, 101, 0.9)),
    url("https://images.unsplash.com/photo-1611505982706-9ebc79e5d3f1?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
      fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta-scan h3 {
  color: #fff !important;
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-scan p {
  color: #fff !important;
}

.cta-scan .cta-scan-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta-scan .cta-scan-btn:hover {
  background: var(--secondary-blue);
  border: 2px solid var(--secondary-blue);
}

@media (max-width: 1024px) {
  .cta-scan {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta-scan .cta-scan-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.spare-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--secondary-blue);
}

.action-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}

/* CTA Styles */
.cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 200px;
}

/* Hover Effects */
.cta:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Gradient Backgrounds */
.cta-printing {
  background: linear-gradient(135deg, #00aa8d, #6eccbc);
}

.cta-scanning {
  background: linear-gradient(135deg, #6e645b, #90847a);
}

/* Text Styling */
.cta-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.cta-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* Arrow Decoration */
.cta-arrow {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
  transition: all 0.3s ease;
}

.cta:hover .cta-arrow {
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .action-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta {
    height: 150px;
    padding: 1.5rem;
  }

  .cta-text {
    font-size: 1.5rem;
  }

  .cta-subtext {
    font-size: 0.9rem;
  }
}

.social-menu-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  gap: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.social-icon-2 {
  display: block;
  width: 100% !important;
  height: 50px;
  /* border-radius: 10px; */
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon-2:hover {
  transform: scale(1.1);
}

.facebook {
  background-color: #3b5998;
  color: white;
}

.instagram {
  background-color: #e1306c;
  color: white;
}

.linkedin {
  background-color: #0077b5;
  color: white;
}

.pinterest {
  background-color: #bd081c;
  color: white;
}

.google {
  background-color: #db4437;
  color: white;
}

.twitter {
  background-color: #1da1f2;
  color: white;
}

@media (min-width: 768px) {
  .social-menu-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .social-menu-3 {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }
}

@media screen and (max-width: 768px) {
  .min-width-65 {
    width: 80% !important;
  }
}

.bg-dark-light {
  background-color: rgb(238, 238, 238);
}
.no-select {
  user-select: none; /* Prevent text selection */
}

.active-footer {
  color: var(--secondary-blue) !important;
}

.active-sidemenu {
  color: var(--brand-color) !important;
}

.hero-en {
  /* background: linear-gradient(135deg, #0d6efd, #6c63ff); */
  background: linear-gradient(135deg, #00aa8d, #99f2c8);
  color: white;
  padding: 60px 30px;
  border-radius: 10px;
}

.cta-btn-en {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-en:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.features-en {
  background: white;
  border-radius: 10px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon-en {
  font-size: 2.5rem;
  color: var(--secondary-blue);
}

.table-responsive.custom-table {
  overflow-x: auto;
  background: linear-gradient(135deg, #1f4037, #99f2c8);
  border-radius: 15px;
  padding: 20px 20px 5px 20px;
}

.table-responsive.custom-table .table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 4px;
  overflow: hidden;
}

.table-responsive.custom-table .table thead tr {
  background: #004d61;
  color: #ffffff;
  text-align: left;
}

.table-responsive.custom-table .table thead th {
  padding: 15px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-responsive.custom-table .table tbody tr {
  transition: background 0.3s;
}

.table-responsive.custom-table .table tbody tr:hover {
  background: #f2f2f2;
}

.table-responsive.custom-table .table tbody td {
  padding: 12px 15px;
  color: #333333;
}

.table-responsive.custom-table .table tbody h6 {
  font-weight: bold;
  color: #004d61;
}

.table-responsive.custom-table .table tbody p {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

.table-responsive.custom-table .table tbody tr:nth-child(even) {
  background: #eaf7f7;
}

.table-responsive.custom-table .table tbody tr:nth-child(odd) {
  background: #ffffff;
}

@media (max-width: 768px) {
  .table-responsive.custom-table .table tbody td {
    font-size: 13px;
    padding: 10px;
  }

  .table-responsive.custom-table .table thead th {
    font-size: 14px;
  }
}

.table-responsive.custom-table .table tbody tr td:nth-child(1) {
  background: #e8e8e8;
  color: #333;
}

.table-responsive.custom-table .table tbody tr td:nth-child(2) {
  background: #ececec;
  color: #333;
}

.table-responsive.custom-table .table tbody tr td:nth-child(3) {
  background: #f0f0f0;
  color: #333;
}

.table-responsive.custom-table .table tbody tr td:nth-child(4) {
  background: #f5f5f5;
  color: #333;
}

.image_overlay_container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  border-radius: 8px;
  z-index: 1;
}

.image_overlay_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 0;
}

.cta-image {
  background-image: url("https://images.unsplash.com/photo-1638959684318-68dd903ef878?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.cta-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.cta-image .content {
  position: relative;
  z-index: 2;
}

.cta-image h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-image p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-image .btn-dark {
  background-color: #333;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
}

.cta-image .btn-dark:hover {
  background-color: #555;
}

.active-demo {
  color: var(--brand-color) !important;
}
