
    /* HERO */
   .hero-main {
    position: relative;
    width: 100%;
    /* height: 15vh; */
    padding: 20px 70px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.services-menu{
     padding: 30px 70px;
}


    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .service-header img {
      width: 100%;
      border-radius: 8px;
    }

   

    /* ===== PURE JS TABS ===== */

    .sx-tabs-nav {
      display: flex;
      justify-content: center;
      border-bottom: 1px solid #ddd;
      /*gap: 400px;*/
      margin-top: 20px;
    }

    .sx-tab-btn {
      background: none;
      border: none;
      padding: 10px 18px;
      font-weight: 500;
      color: #555;
      cursor: pointer;
      border-bottom: 2px solid transparent;
    }

    .sx-tab-btn:hover {
      color: #1D4E9E;
    }

    .sx-tab-btn.sx-active {
      color: #1D4E9E;
      border-bottom: 2px solid #1D4E9E;
    }

    .sx-tab-pane {
      display: none;
    }

    .sx-tab-pane.sx-active {
      display: block;
    }

    h5 {
      margin-top: 25px;
      font-weight: 600;
    }

    .process-step p {
      font-size: 0.9rem;
      color: #555;
    }
    
    .reviews-section {
  max-width: 900px;
  margin: auto;
}

.review-card {
  padding: 25px 0;
  border-bottom: 1px solid #eaeaea;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.review-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1D4E9E;
}



.review-header span {
  font-size: 13px;
  color: #666;
}

.stars {
  color: #f5b301;
  font-size: 20px;
  margin: 8px 0;
}

.review-card p {
    font-size: 16px;
    color: #444;
    line-height: 3.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

  