/* ABOUT SECTION */
.rj-about {
  padding: 80px 20px;
  background: #fff;
}

.rj-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE STACK */
.rj-about-images {
  position: relative;
}

.rj-about-images img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.img-main {
  height: 420px;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 65%;
  height: 280px;
  object-fit: cover;
  border: 6px solid #fff;
}

.img-main,
.img-overlay {
  border: 6px solid #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* CONTENT */
.rj-about-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.rj-about-content h2 span {
  background: linear-gradient(135deg, #9B2FFF, #FF4FD8, #F4B400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F4B400;
  margin-bottom: 20px;
}

.rj-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rj-about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .img-overlay {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}