
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', sans-serif; */
  }
  
  /* HERO FIX */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 80px 8%;
  background: #f3eaea;
}

/* LEFT */
.hero-left {
  flex: 1;
  /* max-width: 950px; */
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #ff2d55;
}

/* TEXT */
.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff2d55, #ff6a6a);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
}

.btn-outline {
  border: 2px solid #ff2d55;
  padding: 14px 26px;
  border-radius: 10px;
  color: #ff2d55;
}



/* RIGHT IMAGE */
.hero-right {
  /* flex: 1;
  display: flex;
  justify-content: center; */
}

.image-card {
  background: #d9e6f2;
  padding: 12px;
  border-radius: 20px;
}

.image-card img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }
}


@media (min-width: 1920px) {
  .hero-sec {
    padding: 60px 10%;
  }
}

/* HERO — fluid gap + constrained left panel */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 80px);   /* was hard 80px — now fluid */
  /* padding: 60px 6%;               was 80px 8% — breathes on laptops */
  background: #f3eaea;
}

.hero-left {
  flex: 1;
                /* was 950px — caused overcrowding */
}

.hero h1 {
  font-size: clamp(28px, 3.5vw, 48px);  /* fluid — no jump at breakpoints */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #666;
  margin-bottom: 20px;
}

/* ADD this new breakpoint between tablet and desktop */
@media (max-width: 1280px) {
  .hero {
    gap: 40px;
    padding: 60px 5%;
  }

  .hero-left {
    /* max-width: 480px; */
  }

  .image-card img {
    max-width: 340px;
  }
}

/* existing 1024px breakpoint — keep but update padding */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .image-card img {
    max-width: 100%;
  }
}

  .features {
  padding: 100px 12%;
  display:flex;
  flex-direction:column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.feature-card {
  background: #f3f3f3;
  padding: 40px 30px;
  border-radius: 30px;
  flex: 1;
  transition: 0.3s ease;
  height:auto;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff3d6b, #ff7a59);
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom:12px;
  color: #111;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .feature-card {
    width: 100%;
  }
}

.text-line{
  margin-bottom:60px;
}

.insights {
  /* background: #000; */
  padding: 0px 12%;
  display:flex;
  flex-direction:column;
  height:auto;
  /* margin-bottom:100px; */
}

.insights .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  text-align: center;
}

.insight-item {
  max-width: 300px;
  margin: 0 auto;
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;

  /* gradient text icon */
  background: linear-gradient(135deg, #ff2d55, #ff7a59);
  -webkit-background-clip: text;
  
}

.insight-item p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .insights .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insights .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .icon {
    font-size: 32px;
  }
}

.skills {
  /* background: #000; */
  padding: 100px 12%;
  display:flex;
  flex-direction:column;
  
}

.skills .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* CARD */
.skill-card {
  flex: 1;
  background: #fff;
  border-radius: 40px;
  padding: 40px 35px;
  position: relative;

  /* red border glow */
  border: 2px solid transparent;
  background-clip: padding-box;
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 2px;
  background: linear-gradient(135deg, #ffe0e6, #ffe8e2);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HEADER PILL */
.card-header {
  display: inline-block;
  background: #ffdde6 !important;
  padding: 16px 30px 16px 30px !important;
  border-radius: 20px !important;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color:#ff4b7b;
}

/* DESCRIPTION */
.card-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 25px 0px 25px 0px;
}

/* LIST */
.skill-list {
  list-style: none;
  padding: 0;
}

.skill-list li {
  font-size: 17px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
}

/* ICON DOT */
.skill-list li::before {
  content: "•";
  font-size: 20px;
  color: #ff3d6b;
}

/* Responsive */
@media (max-width: 992px) {
  .skills .container {
    flex-direction: column;
  }
}

.intro {
  background: #e9e6e6;
  padding: 80px 8%;
}

.intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-desc {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  
}

/* Responsive */
@media (max-width: 768px) {
  .intro-title {
    font-size: 32px;
  }

  .intro-desc {
    font-size: 16px;
  }
}


.sx-cta-wrap-9x {
  position: relative;
  background: #000;
  padding: 100px 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom:100px;
}

/* LEFT CONTENT */
.sx-cta-content-9x {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.sx-cta-title-9x {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* BUTTON */
.sx-cta-btn-9x {
  display: inline-block;
  background: linear-gradient(135deg, #ff2d55, #ff5f6d);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.sx-cta-btn-9x:hover{
    color:#000;
}



/* RIGHT IMAGE */
.sx-cta-image-9x {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;

  background: url("/assets/images/code-cta.png") right center / cover no-repeat;

  /* 🔥 THIS CREATES THE PERFECT FADE */
  -webkit-mask-image: linear-gradient(to left, black 65%, transparent 100%);
  mask-image: linear-gradient(to left, black 65%, transparent 100%);
}

/* OPTIONAL: extra smooth blend */
.sx-cta-wrap-9x::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 40%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* ================= BASE ================= */
.sx-cta-wrap-9x {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  background: #000;
  overflow: hidden;
}

.sx-cta-content-9x {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.sx-cta-title-9x {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 30px;
}

.sx-cta-btn-9x {
  display: inline-block;
  background: linear-gradient(135deg, #ff2d55, #ff7a59);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
}

/* IMAGE */
.sx-cta-image-9x {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: url("../assets/images/code-cta.png") right center / cover no-repeat;

  -webkit-mask-image: linear-gradient(to left, black 65%, transparent 100%);
  mask-image: linear-gradient(to left, black 65%, transparent 100%);
}


/* ================= LAPTOP ================= */
@media (max-width: 1199px) {

  .sx-cta-title-9x {
    font-size: 40px;
  }

  .sx-cta-image-9x {
    width: 60%;
  }
}


/* ================= TABLET ================= */
@media (max-width: 991px) {

  .sx-cta-wrap-9x {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 6%;
  }

  .sx-cta-title-9x {
    font-size: 32px;
  }

  .sx-cta-content-9x {
    max-width: 100%;
  }

  /* soften image */
  .sx-cta-image-9x {
    width: 100%;
    opacity: 0.3;

    -webkit-mask-image: none;
    mask-image: none;
  }
}


/* ================= LARGE MOBILE ================= */
@media (max-width: 767px) {

  .sx-cta-wrap-9x {
    padding: 60px 5%;
    text-align: center;
    align-items: center;
  }

  .sx-cta-title-9x {
    font-size: 26px;
  }

  .sx-cta-btn-9x {
    padding: 14px 26px;
    font-size: 14px;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 575px) {

  .sx-cta-wrap-9x {
    padding: 50px 20px;
  }

  .sx-cta-title-9x {
    font-size: 22px;
    line-height: 1.4;
  }

  .sx-cta-btn-9x {
    width: 100%;
    text-align: center;
  }

  /* optional: hide image completely */
  .sx-cta-image-9x {
    display: none;
  }
}


/* ================= EXTRA SMALL ================= */
@media (max-width: 374px) {

  .sx-cta-title-9x {
    font-size: 20px;
  }

  .sx-cta-btn-9x {
    font-size: 13px;
    padding: 12px 20px;
  }
}

/* TABLE WRAPPER */
.sx-compare-table-wrap-7x {
  margin-top: 40px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  margin-bottom:100px;
}

/* TABLE */
.sx-compare-table-7x {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* HEADER */
.sx-compare-table-7x thead {
  background: #dfe5ec;
}

.sx-compare-table-7x th {
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
}

/* BODY */
.sx-compare-table-7x td {
  padding: 18px 20px;
  color: #333;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}

/* FIRST COLUMN */
.sx-compare-table-7x td:first-child {
  font-weight: 600;
  color: #111;
  width: 200px;
}

/* ROW HOVER */
.sx-compare-table-7x tbody tr:hover {
  background: #f9f9f9;
}

/* .sx-steps-wrap-8x {
  background: #e9e6e6;
  padding: 100px 80px;
} */

.sx-steps-container-8x {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom:100px
}

/* CARD */
.sx-step-card-8x {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px 35px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 700px;
  position: relative;
}

/* ZIG-ZAG ALIGNMENT */
.sx-step-card-8x.left {
  align-self: flex-start;
}

.sx-step-card-8x.right {
  align-self: flex-end;
}

/* BADGE */
.sx-step-badge-8x {
  min-width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff2d55, #ff7a59);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.sx-step-card-8x h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sx-step-card-8x p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}


.sx-assess-container-9x {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  /* margin-bottom:100px; */
}


/* CARD BASE */
.sx-assess-card-9x {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  /* 3 cards per row */
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
}

/* WIDE CARDS (bottom row) */
.sx-assess-card-9x.wide {
  flex: 1 1 calc(50% - 15px);
}

/* ICON */
.sx-assess-icon-9x {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d55, #ff7a59);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

/* TEXT */
.sx-assess-card-9x h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sx-assess-card-9x p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}


.sx-cost-container-9x {
  display: flex;
  gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom:100px
}

/* CARD */
.sx-cost-card-9x {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  /* border: 1px solid rgba(255, 60, 100, 0.3); */
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* PILL */
.sx-cost-pill-9x {
  display: inline-block;
  background: #ffe6ea;
  color: #ff2d55;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.sx-cost-title-9x {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* LIST */
.sx-cost-list-9x {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-cost-list-9x li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}


/* CUSTOM BULLET */
.sx-cost-list-9x li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #ff2d55;
}@media (max-width: 768px) {

  .sx-cost-wrap-9x {
    /* padding: 0px 20px; */
  }

  .sx-cost-card-9x {
    flex: 1 1 100%;
  }

  .sx-cost-title-9x {
    font-size: 24px;
  }

  .sx-cost-list-9x li {
    font-size: 16px;
  }
}


.sx-interview-container-10x {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom:100px;
}

/* MAIN BOX */
.sx-interview-box-10x {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  
}

/* TITLE */
.sx-interview-title-10x {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff2d55;
}

.sx-interview-title-10x.red {
  color: #ff2d55;
}

/* QUESTION ITEM */
.sx-interview-item-10x {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 20px 25px;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}

.sx-interview-item-10x h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.sx-interview-item-10x p {
  font-size: 15px;
  color: #666;
}

/* RED FLAGS LIST */
.sx-redflag-list-10x {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-redflag-list-10x li {
  position: relative;
  padding: 18px 20px 18px 40px;
  margin-bottom: 15px;
  background: #f7f7f7;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #333;
}


/* RED ARROW ICON */
.sx-redflag-list-10x li::before {
  content: "➤";
  position: absolute;
  left: 15px;
  top: 18px;
  color: #ff2d55;
  font-size: 14px;
}
@media (max-width: 768px) {

  .sx-interview-wrap-10x {
    /* padding: 0px 20px; */
  }

  .sx-interview-box-10x {
    padding: 25px;
  }

  .sx-interview-title-10x {
    font-size: 22px;
  }

  .sx-interview-item-10x h4 {
    font-size: 16px;
  }

  .sx-redflag-list-10x li {
    font-size: 14px;
  }
}

.sx-process-container-11x {
  /* max-width: 1200px; */
  margin: 0 auto;
}

.sx-process-wrap-11x{
  /* margin-bottom:100px; */
}


/* HEADER */
.sx-process-title-11x {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.sx-process-desc-11x {
  font-size: 18px;
  color: #444;
  max-width: 850px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* FLEX ROW */
.sx-process-row-11x {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  
}

/* STEP */
.sx-process-step-11x {
  flex: 1 1 calc(25% - 20px);
  text-align: center;
  min-width: 220px;
}

/* NUMBER CIRCLE */
.sx-process-circle-11x {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d55, #ff7a59);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.sx-process-step-11x h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sx-process-step-11x p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 992px) {

  .sx-process-step-11x {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {

  .sx-process-wrap-11x {
    padding: 0px 20px;
  }

  .sx-process-title-11x {
    font-size: 28px;
  }

  .sx-process-step-11x {
    flex: 1 1 100%;
  }

  .sx-process-desc-11x {
    font-size: 16px;
  }
}

.sx-problem-wrap-12x {
  /* background: #e9e6e6;
  padding: 100px 60px; */
}

/* CONTAINER */
.sx-problem-container-12x {
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* ROWS */
.sx-problem-row-12x {
  display: flex;
  justify-content: center;
  gap: 60px;
  /* margin-bottom: 80px; */
  flex-wrap: wrap;
}

/* DIFFERENT SPACING FOR ROWS */
.sx-problem-row-12x.top {
  justify-content: space-between;
}

.sx-problem-row-12x.bottom {
  justify-content: space-between;
}

/* ITEM */
.sx-problem-item-12x {
  flex: 1 1 250px;
  /* max-width: 260px; */
  text-align: center;
}

/* ICON */
.sx-problem-item-12x img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

/* TITLE */
.sx-problem-item-12x h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.sx-problem-item-12x p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}@media (max-width: 992px) {

  .sx-problem-row-12x.top,
  .sx-problem-row-12x.bottom {
    justify-content: center;
  }

  .sx-problem-item-12x {
    flex: 1 1 45%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {

  .sx-problem-wrap-12x {
    padding: 60px 20px;
  }

  .sx-problem-item-12x {
    flex: 1 1 100%;
  }

  .sx-problem-item-12x h4 {
    font-size: 18px;
  }

  .sx-problem-item-12x p {
    font-size: 14px;
  }

  .sx-process-row-11x{
    flex-direction:column;
  }


}
  
.hiring_steps_common_container {
    @media (max-width: 992px) {
        flex-wrap: wrap;
    }
}
.hiring_steps_content_container {
    position: relative;
    flex: 1 1 50%;

    &:after {
        content: '';
        position: absolute;
        background: url('../assets/icon/long_arrow.svg') no-repeat center;
        width: 100px;
        height: 12px;
        top: 34px;
        left: 100%;
        transform: translateX(-50%);
        display: block;
    }
    &:last-child {
        &:after {

            content: unset !important;    
        }
    }

    @media (max-width: 992px) {
        &:after {
            display: none;
        }
    }

}

.hiring_content_box {
    h3 {
        font-size: 20px;

        @media (min-width: 992px) {
            min-height: 60px;
        }
    }
}

.sx-simple-table-15x {
  margin-bottom:100px;
}

/* WRAPPER */
.sx-table-wrap-15x {
  /* max-width: 1100px; */
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

/* TABLE */
.sx-table-15x {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.sx-table-15x thead tr {
  border-bottom: 2px solid #e5e7eb; /* 🔥 strong header line */
}

.sx-table-15x th {
  text-align: left;
  padding: 18px;
  font-size: 14px;
  text-transform: uppercase;
  color: #666;
  background: #f5f7fa;
}

/* BODY CELLS */
.sx-table-15x td {
  padding: 18px;
  font-size: 15px;
  color: #333;
}

/* 🔥 ROW DIVIDER (MAIN FIX) */
.sx-table-15x tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

/* REMOVE LAST LINE */
.sx-table-15x tbody tr:last-child {
  border-bottom: none;
}

/* FIRST COLUMN */
.sx-table-15x td:first-child {
  font-weight: 600;
  color: #111;
}

/* 🔥 COLUMN SEPARATORS */
.sx-table-15x td:not(:first-child),
.sx-table-15x th:not(:first-child) {
  border-left: 1px solid #f1f1f1;
}

/* 🔥 HIGHLIGHT COLUMN */
.sx-table-15x .highlight {
  background: #e4fff1;
  color: #088a43;
  font-weight: 600;
}

/* HEADER HIGHLIGHT */
.sx-table-15x th.highlight {
  background: #088a43;
  color: #fff;
}

/* VALUE COLORS */
.good {
  color: #16a34a;
  font-weight: 600;
}

.best {
  color: #16a34a;
  font-weight: 700;
}

/* ROW HOVER */
.sx-table-15x tbody tr:hover {
  background: #fafafa;
}

.btn-outline:hover{
  color: black;
}


.count_box {
    position: relative;
    display: inline-block;
    width: 60px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background-color: black;
    height: 69px;
    color: white;

    span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 38px;
        font-weight: 700;
    }
}

/* ============================================================
   MOBILE RESPONSIVE — hire-new-developer page
   Add this file AFTER hire_common.css in your <head>
   Covers: ≤767px (mobile) and ≤575px (small mobile)
   NO HTML changes needed — purely additive overrides
   ============================================================ */


/* ─────────────────────────────────────────
   1. GLOBAL / BASE
───────────────────────────────────────── */
@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  /* Section padding reset — all insights/skills sections */
  .insights,
  .skills,
  .features {
    padding: 40px 5% !important;
  }

  /* Title block */
  .title_block .title {
    /* font-size: 24px !important; */
    /* line-height: 1.3 !important; */
  }

  .title_block .sub-title {
    font-size: 17px !important;
    /* line-height: 1.6 !important; */
  }
}


/* ─────────────────────────────────────────
   2. HERO SECTION
───────────────────────────────────────── */
@media (max-width: 767px) {

  .hero {
    flex-direction: column !important;
    gap: 28px !important;
    padding: 40px 5% !important;
    text-align: center !important;
  }

  .hero-left {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero h1 {
    font-size: 26px !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
  }

  .hero p {
    font-size: 16px !important;
    margin-bottom: 14px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100% !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    font-weight:600 ;
  }

  .hero-right {
    width: 100% !important;
  }

  .image-card {
    padding: 8px !important;
    border-radius: 14px !important;
  }

  .image-card img {
    max-width: 100% !important;
    border-radius: 10px !important;
  }
}


/* ─────────────────────────────────────────
   3. INSIGHTS — Problem Items (When to Hire)
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-problem-container-12x {
    padding: 0 !important;
  }

  .sx-problem-row-12x.top,
  .sx-problem-row-12x.bottom {
    flex-direction: column !important;
    gap: 28px !important;
    align-items: center !important;
  }

  .sx-problem-item-12x {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
  }

  .sx-problem-item-12x h4 {
    font-size: 19px !important;
  }

  .sx-problem-item-12x p {
    font-size: 17px !important;
    text-align: center;
  }

  .sx-problem-item-12x img {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 12px !important;
  }
}


/* ─────────────────────────────────────────
   4. SKILLS — Two Column Cards
───────────────────────────────────────── */
@media (max-width: 767px) {

  .skills {
    padding: 40px 5% !important;
  }

  .skills .container {
    flex-direction: column !important;
    gap: 20px !important;
    max-width: 100% !important;
    padding:0px;
  }

  .skill-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    width: 100% !important;
  }

  .skill-card::before {
    border-radius: 22px !important;
  }

  .card-header {
    font-size: 16px !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
  }

  .card-desc {
    font-size: 17px !important;
    margin: 16px 0 !important;
  }

  .skill-list li {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }
}


/* ─────────────────────────────────────────
   5. CTA BANNER
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-cta-wrap-9x {
    padding: 48px 5% !important;
    text-align: center !important;
    align-items: center !important;
    flex-direction: column !important;
    margin: 20px 0px !important;
  }

  .sx-cta-content-9x {
    max-width: 100% !important;
    width: 100% !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .sx-cta-title-9x {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 24px !important;
  }

  .sx-cta-btn-9x {
    max-width: fit-content;
    text-align: center !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
  }

  .sx-cta-image-9x {
    display: none !important;
  }

  .sx-cta-wrap-9x::after {
    display: none !important;
  }
}


/* ─────────────────────────────────────────
   6. COMPARISON TABLE — Scrollable on mobile
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-simple-table-15x {
    margin-bottom: 0px !important;
  }

  /* Make the table wrapper scrollable horizontally */
  .sx-table-wrap-15x {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 10px !important;
  }

  /* Hint that table scrolls */
  .sx-table-wrap-15x::before {
    content: "← Scroll to see more →";
    display: block !important;
    text-align: center !important;
    font-size: 12px !important;
    color: #999 !important;
    padding: 8px !important;
    background: #f9f9f9 !important;
    border-bottom: 1px solid #eee !important;
  }

  .sx-table-15x {
    min-width: 680px !important;  /* forces scroll rather than squishing */
    font-size: 13px !important;
  }

  .sx-table-15x th {
    padding: 12px 10px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  .sx-table-15x td {
    padding: 12px 10px !important;
    font-size: 14px !important;
    min-width: 120px !important;
  }

  .sx-table-15x td:first-child {
  min-width: 110px !important;
  position: sticky !important;
  left: 0 !important;   /* change from left → right */
  background: #fff !important;
  z-index: 2 !important; /* slightly higher to avoid overlap issues */
  box-shadow: -2px 0 4px rgba(0,0,0,0.06) !important; /* flip shadow direction */
}

  .sx-table-15x th:first-child {
    position: sticky !important;
    left: 0 !important;
    /* background: #f5f7fa !important; */
    z-index: 2 !important;
    box-shadow: 2px 0 4px rgba(0,0,0,0.06) !important;

  }
  
}
.lh-2{
  text-align: justify;
}

/* ─────────────────────────────────────────
   7. STEP CARDS (How to Hire — Zig-zag)
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-steps-container-8x {
    gap: 16px !important;
    margin-bottom: 0px !important;
  }

  .sx-step-card-8x {
    max-width: 100% !important;
    align-self: stretch !important;   /* remove zig-zag on mobile */
    padding: 20px !important;
    border-radius: 18px !important;
    gap: 14px !important;
  }

  .sx-step-card-8x.left,
  .sx-step-card-8x.right {
    align-self: stretch !important;
  }

  .sx-step-badge-8x {
    min-width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
  }

  .sx-step-card-8x h3 {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .sx-step-card-8x p {
    font-size: 15px !important;
  }
}


/* ─────────────────────────────────────────
   8. COST CARDS
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-cost-container-9x {
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 0px !important;
  }

  .sx-cost-card-9x {
    flex: 1 1 100% !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .sx-cost-title-9x {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }

  .sx-cost-pill-9x {
    font-size: 14px !important;
    padding: 8px 14px !important;
  }

  .sx-cost-list-9x li {
    font-size: 16px !important;
    margin-bottom: 14px !important;
    padding-left: 28px !important;
  }

  .sx-cost-list-9x li::before {
    width: 12px !important;
    height: 12px !important;
    top: 6px !important;
  }
}


/* ─────────────────────────────────────────
   9. INTERVIEW QUESTIONS + RED FLAGS
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-interview-container-10x {
    gap: 40px !important;
    margin-bottom: 0px !important;
  }

  .sx-interview-box-10x {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .sx-interview-title-10x {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }

  .sx-interview-item-10x {
    padding: 14px 16px !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
  }

  .sx-interview-item-10x h4 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  .sx-interview-item-10x p {
    font-size: 15px !important;
  }

  .sx-redflag-list-10x li {
    font-size: 15px !important;
    padding: 14px 14px 14px 36px !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    line-height: 1.9;
  }

  .sx-redflag-list-10x li::before {
    left: 12px !important;
    top: 15px !important;
    font-size: 12px !important;
  }
}


/* ─────────────────────────────────────────
   10. ASSESSMENT CARDS
───────────────────────────────────────── */
@media (max-width: 767px) {

  .sx-assess-container-9x {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .sx-assess-card-9x,
  .sx-assess-card-9x.wide {
    flex: 1 1 100% !important;
    min-width: unset !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .sx-assess-icon-9x {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 14px !important;
  }

  .sx-assess-icon-9x img {
    width: 26px !important;
  }

  .sx-assess-card-9x h3 {
    font-size: 17px !important;
    margin-bottom: 8px !important;
  }

  .sx-assess-card-9x p {
    font-size: 15px !important;
  }
}


/* ─────────────────────────────────────────
   11. HIRING PROCESS STEPS (4-column → stack)
───────────────────────────────────────── */
@media (max-width: 767px) {

  .hiring_steps_common_container {
    flex-direction: column !important;
    gap: 28px !important;
  }

  .hiring_steps_content_container {
    flex: 1 1 100% !important;
    width: 100% !important;
  }

  /* Hide the connector arrows on mobile */
  .hiring_steps_content_container::after {
    display: none !important;
  }

  .count_box {
    width: 50px !important;
    height: 57px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .count_box span {
    font-size: 26px !important;
  }

  .hiring_content_box h3 {
    font-size: 19px !important;
    text-align: center;
    /* min-height: unset !important; */
  }

  .hiring_content_box p {
    font-size: 16px !important;
  }
}


/* ─────────────────────────────────────────
   12. FAQ SECTION
───────────────────────────────────────── */
@media (max-width: 767px) {

  .faq-sec .pt-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  @media (max-width: 767px) {
  .faq-sec.mt-5 {
    margin-top: 0 !important;
  }

  
}

  .faq-sec .container {
    padding: 0 16px !important;
  }

  /* Stack title and accordion vertically */
  .faq-sec .row {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .faq-sec .col-lg-3,
  .faq-sec .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .faq-sec .title {
    font-size: 22px !important;
  }

  .faq-sec .sub-title {
    font-size: 16px !important;
  }

  .accordion-button {
    font-size: 14px !important;
    padding: 14px 16px !important;
    line-height: 1.5 !important;
  }

  .accordion-body p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}


/* ─────────────────────────────────────────
   13. EXTRA SMALL MOBILE (≤400px)
───────────────────────────────────────── */
@media (max-width: 400px) {

  .hero h1 {
    font-size: 26px !important;
  }

  .sx-cta-title-9x {
    font-size: 18px !important;
  }

  .sx-cost-title-9x {
    /* font-size: 17px !important; */
  }

  .skill-list li {
    font-size: 16px !important;
  }

  .sx-table-15x {
    min-width: 600px !important;
  }
}

/* Wrapper */
.rg-hero {
  padding: 100px 20px;
  text-align: center;
  background: #f1eeef;
}

.rg-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Text */
.rg-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #ff0042;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.rg-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d2f33;
}

.rg-subtitle {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rg-description {
  font-size: 17px;
  color: #777;
  line-height: 1.7;
  /* margin-bottom: 40px; */
}

/* Search */
.rg-search-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.rg-input-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 12px 15px;
  width: 350px;
  border: 1px solid #ddd;
}

.rg-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.rg-icon {
  margin-right: 8px;
  color: #888;
}

.rg-dropdown .rg-select {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .rg-title {
    font-size: 36px;
  }

  .rg-input-wrapper {
    width: 100%;
  }

  .rg-search-box {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Section */
.rg-list-section {
  padding: 60px 20px;
  background: #f5f6f8;
}

.rg-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Category Block */
.rg-category {
  margin-bottom: 50px;
}

/* Header */
.rg-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rg-category-icon {
  font-size: 18px;
  color: #2563eb;
}

.rg-category-title {
  font-size: 20px;
  font-weight: 600;
  color: #ff0042;
}

/* Grid Layout */
.rg-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Links */
.rg-link {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 510;
  transition: all 0.2s ease;
}

.rg-link:hover {
  color: #ff0042;
  /* text-decoration: underline; */
}

/* Responsive */
@media (max-width: 900px) {
  .rg-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rg-links-grid {
    grid-template-columns: 1fr;
  }
}