body { background-color: var(--bg-dark-purple); }

/* --- Hero --- */
.hero-section {
  background: linear-gradient(rgba(32, 5, 32, 0.7), rgba(32, 5, 32, 0.9)),
    url("../../../images/external/images-unsplash-com-photo-1607252650355-f7fd0460ccdb-37dbd699954e.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.accent-text {
  color: var(--accent);
}

/* --- Breadcrumb --- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-main);
}

.breadcrumb-item.active {
  color: var(--text-main);
}

.breadcrumb-item a {
  color: var(--accent);
}

.service-main-img-wrapper {
  position: relative;
  padding: 20px;
}

.main-service-img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--accent);
  color: black;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(249, 181, 34, 0.3);
}

/* --- Service Cards (sub-page variant) --- */
.service-card-alt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-alt:hover {
  border-color: rgba(249, 181, 34, 0.4);
  transform: translateY(-5px);
}

/* --- Process Steps --- */
.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(249, 181, 34, 0.04);
  border-color: rgba(249, 181, 34, 0.3);
  border-left-color: var(--accent);
  transform: translateX(5px);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- Tech Pills --- */
.tech-pill {
  background: var(--deep-purple-page);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  transition: 0.3s;
}

.tech-pill:hover {
  border-color: var(--accent);
  background: rgba(249, 181, 34, 0.1);
  color: var(--accent);
}

/* --- Spec Icon Box --- */
.spec-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(249, 181, 34, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* --- Labels --- */
.label-accent {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
  vertical-align: middle;
  margin-right: 10px;
}
