/* ============================================================
   LABEL
============================================================ */
/* This section defines the styles for the section label in the "Services" section of the home page. 
 The label is designed to be visually striking and attention-grabbing, with a bold font, 
 gradient background, and shadow effects. 
 The label is positioned prominently to clearly identify the content and draw attention
  to the key message of the section. */
.content-section--services .content-section__label03 {
  position: absolute;
  top: 30px;
  left: 30px;

  z-index: 10;

  /* FIXED: Added missing display, margin, white-space */
  display: inline-block;
  margin: 0;

  padding: 10px 24px;

  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  /* FIXED: Added missing white-space */
  white-space: nowrap;

  color: #fff;

  /* FIXED: Added gradient stop percentages to match Master */
  background: linear-gradient(135deg, rgb(200, 0, 30) 0%, rgb(0, 0, 0) 100%);

  box-shadow:
    0 4px 15px rgb(254, 254, 254),
    0 0 30px rgba(255, 255, 255, 0.2);

  transition: all 200ms ease;
}

.content-section--services .content-section__label03:hover {
  transform: translateX(-5px) scale(1.02);

  background: linear-gradient(135deg, rgb(0, 110, 141) 0%, rgb(0, 0, 0) 100%);

  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(255, 255, 255, 0.25);
}

#section-services:hover .content-section__label03 {
  transform: translateX(-5px) scale(1.02);

  background: linear-gradient(135deg, rgb(0, 110, 141) 0%, rgb(0, 0, 0) 100%);

  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.6),
    0 0 40px rgba(255, 255, 255, 0.25);
}