
/* marketplace page css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Twk+Lausanne&display=swap");
.custom-hero-bg {
  background: linear-gradient(to right, #a7dbf0, #3f9cf8);
  padding: 50px 0;
  padding-top: 130px;
  border-radius: 10px;
}
.custom-hero-title {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.custom-hero-textt {
  color: white;
  font-family: "Twk Lausanne", sans-serif;
  font-size: 1.3rem;
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 100%; /* Increase this value to make the text wider, e.g., 80%, 900px, etc. */
}

.integrations-section {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
}

.lead {
  color: #82868c;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  font-family: "Twk Lausanne", sans-serif;
}

.integrations-section h2 {
  font-family: "Inter", sans-serif;
  color: #1a2a44;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: -0.5px;
  text-align: center;
}

.booking-section {
  /* background-color: #f8fbff; */
  padding: 50px 0;
}
.booking-section h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #333;
}
.booking-section p {
  font-family: "Twk Lausanne", sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}
.image-card {
  /* background-color: #fff; */
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.image-card img {
  transition: transform 0.3s ease;
}
.image-card img:hover {
  transform: scale(1.05);
}
.services-section {
  padding: 50px 0;
}
.services-section h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #333;
}
.services-section .service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.services-section .service-card:hover {
  transform: translateY(-5px);
}
.services-section .service-card i {
  color: #4a90e2;
}
.services-section .service-card h5 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
}
.services-section .service-card p {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Services Section Styles */
.services-section {
  padding: 3rem 0;
}

.services-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a2a44;
  text-align: center;
  margin-bottom: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.service-card h5 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.875rem;
  color: #82868c;
  text-align: center;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .services-section h3 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h5 {
    font-size: 1.125rem;
  }

  .service-card p {
    font-size: 0.75rem;
  }
}

/* Features Section */
.features-section {
  text-align: center;
}
.features-section h3 {
  font-weight: bold;
  margin-bottom: 30px;
}
.feature-card {
  border-radius: 8px;
  padding: 20px;
  margin: 10px 10px;
}
.feature-card i {
  color: white;
  font-size: 3em;
  margin-bottom: 30px;
  background-color: rgb(20, 56, 238);
  padding: 16px;
  border-radius: 100px;
}
.feature-card h5 {
  font-size: 1.2em;
  margin: 20px;
  margin-top: 30px;
}
.feature-card p {
  color: #666;
  font-size: 0.9em;
}
