/* ===============================
   Core Services Section Styles
   =============================== */
.core-services {
  width: 100%;
  padding-top: 100px;
  position: relative;
  text-align: center;
  background: black; /* assuming your site bg is black */
  overflow: hidden;
}

.services-container {
  max-width: 1139px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin: 0 auto 80px auto;
}

/* === Gradient Badge === */
.services-badge {
  width: 287px;
  height: 28px;
  margin: 0 auto 16px auto; /* center horizontally + spacing below */
  border-radius: 9999px;
  background: linear-gradient(90deg, #FF5900 0%, #0000, #134B9D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-badge {
  width: 285px;
  height: 26px;
  background: black;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-subtitle {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin: 0;
}

.services-title {
  font-size: 64px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-description {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 1200px) {
  .core-services{
    padding-top: 0;
  }
  .services-container {
    max-width: 95%;
  }
}

@media (max-width: 768px) {

  .services-header {
    margin-bottom: 50px;
  }

  .services-title {
    font-size: 36px;
  }

  .services-description {
    font-size: 17px;
  }
}

@media (max-width: 480px) {

  .services-title {
    font-size: 28px;
  }

  .services-subtitle {
    font-size: 14px;
  }
}