/* ============ Hero Section ============ */
.hero {
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 0 9%;
}
.tagline {
  font-weight: 500;
  padding: 10px 25px;
  background-color: var(--light-green);
  border-radius: 4em;
}

.hero .descripton {
  font-size: 25px;
  padding: 0 20%;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0;
  }
  .hero .descripton {
    padding: 0 5%;
  }
}
@media (max-width: 500px) {
  .hero .descripton {
    font-size: 20px;
    padding: 0;
  }
}

/* ========== About Section ========== */
.about-wrapper {
  display: flex;
  justify-content: space-between;
}
.about-img {
  /*flex-basis: 33%;*/
  display: flex;
  margin: auto;
  padding: 20px;

}
.about-content {
  flex-basis: 58%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-content > div {
  padding-bottom: 15px;
  border-bottom: 1px solid #f4f4f4;
}
.about-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.about-desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.about-desc p {
  font-size: 18px;
}

.about-desc > div,
.about-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about--techstack,
.about--experience {
  flex-basis: 46%;
}
@media (max-width: 500px) {
  .about-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .about--techstack,
  .about--experience {
    flex-basis: 100%;
  }
  .about-desc p {
    font-size: 14px;
  }
}

/* =========== Services ========== */
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.services-title {
  text-align: center;
}
.services-wrapper > div {
  background-color: var(--light-green);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  flex-basis: 40%;
}
.services-wrapper h3 {
  margin: 24px 0 16px;
}
.services-wrapper ul {
  margin-top: 8px;
  padding-left: 1em;
}
.services-wrapper img {
  width: 70px;
  height: auto;
}

.about-img img {
  border-radius: 20px;
  max-width: 250px;
}


@media (max-width: 500px) {
  .services-wrapper > div {
    flex-basis: 100%;
    padding: 20px;
  }
  .services-wrapper h3 {
    margin: 16px 0 10px;
  }
  .services-wrapper img {
    width: 50px;
  }
}

/* =============== Why Section =============== */
.why-cards-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.why-card {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 500px) {
  .why-cards-wrapper {
    flex-direction: column;
  }
}
/* ========= Strategy ========= */
.strategy-cards-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
.strategy-card {
  padding: 30px 24px;
  border-radius: 20px;
  flex: 1;
  background-color: var(--light-purple);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strategy-card ul {
  padding-left: 1em;
}
@media (max-width: 768px) {
  .strategy-cards-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .strategy-cards-wrapper {
    flex-direction: column;
  }
  .strategy-card {
    padding: 20px;
  }
}

/* =========== Testimonials ========= */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
.testimonial-card {
  text-align: left;
  /*flex: 1;*/
  flex-basis: 30%;
}

.stars {
  padding: 7px 0;
}
.avatar {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  margin: 0 auto;
}
.avatar,
.testimonial-text {
  margin-top: 15px;
  font-size: 18px;
}
.info .name {
  color: #000;
  font-family: var(--font-urban);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 5px;
}
.info .position {
  font-size: 16px;
  line-height: normal;
  margin-top: 8px;
}
@media (max-width: 500px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========== Case Study ========= */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 75px;
  margin-top: 50px;
}
.case-study {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.case-study > div {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-study img {
  border-radius: 20px;
}
@media (max-width: 500px) {
  .case-study {
    flex-direction: column-reverse;
  }
  .case-study > div {
    max-width: 100%;
  }
}
