body {
  background: #f8f0ff;
}
h1.page-title {
  color: #360a41;
  font-weight: 800;
}
body {
  background: #f8f0ff;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
}

.services-hero {
  background: linear-gradient(135deg, #f8f0ff 0%, #e6f0ff 100%);
  padding: 3rem 0 2rem 0;
  display: flex;
  justify-content: center;
}

.services-hero-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

.services-hero-text {
  flex: 1 1 350px;
  min-width: 320px;
  padding: 0 20px;
}

.services-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #360a41;
  margin-bottom: 1rem;
}

.services-hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.services-search-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.services-search-form input,
.services-search-form select {
  padding: 0.7em 1em;
  border-radius: 2em;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  outline: none;
}

.services-search-form button {
  background: linear-gradient(90deg, #a084e8 0%, #6f61c0 100%);
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.7em 1.5em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.services-search-form button:hover {
  background: linear-gradient(90deg, #6f61c0 0%, #a084e8 100%);
}

.services-tags {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.services-tags span {
  color: #888;
  margin-right: 0.5em;
}

.services-tags a {
  background: #e6e6fa;
  color: #6f61c0;
  border-radius: 1em;
  padding: 0.2em 0.8em;
  margin-right: 0.3em;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.services-tags a:hover {
  background: #a084e8;
  color: #fff;
}

.services-hero-illustration {
  flex: 1 1 320px;
  min-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero-illustration img {
  width: 260px;
  max-width: 100%;
  z-index: 2;
  position: relative;
}

.floating-imgs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.float-img {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 1em;
  box-shadow: 0 2px 12px rgba(160, 132, 232, 0.12);
  z-index: 1;
}

/*---Marquee---*/
/* .services-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(80, 36, 180, 0.07);
}

.services-gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px rgba(160, 132, 232, 0.10);
} */

.services-gallery-marquee {
  overflow: hidden;
  background: #fff;
  padding: 2rem 0;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 24px rgba(80, 36, 180, 0.07);
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 2.5rem; /* Increased gap for bigger cards */
  animation: marquee-scroll 22s linear infinite;
}

.marquee-content img {
  width: 320px;   /* Increased width */
  height: 150px;  /* Increased height */
  object-fit: cover;
  border-radius: 1.5em;
  box-shadow: 0 4px 18px rgba(160, 132, 232, 0.13);
  background: #f8f0ff;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*---END MARQUEE*/

.services-features {
  background: #f8f0ff;
  text-align: center;
  padding: 3rem 1rem 4rem 1rem;
}

.services-features h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #360a41;
  margin-bottom: 1rem;
}

.services-features .highlight {
  color: #6f61c0;
}

.services-features p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.signature {
  font-family: 'Pacifico', cursive;
  color: #a084e8;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.feature-card {
  background: linear-gradient(135deg, #fff 60%, #f0f4fa 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(80, 36, 180, 0.07);
  max-width: 320px;
  width: 100%;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
  position: relative;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}

.feature-card:hover {
  box-shadow: 0 8px 40px rgba(80, 36, 180, 0.13);
  border-color: #a084e8;
  transform: translateY(-6px) scale(1.03);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #a084e8;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.7rem 0;
  font-weight: 700;
  color: #360a41;
  letter-spacing: -0.5px;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.feature-btn {
  display: inline-block;
  padding: 0.7em 2em;
  background: linear-gradient(90deg, #a084e8 0%, #6f61c0 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(160, 132, 232, 0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
  cursor: pointer;
}

.feature-btn:hover, .feature-btn:focus {
  background: linear-gradient(90deg, #6f61c0 0%, #a084e8 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(160, 132, 232, 0.18);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1000px) {
.services-hero-text {
  flex: unset;
  }
}
@media (max-width: 900px) {
  .features-cards {
    gap: 1.2rem;
  }
  .feature-card {
    max-width: 45%;
  }

  .services-hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .marquee-content img {
    width: 220px;
    height: 140px;
  }
  .marquee-content {
    gap: 1.2rem;
  }
}

@media (max-width: 800px) {
.services-hero-illustration{
  display: none;
}
}

@media (max-width: 600px) {
  .features-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .feature-card {
    max-width: 100%;
  }

  .marquee-content img {
    width: 120px;
    height: 80px;
  }
  .marquee-content {
    gap: 0.7rem;
  }
}