@import "typeeffect.css";

body {
  font-family: "Sora";
  margin: 0;
  color: #141D38;
  overflow-x: hidden;
  background-color: #FAFAFA;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.navbar .container #logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar .container #logo img {
  height: 32px;
}
.navbar .container #logo label {
  font-weight: 500;
  font-size: 26px;
  color: rgb(32, 32, 32);
  cursor: inherit;
}
.navbar .container .nav-items {
  display: flex;
  align-items: center;
}
.navbar .container .nav-item {
  text-decoration: inherit;
  color: inherit;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  margin: 8px;
  transition: 200ms;
}
.navbar .container .nav-items .nav-item:hover {
  color: #3e59f8;
  border-bottom: 1px solid #3e59f8;
}
.navbar .container .nav-items .nav-item::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 0;
  height: 1px;
  background: #3e59f8;
  transition: width 0.3s;
}
.navbar .container .nav-items .nav-item:hover::after {
  width: 100%;
  transition: width 0.3s;
}
.navbar .container #contact-us {
  padding: 16px 24px;
  border-radius: 24px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: background-color 200ms, color 200ms 100ms;
}
.navbar .container #contact-us:hover {
  color: white;
  background-color: #3e59f8;
  /* transition: 1s; */
}

.background {
  background: url("assets/background.png");
  width: 100%;
  padding: 0 6rem;
  box-sizing: border-box;
  height: calc(100vh - 70px);
  background-position: center;
  background-size: cover;
}
.background .container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.background img {
  height: 100%;
  transform: scaleX(-1);
  right: 0;
}
.background label {
  color: rgb(20, 29, 56);
  font-size: 3rem;
  font-weight: 600;
  text-transform: capitalize;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 3.4375rem;
  font-weight: 400;
  margin: 4rem 0;
}
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
.services .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  transition: 200ms;
  cursor: pointer;
  width: 100%;
  background-color: white;
  margin-bottom: 4rem;
}
.services .service:nth-child(odd) {
  flex-direction: row-reverse;
}
.services .service:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.services .service img {
  height: 300px;
  /* width: 400px; */
  border-radius: 50%;
}
.services .service .info {
  margin-left: 16px;
}
.services .service .info h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.services .service .info p {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(100, 100, 100);
  line-height: 2;
}/*# sourceMappingURL=style.css.map */

.why-us {
  /* color:white; */
  padding: 15px 0;
  
}

.why-us .title{
  text-align: center;
}

.why-us .container {
  display: flex;
  justify-content: space-between;
  background-color: white;

}

.why-us .container .column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-us .container .column:nth-of-type(2) {
  justify-content: center;
}

.why-us .container .column > img:first-child {
  width: 200px;
  margin: 4rem;
  border-radius: 50%;
}

.why-us .container .column .item img {
  height: 70px;
  margin-top: 20px;
  margin-left: 30px;
}

.why-us .container .column .right img {
  margin-right: 20px;
}


.why-us .container .column .item {
  display: flex;
}

.why-us .container .column .item > div:first-child {
  text-align: end;
}

.why-us .container .column .right {
  flex-flow: row-reverse;
}

.why-us .container .column .right > div:first-child {
  text-align: start;
}

.about-us .title{
  text-align: center;
}

.about-us .container .teams{
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;

}

.about-us .container .teams-p{
  margin: 0 120px;
  line-height: 2;
}

.about-us .container .team{
  background: rgb(198,220,255);
  background: linear-gradient(0deg, rgba(198,220,255,1) 0%, rgba(230,240,255,1) 0%, rgba(255,255,255,1) 100%);
  padding: 20px;
  padding-bottom: 2rem;
  border-radius: 5%;
  transition-duration: 300ms;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-us .team img {
  width: 16rem;
  height: 10rem;
  border-radius: 5%;
}
.about-us .team h3 {
  font-size: 24px;
  font-weight: 400;
}
.about-us .team p {
  font-size: 14px;
  font-weight: 400;
}

.teams .team:hover {
  transform: translateY(-8px);
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
}

.contact {
  width: 100%;
}

.contact .container {
  display: flex;
  padding: 0 40px;
  gap: 0;
}

.contact .container .column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
}

.contact-form-container {
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* Form styles */
.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #666666;
  font-weight: bold;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form .submit-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .submit-button:hover {
  background-color: #0056b3;
}


.contact-footer {
  color: white;
 background-image: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);

}

.footer {
  padding: 3rem 6rem;
  display: flex;
  gap: 20px;

  background-color: white;
  color: #141D38;
  border-top-left-radius: 10rem;
}

.footer .mission-p {
  width: 50%;
  line-height: 2;
  margin-right: 100px;
  text-align: justify;
}

.footer .column:nth-of-type(2) {
  width: 25%;
  line-height: 2;
}

.footer .column ul {
  text-decoration: none;
  list-style: none;
}

.title span {
  color: #007BFF;
}

.burger {
  display: inline-block;
  cursor: pointer;
  width: 33px;
  height: 24px;
  position: relative;
  margin-right: 2rem;
  display: none;
}

.burger div {
  background-color: #333;
  height: 4px;
  width: 100%;
  position: absolute;
  transition: all 0.3s ease;
}

.burger div:nth-child(1) {
  top: 0;
}

.burger div:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger div:nth-child(3) {
  bottom: 0;
}

.burger.active div:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.burger.active div:nth-child(2) {
  opacity: 0;
}

.burger.active div:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}


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

  html {
    font-size: 14px !important;
  }

  .background {
    padding: 0 1rem;
  }

  .background .container {
    margin-left: 2rem;
}

  .background img {
    display: none;
  }

  .navbar .container .nav-item:not(:first) {
      display: none;
  }

  #navbar-container:not(.responsive) .nav-item {
      display: none;
  }

  .burger {
    display: inline;
  }

  .nav-items {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 4.6rem;
      border: 1px solid #444;
      border-radius: 5px;
      width: 100%;
      background-color: white;
  }

  #logo {
      margin-left: 1rem;
  }

  .title {
    margin: 1rem 0;
    font-size: 2rem;
  }

  .nav-items.active {
      display: flex;
  }

  .services .service {
      flex-direction: column !important;
      padding: 0;
      margin-bottom: 1rem;
  }

  .services .service .info p {
    text-align: justify;
    margin-right: 14px;
  }

  .why-us .container {
      flex-direction: column;
  }

  .why-us .container .column .item {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
  }

  .why-us .container .column .item > div:first-child {
      text-align: center;
  }

  .why-us .container .column .right div {
      text-align: center;
  }

  .why-us .container .column:nth-child(2) {
      display: none;
  }

  .about-us .container .teams {
      flex-direction: column;
  }

  .about-us .container .teams-p {
      margin: 0 1rem;
      text-align: justify;
  }

  .contact .container {
      flex-direction: column;
      padding: 0 1rem;
  }

  .contact .container .contact-form-container {
      padding: 1rem;
  }

  .footer {
      flex-direction: column;
      padding: 1rem;
      border-top-left-radius: 2rem;
  }

  .footer .mission-p {
      width: 100%;
      margin-right: 0;
      text-align: justify;
  }

  .footer .mission-p svg{ 
    width: 350;
  }
}
