 /* ===== HERO SECTION ===== */
    .hero-services {
      height: 80vh;
      background: linear-gradient(135deg, #EB2491, rgb(246, 139, 209));
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      overflow: hidden;
    }

    /* Soft glow bottom */
    .hero-services::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: radial-gradient(circle at bottom, rgba(255,255,255,0.9), transparent 70%);
    }

    .tag {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      backdrop-filter: blur(4px);
    }

    .tag i {
      font-size: 14px;
    }

    .hero-services h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .hero-services p {
      max-width: 700px;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-white {
      background: #fff;
      color: #EB2491;
    }

    .btn-white:hover {
      background: #f0f0f0;
    }

    .btn-purple {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .btn-purple:hover {
      background: rgba(255, 255, 255, 0.35);
    }

    @media (max-width: 768px) {
      .hero-services h1 {
        font-size: 20px;
      }
      .hero-services p {
        font-size: 14px;
      }
    }

        /* === OUR SERVICES SECTION === */
.services {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #222;
  position: relative;
}

.services h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #EB2491;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Each row (image + text) */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

/* Alternate direction (zigzag) */
.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image */
.service-image {
  flex: 1;
}

.service-image img {
    height: 280px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

/* Text Box */
.service-text {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-text:hover {
  transform: translateY(-5px);
}

.service-text h3 {
  color: #EB2491;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-text ul li {
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}

.service-text ul li::before {
  content: "✔";
  color: #EB2491;
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-row {
    flex-direction: column;
    text-align: center;
  }

  .service-row:nth-child(even) {
    flex-direction: column;
  }

  .service-text {
    text-align: left;
  }
}
