.rj-services {
  padding: 80px 20px;
}

.rj-services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.rj-services-heading h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff; /* ✅ FIX: make heading visible */
}

.rj-services-heading h2 span {
  background: linear-gradient(135deg, #9B2FFF, #FF4FD8, #F4B400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rj-services-heading p {
  max-width: 520px;
  margin: auto;
  line-height: 1.6;
  color: #ccc; /* ✅ optional improvement for visibility */
}

/* GRID */
.rj-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* BOX */
.rj-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;

  color: #000;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 2px solid #F4B400;
}

.rj-box:hover {
  transform: translateY(-10px);
}

/* ICON */
.rj-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9B2FFF, #FF4FD8);
}

.rj-icon svg {
  width: 40px;
  fill: #fff;
}

/* TEXT */
.rj-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.rj-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rj-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rj-container {
    grid-template-columns: 1fr;
  }
}