body {
  font-family: "Poppins", sans-serif;
  background-color: #121212;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

.hero {
  padding: 80px 15px;
  background: linear-gradient(135deg, #7d3c98, #a569bd);
  animation: fadeIn 1.5s ease-in-out;
}

.btn {
  background: #fff;
  color: #7d3c98;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}

.btn:hover {
  transform: scale(1.02);
}

.reviews-container {
  display: flex;
  gap: 15px;
  padding: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  justify-content: center;
  flex-wrap: nowrap;
}

.review {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
  scroll-snap-align: center;
}
.profile-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  scroll-snap-type: x mandatory;
}

.profile-card {
  background: #1e1e1e;
  padding: 15px;
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

.profile-card:hover,
.review:hover {
  transform: scale(1.05);
}

.profile-card img,
.review img {
  width: 100%;
  border-radius: 10px;
}

.chat-btn {
  background: #a569bd;
  color: white;
  border: none;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
}

.chat-btn:hover {
  background: #7d3c98;
}

.feature-box {
  margin: 15px;
  padding: 15px;
  background: #1e1e1e;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
  display: inline-block;
  width: 90%;
  max-width: 300px;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box i {
  font-size: 40px;
  color: #a569bd;
}

.floating-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #a569bd;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 14px;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.faq-question {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
  cursor: pointer;
}

.reviews-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  justify-content: center;
  flex-wrap: nowrap;
}

.review {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  padding: 15px;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
  width: 250px;
  scroll-snap-align: center;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

.review:hover {
  transform: scale(1.05);
}

.review img {
  object-position: center top;
  object-fit: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review h4 {
  margin: 0;
  color: #a569bd;
}

.review p {
  margin: 5px 0;
  font-size: 14px;
}

.review small {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .review {
    width: 90%;
  }

  .hero {
    padding: 60px 10px;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  .profile-card {
    max-width: 100px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .profile-container,
  .floating-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}
