.unique-services {
  padding: 80px 0;
  background: #f7f9ff;
}

.services-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-heading h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1324;
}

.services-heading p {
  color: #555;
  margin-top: 10px;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all .3s ease;
  border-left: 5px solid #d4af37;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box .icon {
  font-size: 2.3rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1324;
}

.service-box p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 12px;
}

.service-box ul {
  padding-left: 18px;
  margin: 0;
}

.service-box ul li {
  font-size: .9rem;
  color: #444;
  margin-bottom: 6px;
}

.service-box.featured {
  background: linear-gradient(135deg, #0b1324, #162a4a);
  color: #fff;
  border-left-color: #d4af37;
}

.service-box.featured h3,
.service-box.featured p,
.service-box.featured ul li {
  color: #fff;
}

.service-box.featured .icon {
  color: #d4af37;
}

/* 🔹 MOBILE 320px SAFE */
@media (max-width: 480px) {
  .services-heading h2 {
    font-size: 2rem;
  }

  .service-box {
    padding: 22px 18px;
  }
}
