.maintenance {
  text-align: center;
  height: 100%;
  gap: 50px;
  display: grid;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
  transform: translateY(50px);
  background-color: #2D363F;
  padding: 20px;
}
.maintenance img {
  width: 85%;
  max-width: 517px;
  height: auto;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

p {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -o-user-select: text;
  user-select: text;
}

body {
  background-color: #0D0D0D;
  color: #F9F9F9;
  font-family: "Figtree", sans-serif;
  line-height: 1.6;
  font-weight: 300;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
  background: rgb(0, 0, 0);
  /* Fully opaque background */
  transition: opacity 2s ease, visibility 2s ease;
  /* Smooth fade-out effect */
  opacity: 1;
  visibility: visible;
  /* Ensure the overlay is visible initially */
}
.overlay.loaded {
  opacity: 0;
  /* Fade the overlay out */
  visibility: hidden;
  /* Prevent interaction once faded */
}
.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 2s ease, transform 2s ease;
  /* Content fade and slide */
  opacity: 1;
  transform: translateY(0);
  /* Fade content out along with the overlay */
}
.overlay.loaded .overlay .overlayContent {
  opacity: 0;
  transform: translateY(-20px);
  /* Slight upward motion for added effect */
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spinInner 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
h2 {
  font-size: 34px;
  font-weight: 500;
}

h3 {
  font-size: 23px;
  font-weight: 400;
}

p {
  font-size: 16px;
  color: #ACC5DA;
}

section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-bottom: 150px;
}

img {
  -webkit-tap-highlight-color: transparent;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 100px 0px 100px;
  margin-bottom: 0px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.97);
  padding: 20px 70px 20px 100px;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navbar .logo a {
  margin: 0px;
  display: flex;
  align-items: center;
}
.navbar a {
  color: #F9F9F9;
  text-decoration: none;
  margin: 0 28px;
  font-size: 18px;
}
.navbar a:hover {
  text-decoration: underline;
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
}

.hero {
  text-align: center;
  height: 100vh;
  gap: 50px;
  display: grid;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}

.hero-logo {
  -webkit-tap-highlight-color: transparent;
}
.hero-logo img {
  width: 85%;
  max-width: 517px;
  height: auto;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

h1.hero-text {
  font-size: 22px;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  font-weight: 300;
}

.section-content {
  width: 100%;
}

.services {
  height: 68vh;
  display: grid;
  grid-template-rows: auto 2fr;
  align-items: start;
  justify-content: normal;
  background-image: url("../assets/images/servicesBackground.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.services .section-heading {
  width: 100%;
}
.services .section-content {
  display: flex;
  width: 100%;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.service-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
  background: #333;
  padding: 32px;
  border-radius: 4px;
  width: 200px;
  max-width: 416px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  text-align: left;
  background-color: rgba(46, 71, 92, 0.9);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-direction: column;
  gap: 18px;
  -webkit-tap-highlight-color: transparent;
}

.service-item p {
  font-weight: 400;
}

.about {
  gap: 50px;
  margin-bottom: 0px;
}
.about p {
  text-align: center;
}
.about .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .carousel .carousel-item {
  cursor: grab;
  width: 400px;
  transition: top 0.5s ease;
}
.about .carousel .indicators {
  pointer-events: none;
  bottom: 10%;
}
.about .carousel .indicators .indicator-item {
  scale: 0.8;
  transition: all 0.2s ease;
}
.about .carousel .indicators .indicator-item.active {
  background-color: rgb(46, 71, 92);
  scale: 1.4;
}

.industry-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 54px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  padding: 32px;
  align-items: center;
}
.industry-item img {
  height: 80px;
  width: 80px;
}

.carousel {
  height: 600px;
  perspective: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  user-select: none !important;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.carousel .carousel-item {
  visibility: hidden;
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  top: -3%;
  pointer-events: none;
}
.carousel .carousel-item:active {
  cursor: grabbing;
}
.carousel .carousel-item img {
  width: 100%;
  user-select: none !important;
}
.carousel .carousel-item > img {
  width: 100%;
}
.carousel .indicators {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  display: none;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.carousel .indicators .indicator-item {
  display: inline-block;
  position: relative;
  height: 8px;
  width: 8px;
  margin: 24px 4px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 50%;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.carousel .indicators .indicator-item.active {
  background-color: #fff;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.carousel.carousel-slider {
  top: 0;
  left: 0;
}
.carousel.carousel-slider .carousel-fixed-item {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 1;
}
.carousel.carousel-slider .carousel-fixed-item.with-indicators {
  bottom: 68px;
}
.carousel.carousel-slider .carousel-item {
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: absolute;
  left: 0;
}
.carousel.carousel-slider .carousel-item h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.carousel.carousel-slider .carousel-item p {
  font-size: 15px;
}

.carousel-item.active {
  top: -16%;
  pointer-events: none;
}

.carousel-item {
  user-select: none !important;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.carousel-item img {
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.control {
  position: absolute;
  top: 35%;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-top: -20px;
  z-index: 2;
}

.prev {
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background-image: url("../assets/vectors/c-left.svg");
  left: 5%;
}
.prev:active {
  transform: scale(0.8);
  -webkit-tap-highlight-color: transparent;
}

.next {
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background-image: url("../assets/vectors/c-right.svg");
  right: 5%;
}
.next:active {
  transform: scale(0.8);
  -webkit-tap-highlight-color: transparent;
}

.process {
  gap: 32px;
}
.process .section-heading {
  width: 100%;
}
.process .section-heading h2 {
  text-align: right;
}
.process .section-content {
  width: 100%;
}

.process-list-container {
  list-style: none;
}
.process-list-container li {
  min-height: 117px;
  transition: all 0.2s ease;
}
.process-list-container li.focused {
  transform: scale(1.1);
}
.process-list-container .left {
  display: inline-block;
  position: relative;
  background-image: url("../assets/vectors/point-left.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  justify-items: start;
  padding: 0px 0px 0px 60px;
}
.process-list-container .right {
  background-image: url("../assets/vectors/point-right.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 98% center;
  display: grid;
  justify-items: end;
  padding: 0px 65px 0px 0px;
}
.process-list-container .process-details {
  padding: 20px;
  display: grid;
  justify-content: start;
}
.process-list-container .process-list-item-inverted {
  display: grid;
  justify-content: end;
  text-align: right;
}

.process-list-item-inverted .process-number {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  font-size: 26px;
  margin-right: 0px;
  margin-left: 14px;
}
.process-list-item-inverted .process-description {
  grid-row: 2;
  grid-column: 1;
}
.process-list-item-inverted .process-label {
  grid-row: 1;
  grid-column: 1;
  font-size: 18px;
  font-weight: 400;
}

.process-number {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  font-size: 26px;
  margin-right: 14px;
  color: #ACC5DA;
}

.process-label {
  grid-row: 1;
  grid-column: 2;
}

.process-description {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
}

.border-top-left-short {
  content: "";
  width: 20%;
  height: 5px;
  background-color: #172A3A;
  display: block;
}

.border-bottom-left-long {
  content: "";
  width: 55%;
  height: 5px;
  background-color: #172A3A;
  display: block;
}

.border-bottom-right-long {
  content: "";
  width: 55%;
  height: 5px;
  background-color: #172A3A;
  display: block;
}

.border-top-right-short {
  content: "";
  height: 5px;
  background-color: #172A3A;
  display: block;
  width: 35%;
}

.contact {
  gap: 20px;
  margin-bottom: 60px !important;
}
.contact .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
}
.contact .section-content {
  display: grid;
  width: 100%;
  justify-content: space-between;
  gap: 120px;
  padding: 0px 40px 0px 40px;
  grid-template-columns: auto 64%;
}
.contact h3 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.contact .contact-info a {
  text-decoration: underline;
}
.contact a {
  color: #ACC5DA;
  text-decoration: none;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact input {
  font-size: 20px;
  font-family: Arial, sans-serif;
  color: #F9F9F9 !important;
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid #829EB7;
  padding: 10px 5px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease-in-out;
  caret-color: #F9F9F9;
}
.contact input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px #49637A inset !important;
  -webkit-text-fill-color: #F9F9F9 !important;
}
.contact input:autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px #49637A inset !important;
  text-fill-color: #F9F9F9 !important;
  -webkit-text-fill-color: #F9F9F9 !important;
}
.contact input::placeholder {
  color: transparent;
  transition: color 0.3s ease-in-out;
}
.contact input:focus::placeholder {
  color: transparent;
}
.contact input:focus + label {
  top: -10px;
  font-size: 12px;
  color: #ACC5DA;
}
.contact input:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #ACC5DA;
}
.contact input:not(:focus):placeholder-shown + label {
  top: 10px;
  font-size: 16px;
  color: #ACC5DA;
}
.contact textarea {
  font-size: 20px;
  font-family: Arial, sans-serif;
  color: #F9F9F9 !important;
  background-color: transparent !important;
  border: none;
  border-bottom: 2px solid #829EB7;
  padding: 10px 5px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease-in-out;
  caret-color: #F9F9F9;
}
.contact textarea::placeholder {
  color: transparent;
  transition: color 0.3s ease-in-out;
}
.contact textarea:focus::placeholder {
  color: transparent;
}
.contact textarea:focus + label {
  top: -10px;
  font-size: 12px;
  color: #ACC5DA;
}
.contact textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #ACC5DA;
}
.contact textarea:not(:focus):placeholder-shown + label {
  top: 10px;
  font-size: 16px;
  color: #ACC5DA;
}
.contact button {
  font-size: 18px;
  color: #F9F9F9;
  background-color: rgba(46, 71, 92, 0.7);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.contact button:active {
  background-color: #172A3A !important;
}
.contact button:hover {
  background-color: #172A3A;
}
.contact button:disabled {
  background-color: transparent;
  cursor: not-allowed;
  opacity: 0.7;
}

.left-contact-section {
  grid-row: 1;
  grid-column: 1;
}

.right-contact-section {
  height: fit-content;
  grid-row: 1;
  grid-column: 2;
  background-color: #49637A;
  border-radius: 2px;
  padding: 0px 40px 30px 40px;
}

.contact-details p {
  margin: 10px 0;
}

.numbers {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
.numbers p {
  margin: 0px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.contact-info img {
  height: 28px;
}

.whatsapp-container a {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
.whatsapp-container img {
  height: 64px;
}

.input-container {
  position: relative;
  width: 100%;
}
.input-container label {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 16px;
  color: #ACC5DA;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

input:-webkit-autofill-preview {
  -webkit-text-fill-color: #F9F9F9 !important;
  cursor: text;
}
input:-webkit-autofill {
  -webkit-text-fill-color: #F9F9F9 !important;
  caret-color: #F9F9F9;
}

#message {
  height: 220px;
}

footer {
  width: -webkit-fill-available;
  background: #2E475C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 70px 20px 100px;
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer-logo img {
  height: 70px;
}

.footer-social-links {
  display: none !important;
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer-social-links img {
  height: 30px;
}

.footer-copy {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.footer-copy h1 {
  margin: 0;
  font-size: 12px;
  color: #49637A;
}

/*# sourceMappingURL=mainStyling.css.map */
