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-1551650975-87deedd944c3-9779b0cfeed0.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);
}

/* --- Comparison Cards --- */
.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.comparison-card:hover {
  background: rgba(249, 181, 34, 0.04);
  border-color: rgba(249, 181, 34, 0.3);
  transform: translateY(-6px);
}

/* --- Benefit Cards --- */
.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  border-color: rgba(249, 181, 34, 0.4);
  transform: translateY(-5px);
  background: rgba(249, 181, 34, 0.03);
}

/* --- 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);
}

/* --- Industry Tags --- */
.industry-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 22px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  transition: 0.3s;
  display: inline-block;
}

.industry-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249, 181, 34, 0.08);
}

/* --- 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;
}
