.hero-section {
  text-align: center;
  padding: 50px;
}
.benefits {
  background-color: #fbecff;
  padding: 50px;
}
.projects {
  text-align: center;
  padding: 50px;
  background-color: white;
}
.reviews {
  background-color: #fbecff;
  padding: 50px;
  text-align: center;
}
.card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

body {
  font-family: "Calibri", "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fef9ff;
}

header {
  text-align: center;
  padding: 50px 20px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

h2 {
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-action {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e79aff;
  color: white;
  text-decoration: none;
  border-color: #b048d1;
  border-radius: 5px;
  font-weight: bold;
}

.btn-action:hover {
  background-color: #b048d1;
  color: white;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.benefit {
  flex: 1;
  max-width: 300px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  background-color: #f9f9f9;
}

.benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.benefit p {
  font-size: 1rem;
  color: #555;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.client {
  text-align: center;
}

.client img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.grid-item iframe {
  border: none;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #303030;
  color: white;
}

footer h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

.editor-block {
  text-align: center;
  /* margin-bottom: 30px; */
}
.editor-block img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.editor-block h4 {
  margin-top: 15px;
  font-weight: bold;
}
.editor-block p {
  color: #6c757d;
}

#autoplay {
  height: 70vh;
  max-height: 500px;
  width: 70%;
  max-width: 800px;
}

iframe {
  border: none;
  height: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.grid-item {
  margin-bottom: 15px;
}

.review-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.review-card h5 {
  font-weight: bold;
  margin-top: 10px;
}
.review-card p {
  font-size: 0.9rem;
  color: #6c757d;
}

.review-card a {
  color: #333;
  text-decoration: none;
}

.contact-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.contact-card h4 {
  font-weight: bold;
}
.social-links a {
  margin: 0 10px;
  color: #6c757d;
  font-size: 1.5rem;
}
.social-links a:hover {
  color: #007bff;
}

@media only screen and (max-width: 600px) {
  .client p {
    margin: auto;
    width: 80%;
  }

  .card.p-3 {
    text-align: center;
  }

  .inline-block {
    text-align: center;
    margin-bottom: 20px;
  }

  .projects {
    padding: 0px;
  }

  #autoplay {
    height: auto;
    width: 96%;
    max-height: 300px;
    max-width: 100%;
  }
}