@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', sans-serif;
}

header {
  padding: 15px;
}
.navbar {
  color: rgb(255, 255, 255);
  border-radius: 20px;
}

.navbar li {
  font-size: 18px;
  font-weight: 800;
  transition: all 0.8s ease;
  cursor: pointer;
}

.navbar li:hover {
  color: rgba(128, 128, 89, 0.5);
}

.logo-icon img {
  width: 80px;
  border-radius: 20px;
  height: 70px;
  transition: all 0.5s ease-in-out;
}

.logo-icon img:hover {
  scale: 1.1;
}

.box {
  box-shadow: 0px 0px 35px 15px rgba(0, 0, 0, 0.159);
}

.info-box {
  background-color: rgb(242, 242, 242);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.form-box {
  background-color: #2a2b3f;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: white;
}

.info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  font-size: 22px;
}

.info i {
  font-size: 28px;
}

.footer-qoutes {
  font-weight: 500;
  font-size: 48px;
  width: 80%;
  line-height: 43px;
  margin: 35px 0 25px 0;
}

footer {
  width: 100%;
  background: #242424;
}

.footer-form-input button {
  cursor: pointer;
}

.footer-links li {
  color: white;
  font-weight: 400 !important;
}

.footer-form {
  margin: 30px 20px;
}

.footer-header {
  padding-left: 200px;
  padding-right: 200px;
}

.info-parag {
  border-bottom: 1px solid black;
}

.contact-input {
  border: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  outline: none !important;
  background: none;
}

.btn-send-message {
  border: 1px solid white;
  cursor: pointer;
  min-width: 130px;
  height: 40px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
  border: none;
  background-size: 120% auto;
  background-image: linear-gradient(315deg, #000428 0%, #004e92 75%);
}

.btn-send-message:hover {
  background-position: right center;
}
.btn-send-message:active {
  top: 2px;
}

/* testimonial */

.client-testimonial {
  background: linear-gradient(
    90deg,
    rgba(199, 192, 64, 0.629),
    rgba(255, 144, 168, 0.394)
  );
  max-width: 100%;
  overflow-x: hidden;
}

.client-card-wrapper {
  display: flex;
  gap: 50px;
  animation: auto-scroll 10s linear infinite;
}

.client-card {
  overflow: hidden;
  box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.66);
  -webkit-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.66);
  -moz-box-shadow: -1px 2px 5px 0px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  padding: 50px;
  width: 300px;
  cursor: pointer;
  transition: all 0.7s ease-in-out;
}

.client-card:hover {
  scale: 1.1;
}

.client-card img {
  width: 100%;
}

/* @keyframes auto-scroll {
  0% {
    transform: translateX(10px);
  }
  25% {
    transform: translateX(-100px);
  }
  50% {
    transform: translateX(100px);
  }
  75% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(10px);
  }
} */

.projects-showCase {
  margin: 20px 10px;
}

.project-wrapper {
  height: 500px;
}

.project-description {
  margin: 50px 0 30px 0;
}
