  /* Center container with less vertical space */
  .center-wrapper {
    min-height: auto;  /* removed forced 75vh height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px; /* less padding top & bottom */
    margin-top: 20px;   /* add a bit margin instead */
    margin-bottom: 20px;
    background: #f8f7fb;
  }

  /* Card */
  .main-card {
    background: #fff;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 22px;
    box-shadow: 0 4px 28px rgba(122,90,134,0.1);
    text-align: center;
    margin: 0 auto;
  }

  .main-card h1 {
  font-size: 1.80rem;
  font-weight: 900;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #4B3B4D, #664E6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(122, 90, 134, 0.4);
  letter-spacing: 2px;
}

  .main-card h2 {
    color: #5e476c;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .main-card p {
    color: #67557d;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  /* Button group */
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Buttons */
  .btn-arshad, .btn-secondary {
    padding: 10px 0;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.90rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 2px solid #7a5a86;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    user-select: none;

    width: 40%;
    margin: 0 auto;
    text-align: center;
  }

  .btn-arshad {
    background: #7a5a86;
    color: white;
    border-color: #7a5a86;
  }

  .btn-arshad:hover, .btn-arshad:focus {
    background: #5e476c;
    border-color: #5e476c;
    text-decoration:none;
  }

  .btn-secondary {
    background: white;
    color: #7a5a86;
  }

  .btn-secondary:hover, .btn-secondary:focus {
    background: #7a5a86;
    color: white;
    text-decoration:none;
  }

  /* Features container with reduced vertical margin */
  .section {
    max-width: 900px;
    margin: 20px auto; /* less vertical space */
    padding: 0 20px;
    color: #5e476c;
  }

  .section h2 {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }

  /* Features flex */
  .features-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-item {
    background: #F7F7FD;
    border-radius: 18px;
    padding: 15px;
    width: 260px;
    box-shadow: 0 2px 18px rgba(122,90,134,0.1);
    text-align: center;
  }

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #7a5a86;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.feature-underline {
  height: 2px;
  background-color: #7a5a86;
  margin: 0 auto 15px auto;
  width: 100%;
  border-radius: 2px;
}

  .feature-item p {
    font-size: 0.95rem;
    color: #806b8c;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .main-card {
      padding: 30px 20px;
    }
    .main-card h1 {
      font-size: 1.6rem;
    }
    .features-list {
      flex-direction: column;
      align-items: center;
    }
    .feature-item {
      width: 90%;
    }
  }
  
  
 .why-choose-list .feature-item:nth-child(1) {
  background-color: #F0FDFA;
  transition: box-shadow 0.3s ease;
}

.why-choose-list .feature-item:nth-child(2) {
  background-color: #EFF6FE;
  transition: box-shadow 0.3s ease;
}

.why-choose-list .feature-item:nth-child(3) {
  background-color: #F0FDF4;
  transition: box-shadow 0.3s ease;
}

.why-choose-list .feature-item:hover {
  box-shadow: 0 8px 24px rgba(122, 90, 134, 0.25);
}

  /* Testimonials section styling */
.testimonials-section h2 {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
  color: #5e476c;
}

.testimonials-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-item {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 20px;
  width: 30%;
  box-shadow: 0 2px 18px rgba(122, 90, 134, 0.1);
  color: #67557d;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #7a5a86;
}

.user-info i.fa-user-circle {
  font-size: 2.2rem;
}

.user-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.user-designation {
  font-weight: 400;
  font-size: 0.9rem;
  color: #806b8c;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .testimonials-list {
    flex-direction: column;
  }
  .testimonial-item {
    width: 100%;
  }
}