:root {
  --primary: #333;
  --secondary: #e75b20;
  --white: #fafafa;
  --gray: #616161;

  --border-radius: 10px;

  --background-color-light: #fffaff;
  --text-color-light: #161b22;
  --background-color-dark: #121212;
  --text-color-dark: #fffaff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body::-webkit-scrollbar {
  width: 1em;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
html {
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
  overflow-x: hidden;
}
.dark-mode {
  background-color: var(--background-color-dark);
  color: var(--text-color-dark);
}
.dark-mode .stack-cards__item {
  background-color: #161b22;
}


h1 {
  font-size: 3rem;
  font-weight: 500;
}
h2 {
  font-size: 2.5rem;
  font-weight: 500;
}
h3 {
  font-size: 2rem;
  font-weight: 500;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.8rem;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.mobile-nav-bottom {
  display: none;
}
.custom-nav .custom-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  height: 70px;
}
.custom-navbar-nav {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  li:not(:last-child) {
    padding-right: 30px;
  }
}
.mobile-menu-btn {
  display: none;
}
.light-mode-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: var(--border-radius);
}

.button {
  padding: 0.5rem 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid;
  transition: 0.2s ease;
}
.button-large {
  padding: 1rem 4rem;
}
.button-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.button-primary:hover {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.text-secondary {
  color: var(--secondary) !important;
}

.icon-btn {
  padding: 0.8rem 1.5rem;
  background-color: white;
  border-color: rgb(214, 214, 214);
}

.animated-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px dashed var(--clr);
  outline: none;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
  transition-delay: 0.6s;
}
.animated-button:hover {
  background-color: var(--clr);
  color: white;
  letter-spacing: 0.1px;
}

.animated-button span {
  display: block;
  background-color: var(--clr);
  position: absolute;
}
.animated-button span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.2s;
  transition-delay: 0.45s;
}
.animated-button:hover span:nth-child(1) {
  transition: transform 0.2s;
  transform: scaleX(1);
}
.animated-button span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.2s;
  transition-delay: 0.1s;
}
.animated-button:hover span:nth-child(2) {
  transition: transform 0.2s;
  transform: scaleY(1);
  transition-delay: 0.1s;
}
.animated-button span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s;
  transition-delay: 0.15s;
}
.animated-button:hover span:nth-child(3) {
  transition: transform 0.2s;
  transform: scaleX(1);
  transition-delay: 0.2s;
}
.animated-button span:nth-child(4) {
  bottom: 0;
  left: 0;
  height: 100%;
  width: 2px;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.2s;
}
.animated-button:hover span:nth-child(4) {
  transition: transform 0.2s;
  transform: scaleY(1);
  transition-delay: 0.3s;
}
header {
  padding: 1rem 0;
}
.section {
  padding-top: 8rem;
}
.section-sm {
  padding-top: 4rem;
}
.section-header {
  text-align: center;
  width: 50%;
  margin: auto;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.banner-text {
  position: relative;
  z-index: 1;
}
.banner {
  display: flex;
  width: 55%;
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.banner h1 {
  margin-bottom: 2rem;
}
.banner p {
  margin-bottom: 2rem;
}
.banner-img {
  position: relative;
  width: 100vw;
  height: 100vh;
  top: -100px;
  left: 0;
  right: 0;

  svg {
    width: 100vw;
  }
}

#animated-path-1,
#animated-path-2,
#animated-path-3 {
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 5s linear forwards;
}
#animated-path-1 {
  stroke: #daff06;
}
#animated-path-2 {
  stroke: #2ba1bc;
  animation-delay: 4s;
}
#animated-path-3 {
  stroke: #36ed14;
  animation-delay: 9s;
}
@keyframes drawPath {
  0% {
    stroke-dashoffset: 2000; /* Start with the path hidden */
  }
  100% {
    stroke-dashoffset: 0; /* Fully reveal the path */
  }
}

.about-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scattered-word-container {
  padding-top: 18rem;
}

.scattered-words {
  position: relative;
  text-align: center;
  width: max-content;
}

.scattered-word {
  display: inline-block;
  opacity: 0;
  position: relative;
  transition: all 0.5s ease;
  font-size: 3rem;
  margin: 0 0.5rem;
}

.benefits {
  border: 1px solid #e9e3d6;
  border-radius: var(--border-radius);
}
.benefits .col-4 {
  padding: 0 !important;
}
.benefit {
  border-right: 1px solid #e9e3d6;
}
.benefit-last {
  border-right: 0;
}
.benefit-top {
  border-bottom: 1px solid #e9e3d6;
  padding: 2.5rem;
}
.benefit p {
  padding: 2.5rem;
}
.benefit-top h2 {
  margin-top: 1.2rem;
  margin-bottom: 0;
}
.benefit-top svg {
  fill: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  box-shadow: 0 8px 80px 0 rgba(21, 21, 49, 0.05);
  padding: 3rem;
  border-radius: var(--border-radius);
  transition: 0.4s ease;
}
.service-card svg {
  fill: var(--secondary);
  margin-bottom: 1.2rem;
}
.service-card:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.service-card:hover svg {
  fill: var(--white);
}

.footer {
  /* background-color: var(--primary); */
  padding: 2rem 0 7rem 0;
  margin-top: 6rem;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgb(124, 124, 124);
}
#footer-logo {
  margin-bottom: 30px;
}
.footer .info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
  flex-direction: column;
}
.footer .info-data {
  font-size: 1rem;
  display: flex;
  align-items: center;
  padding-top: 1rem;

  .info-text {
    display: flex;
    flex-direction: column;
  }
  .info-icon {
    margin-right: 15px;
  }
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  margin-top: 3rem;
}
.footer-content h3 {
  font-size: 1.9rem;
}
.footer-content ul li {
  padding-top: 1rem;
  font-size: 1.2rem;
}
.footer-road-svg {
  max-height: 100%;
  position: absolute;
  right: 0;
  z-index: 0;
  overflow: hidden;
  top: 0;
}

.values-container {
  text-align: center;

  h2 {
    margin-bottom: 7rem;
    font-weight: 300;
    font-size: 4vw;
  }
}
.home-values-container {
    overflow-x: hidden;
}
.single-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 14vh;
  h3 {
    font-size: 10vw;
    font-weight: 300;
  }
}
.stack-cards__item {
  position: sticky;
  top: 20px;
  transform-origin: center top;
  background-color: white;
  height: 400px;
  padding: 3rem;
  margin-top: 5rem;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  * {
    width: fit-content;
  }
  .count {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 2px 20px;
    border-radius: 20px;
    font-weight: 600;
  }

  .title {
    margin-top: 1.5rem;
  }
}

.tech-slideshow {
  height: 200px;
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow .mover-1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
  animation: moveSlideshow 12s linear infinite;
}
.tech-slideshow .contact {
  background: url(/assets/images/svgs/contact.svg);
  width: 4368px;
}
.tech-slideshow .services {
  background: url(/assets/images/svgs/services.svg);
  width: 3723px;
}
.tech-slideshow .about {
  background: url(/assets/images/svgs/about-us.svg);
  width: 4257px;
}
@keyframes moveSlideshow {
  100% {
    transform: translateX(-66.6666%);
  }
}
.wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 5s linear infinite;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(40deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 9rem;
  font-size: 1.2rem;
}
.services-table {
  border: 1px solid #161b22;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}
.services-table a {
  padding: 2rem;
  font-size: 1.5rem;
}
.single-service {
  border-bottom: 1px solid #161b22;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 30% 65%;
  gap: 5%;
}
.single-service p {
  font-size: 1.2rem;
}
.single-service ul li {
  padding-bottom: 20px;
  font-size: 1.2rem;
}

.about-values {
  height: 120vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
}
.values-grid {
  grid-template-columns: 1fr;
  display: none;
  gap: 20px;
}

.value-card {
  background-color: #161b22;
  width: 100%;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  color: white;

  p {
    margin-bottom: 0;
  }
}


.value-card-1 {
  top: 9%;
  bottom: auto;
  left: 20%;
  right: auto;
}

.value-card-2 {
  top: 14%;
  bottom: auto;
  left: auto;
  right: 27%;
}

.value-card-3 {
  top: auto;
  bottom: 6%;
  left: 15%;
  right: auto;
}
.value-card-4 {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 34%;
}

.why-us h2 {
  font-size: 2.5rem;
}

.why-choose-us {
  margin-left: 20%;
  padding: 2rem 0;
}
.why-line {
  padding: 2rem 0;
  border-bottom: 1px solid #161b22;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: 0.5s ease;

  h3 {
    width: 40%;
    font-size: 1.5rem;
    transition: 0.5s ease;
  }

  span {
    width: 55%;
  }
}
.why-line:hover {
  border-color: var(--secondary);

  h3 {
    color: var(--secondary);
  }
}

.about-mobile {
  display: none;
}
.about-values-svg {
  width: 100%;
  max-width: 100%;

  svg {
    width: 100%;
    stroke-dasharray: 800;
    stroke-dashoffset: 1000;
    animation: dash 5s linear forwards;
  }
}

@keyframes dash {
  to {
    stroke-dasharray: 0;
    /* stroke-dashoffset: 0; */
  }
}
.about-titles {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 2rem;
}
.about-paragraph-container {
  height: 100vh;
  display: flex;
  align-items: center;
}
.about-paragraph {
  font-size: 2.5rem;
  p,
  span {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
  }
}

.animated-text > p {
  background: linear-gradient(
    to right,
    rgb(37, 37, 37) 50%,
    rgb(255, 255, 255) 50%
  );
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1.2;
}

.stories-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  height: 100vh;
}
.stories-mission div {
  height: min-content;
}
.stories-mission-img {
  width: 100%;
  border: 1px solid white;

  img {
    width: 100%;
  }
}
.stories-mission h2 {
  font-size: 2.5rem;
}
.stories-mission p {
  font-size: 1.2rem;
  line-height: 1.5;
}
