/************************************/
/***  Our Services – Rang Mahal   ***/
/************************************/
.icon1 {
  background-image: url("../images/parallax/specialities.jpeg");
  background-size: cover;
  background-position: center center;
  position: relative;
}
/* .icon1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 0.3;
  pointer-events: none;
} */

.icon1 .shell {
  position: relative;
  z-index: 1;
}
/* Section title – centered on dark bg */
.icon1 .section-title {
  text-align: center;
 /*  max-width: 700px; */
  margin: 0 auto;
  padding-top: 40px;
  margin-bottom: 0;
}
.icon1 .section-title h2 {
  color: var(--white-color);
}
.icon1 .section-title h2 span {
  color: var(--gold-color);
}

/* ---------- Services list (base) ---------- */
.ourhiringdesk ul {
  list-style: none;
  margin: 0;
  padding: 70px 0 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.ourhiringdesk ul li {
  cursor: pointer;
  text-align: center;
  transition: transform 0.35s ease;
  position: relative;
}
.ourhiringdesk ul li:hover {
  transform: translateY(-6px);
}
.ourhiringdesk ul li span {
  display: block;
  width: 245px !important;
  height: 260px;
  background-position: top left;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  margin: 0 auto;
}

/* ---------- Normal (outline) icons ---------- */
.ourhiringdesk ul li.step1 span {
  background-image: url("../images/hirepro/Signature%20Dum%20Biryani.png");
}
.ourhiringdesk ul li.step2 span {
  background-image: url("../images/hirepro/Tandoori%20grill.png");
}
.ourhiringdesk ul li.step3 span {
  background-image: url("../images/hirepro/North%20Indian%20Curries.png");
}
.ourhiringdesk ul li.step4 span {
  background-image: url("../images/hirepro/Shawarma%20%26%20Wraps.png");
}
.ourhiringdesk ul li.step5 span {
  background-image: url("../images/hirepro/Turkish%20Pide%20%26%20Kebabs.png");
}
.ourhiringdesk ul li.step6 span {
  background-image: url("../images/hirepro/Dessert.png");
}

/* ---------- Active (color) icons ---------- */
.ourhiringdesk ul li.active.step1 span {
  background-image: url("../images/hirepro/Signature%20Dum%20Biryani%20Color%201.png");
}
.ourhiringdesk ul li.active.step2 span {
  background-image: url("../images/hirepro/Tandoori%20grill%20color%201.png");
}
.ourhiringdesk ul li.active.step3 span {
  background-image: url("../images/hirepro/North%20Indian%20Curries%20Color%201.png");
}
.ourhiringdesk ul li.active.step4 span {
  background-image: url("../images/hirepro/Shawarma%20%26%20Wraps%20Color%201%281%29.png");
}
.ourhiringdesk ul li.active.step5 span {
  background-image: url("../images/hirepro/Turkish%20Pide%20%26%20Kebabs%20Color%201%281%29.png");
}
.ourhiringdesk ul li.active.step6 span {
  background-image: url("../images/hirepro/Dessert%20Color%20maroon%201.png");
}

.ourhiringdesk ul li.active span {
  transform: scale(1.06);
}
/* Label – absolute so images stay on ONE line (desktop) */
.ourhiringdesk ul li .service-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  top: auto;
  margin: 0;
  max-width: none;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white-color);
  white-space: nowrap;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
/* even items (2,4,6) → label TOP */
.ourhiringdesk ul li:nth-child(even) .service-label {
  bottom: auto;
  top: -8px;
}
.ourhiringdesk ul li.active .service-label {
  color: var(--gold-color);
  text-shadow: 0 2px 10px rgba(217, 166, 46, 0.35);
}

/* ---------- Desktop ≥1200px: ALL 6 ITEMS IN ONE ROW ---------- */
@media only screen and (min-width: 1200px) {
  .ourhiringdesk ul {
    flex-wrap: nowrap;
    gap: 14px;
  }
  .ourhiringdesk ul li {
    flex: 1 1 0;
    min-width: 0;
  }
  .ourhiringdesk ul li span {
    width: 100% !important;
    max-width: 200px;
    height: auto;
    aspect-ratio: 245 / 260;
    background-size: 100% auto;
  }
  .ourhiringdesk ul li .service-label {
    font-size: 13px;
    white-space: normal;
    max-width: 100%;
  }
}

/* ---------- YOUR ORIGINAL MOBILE DESIGN (RESTORED) ---------- */
@media only screen and (max-width: 991px) {
  .services-title {
    padding-top: 30px;
  }
  .ourhiringdesk ul {
    gap: 14px;
    padding: 30px 0 40px;
  }
  .ourhiringdesk ul li span {
    width: 44vw !important;
    height: 46vw;
    background-size: 100% auto;
  }
  /* Mobile – label always below the image */
  .ourhiringdesk ul li .service-label {
    position: static;
    transform: none;
    margin: 12px auto 0;
    max-width: 44vw;
    font-size: 13px;
    white-space: normal;
  }
}
@media only screen and (max-width: 575px) {
  .services-title {
    font-size: 26px;
  }
  .ourhiringdesk ul li span {
    width: 42vw !important;
    height: 44vw;
  }
  .ourhiringdesk ul li .service-label {
    font-size: 11px;
    max-width: 42vw;
  }
}
