.rr-services {
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.rr-subtitle {
  color: #fd7e14;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rr-title {
  font-weight: 700;
  margin: 10px 0;
}

.rr-desc {
  max-width: 700px;
  margin: auto;
  opacity: 0.85;
}

/* Navigation */
.rr-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rr-nav button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  transition: 0.4s;
}

.rr-nav button.active,
.rr-nav button:hover {
  background: #fd7e14;
  color: #000;
  transform: translateX(8px);
}

/* Cards */
.rr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.rr-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 15px;
  text-align: center;
  transition: 0.4s;
}

.rr-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.rr-card h4 {
  color: #fd7e14;
  margin-bottom: 8px;
}

.rr-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
