/* Kyros - Custom Services Section Layout */
.ky-custom-pill {
  display: inline-block;
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  color: #000;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
}

/*==================================================*/
.custom-service-tags {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.ky-partners-section{
  background-color: var(--primary-main);
}

.ky-partners-container{
  background-color: var(--primary-main);
}

.custom-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-tag:hover {
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  color: #000;
}

.custom-services-header {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.custom-services-button {
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;

}

.custom-services-button:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
  margin-bottom: 5px;
}


/*==================================================*/

.custom-services-section {
  padding: 80px 24px;
  background-color: var(--primary-main);
  color: var(--primary-color);
}

/* Heading Container */
.custom-services-wrapper:first-child {
  max-width: 1280px;
  margin: 0 auto 10px;
}

/* Heading Text */
.custom-services-heading {
  font-size: 30px !important;
  font-weight: 500;
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin: 0;
}

/* Card Container */
.custom-services-wrapper:last-child {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Individual Card */
.custom-service-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Service Title */
.custom-service-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 10px;
  padding-top: 20px;
}

/* Description */
.custom-service-desc {
  font-size: 14px;
  line-height: 1.3;
  color: var(--primary-color);
  opacity: 0.95;
  margin: 0;
  
  
}

/* Responsive */
@media (max-width: 992px) {
  .custom-service-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .custom-service-card {
    flex: 1 1 100%;
  }

  .custom-services-heading {
    font-size: 32px;
    text-align: center;
  }

  .custom-services-wrapper:last-child {
    gap: 24px;
  }
}

/*============= services hero ===========*/

.services-hero-section {
  background-color: var(--primary-main);
  padding: 100px 24px;
  text-align: center;
}

.services-hero-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.services-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: var(--primary-main);
  background: white;
}

.services-hero-heading {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.services-hero-btn {
  background: linear-gradient(135deg, #ffe500, #ffe082, #ffca28, #ffc107, #ffb300);
  color: var(--primary-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.3s;
}

.services-hero-btn:hover {
  background-color: var(--primary-text);
  color: var(--primary-text);
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero-heading {
    font-size: 26px;
  }

  .services-hero-section {
    padding: 60px 20px;
  }
  .custom-services-section{
    background-color: var(--primary-main);
  }
}
