/* ===== Services Page Specific Styles ===== */
.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* .page-header p {
  max-width: 700px;
  margin: 0 auto;
} */

.services-list {
  padding: 4rem 0;
}

.services-list .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* start content at top */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 0; /* keeps balance but allows auto expand */
  height: auto;      
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #0073e6;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
}
.service-card ul {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  text-align: left;              /* lists read better + wrap earlier */
  line-height: 1.45;
}
/* ===== Service Page Bullets ===== */
.service-card ul {
  list-style: disc;        /* show filled bullets */
  padding-left: 1.5rem;    /* indent so bullets don't touch the edge */
  margin: 0.75rem 0 0;     /* spacing above/below */
  text-align: left;        /* align list items left inside centered card */
}

.service-card li {
  margin: 0.4rem 0;        /* space between bullet items */
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;             /* softer gray for text */
}


.ready-container{
  width: 100%;
  max-width: 1500px;
  height: 140px;
  margin: 0 auto;
  background: linear-gradient(135deg, #17e7b9, #2166bf);
  text-align: center;
  border-radius: 20px;
  color: #fff;
}