#mdb {
  margin-top: 1rem;  
}

#mdb::before {
    display: none;
    /* content: '';
    display: block;
    position: absolute;
    top: calc(-1rem - 1px);
    left: calc(50% - 1px);
    width: 1px;
    height: calc(1rem + 1px);
    background: #ffffff; */
}

#mdt {
    margin-bottom: 10px;
}

#read-full {
    letter-spacing: 0.2rem;
	font-size: 0.6rem;
    text-transform: uppercase;
}

.service-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.service-item:hover {
  background-color: #f9f9f91e;
}

.service-item .icon {
  font-size: 1.75rem;
  color: #ffffffa8;
  min-width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .text h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.service-item .text p {
  margin: 0.5rem 0 0 0;
  font-size: 0.95rem;
  color: #ececec;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-item.open .text p {
  max-height: 200px;
  opacity: 1;
}

.service-item .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff; /* down arrow */
  transition: transform 0.3s ease;
}

.service-item.open .arrow {
  transform: rotate(180deg); /* flips arrow */
}

/******Reviews****/

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: #111827; /* dark card */
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0,181,184,0.3); /* subtle teal border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,181,184,0.25);
  border: 1px solid #00b5b8;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.review-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 14px;
  border: 2px solid #00b5b8;
}

.reviewer-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.stars {
  color: #00e5e8; /* bright turquoise stars */
  font-size: 0.95rem;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #c9d1d9;
}



