/* ===== FULL WIDTH ===== */
.hp-process {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;

  background-color: #153f5f;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* CONTAINER */
.hp-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* TEXT */
.hp-subtitle {
  font-size: 14px;
	font-weight:bold;
  letter-spacing: 2px;
	color:#FFF;
}

.hp-title {
  font-size: 42px;
  margin: 10px 0;
	color:#FFF;
}

.hp-desc {
  max-width: 700px;
  margin: 0 auto 60px;
	color:#FFF;
}

/* ===== TIMELINE ===== */
.hp-steps-line {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

/* LINE */
.hp-steps-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: gold;
}

/* STEP ITEM */
.hp-step-item {
  width: 18%;
  position: relative;
  transition: all 0.3s ease;
}

/* CIRCLE */
.hp-circle {
  width: 70px;
  height: 70px;
  border: 2px solid gold;
  border-radius: 50%;
  margin: 0 auto 20px;
  line-height: 70px;
  font-size: 20px;
  color: gold;
  background: #153f5f;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.hp-step-item:hover {
  transform: translateY(-5px);
}

.hp-step-item:hover .hp-circle {
  background: gold;
  color: #071a2f;
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* GLOW */
.hp-step-item:hover .hp-circle::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* TEXT */
.hp-step-item h4 {
  margin-bottom: 10px;
	color:#FFF;
	font-size:18px;
}

.hp-step-item p {
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s;
}

.hp-step-item:hover h4 {
  color: gold;
}

.hp-step-item:hover p {
  opacity: 1;
}

/* GUARANTEE */
.hp-guarantee {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 28px;
  border: 1px solid gold;
  border-radius: 30px;
  color: gold;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hp-steps-line {
    flex-direction: column;
    gap: 40px;
  }

  .hp-steps-line::before {
    display: none;
  }

  .hp-step-item {
    width: 100%;
  }
}



/* ===== FAQ's ===== */


#rkfaq {
  padding: 80px 20px;
}

#rkfaq .rkfaq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

/* LEFT */
#rkfaq .rkfaq-left {
  width: 40%;
}

#rkfaq .rkfaq-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fcd114;
}

#rkfaq .rkfaq-title {
  font-size: 52px;
	font-weight:800;
  margin: 15px 0;
  line-height: 1.2;
	color:#fff;
}

#rkfaq .rkfaq-desc {
  color: #fff;
  margin-bottom: 20px;
}

#rkfaq .rkfaq-btn {
  background: #fcd114;;
  color: #303030 !important;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-block;
	border-radius:10px;
	
}

/* RIGHT */
#rkfaq .rkfaq-right {
  width: 60%;
}

#rkfaq .rkfaq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

/* Remove default arrow */
#rkfaq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 25px;
	color:#fff;
}

#rkfaq summary::-webkit-details-marker {
  display: none;
}

/* Custom + icon */
#rkfaq summary::after {
  content: "+";
  position: absolute;
  right: 0;
}

#rkfaq details[open] summary::after {
  content: "-";
}

#rkfaq details p {
  margin-top: 10px;
  color: #fff;
	opacity:0.5;
}

/* MOBILE */
@media(max-width:768px){
  #rkfaq .rkfaq-container {
    flex-direction: column;
  }
  #rkfaq .rkfaq-left,
  #rkfaq .rkfaq-right {
    width: 100%;
  }
}

/* ===== Direct Hire Staff Page header font ===== */
.rk-hero-title {
  color: #ffffff;
  font-size: 60px !important; /* adjust based on design */
  font-weight: 800 !important;
}

.rk-yellow {
  color: #fcd114; /* golden yellow */
}

/* ===== Direct Hire Staff Page counter ===== */

#rk-stats {
  padding: 40px 20px;
}

#rk-stats .rk-stats-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

/* EACH BOX */
#rk-stats .rk-stat {
  flex: 1;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

#rk-stats .rk-stat:last-child {
  border-right: none;
}

/* NUMBER */
#rk-stats .rk-stat h3 {
  color: #fcd114;
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* ICON (SVG FIX) */
#rk-stats .rk-icon {
  height: 32px;              /* match h3 visual height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

#rk-stats .rk-icon img {
  height: 100%;
  width: auto;
  filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(600%) hue-rotate(5deg); 
  /* makes SVG gold like numbers */
}

/* TEXT */
#rk-stats .rk-stat p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
}

/* MOBILE */
@media(max-width:768px){
  #rk-stats .rk-stats-wrap {
    flex-direction: column;
  }

  #rk-stats .rk-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  #rk-stats .rk-stat:last-child {
    border-bottom: none;
  }
}<!-- This website is optimized by Airlift. Learn more: https://airlift.net. Template:. Learn more: https://airlift.net. Template: 6a3dc795d36f73bd13b9b20c. Config Timestamp: 2026-06-26 00:28:04 UTC, Cached Timestamp: 2026-07-09 00:36:01 UTC, Optimization Time: 3.75ms -->