* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  height: 100%;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.success-framework {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.framework-title {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 500;
}

.framework-title span {
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Staffing Services Tabs (same UI as about-page) */
.staffing-services-section {
  padding: 80px 0 100px;
  background: #fff;
  text-align: center;
}

.staffing-section-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 500;
}

.staffing-section-title span {
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.staffing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 50px 0 20px;
  border-bottom: 1px solid transparent;
  border-image-source: linear-gradient(270deg, rgba(47, 71, 172, 0.33) 2.39%, rgba(121, 46, 241, 0.33) 100%);
  border-image-slice: 1;
}

.staffing-tabs .tab-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  color: #949494;
  cursor: pointer;
  min-width: 140px;
  position: relative;
}

.staffing-tabs .tab-btn.active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(270deg, #2f47ac 2.39%, #792ef1 100%);
  border-radius: 6px;
}

.staffing-services-section .tab-content-wrapper {
  margin-top: 40px;
  min-height: 200px;
}

.staffing-services-section .tab-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.staffing-services-section .tab-content.active {
  display: block;
}

.staffing-services-section .mission-vision-text {
  font-size: 18px;
  line-height: 1.8;
  color: #464646;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* GRID */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 40px;
}

/* LEFT & RIGHT COLUMNS */
.framework-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.framework-col.left {
  align-items: flex-end;
  text-align: right;
}

.framework-col.right {
  align-items: flex-start;
  text-align: left;
}

/* FEATURE ITEM */
.framework-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 360px;
}

.framework-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.framework-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.framework-center {
  display: flex;
  justify-content: center;
}

/* Container */
.center-bg {
  position: relative;
  width: 320px;
  height: 320px;
}

/* Blue background image */
.center-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Trophy on top */
.center-trophy-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%; /* adjust if needed */
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .center-bg {
    width: 240px;
    height: 240px;
  }

  .hero-img{
    margin-top: 35px;
  }

  .center-trophy-img {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .center-bg {
    width: 200px;
    height: 200px;
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .framework-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .framework-col.left,
  .framework-col.right {
    align-items: center;
    text-align: center;
  }

  .framework-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .framework-title {
    font-size: 30px;
  }

  .center-bg {
    width: 240px;
    height: 240px;
  }

  .framework-item {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .framework-title {
    font-size: 26px;
  }
}
.full-width-image {
  width: 100%;
  overflow: hidden; /* prevents horizontal scroll */
}
.process-workflow-image {
  width: 100%;
  overflow: hidden; /* prevents horizontal scroll */
}

.process-workflow-image img {
  width: 100%;
  height: auto; /* maintains aspect ratio */
  display: block; /* removes inline gap */
  object-fit: cover; /* fills width nicely */
}

.framework-img {
  position: relative;
  width: fit-content;
}

.framework-box {
  display: block;
  height: 120px;
  width: 120px;
}

.framework-icon {
  position: absolute;
  top: 46%;
  left: 48%;
  height: 31px;
  width: 31px;
  transform: translate(-50%, -50%);
}

.full-width-image img {
  width: 100%;
  max-width: 600px;
  height: auto; /* maintains aspect ratio */
  display: block; /* removes inline gap */
  object-fit: cover; /* fills width nicely */
}

@media (max-width: 992px) {
  .framework-item {
    display: flex;
    flex-direction: column-reverse; /* 👈 KEY */
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .framework-text h5 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .framework-text p {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
  .framework-item {
    gap: 8px;
  }

  .framework-text h5 {
    font-size: 14px;
  }

  .framework-text p {
    font-size: 12px;
  }
}

.staffing-bg-wrapper {
  background-image: url('../assets/images/bg-and-wave.png');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 120px;
  margin-top: -80px;
}

/* Hero layout */
.staffing-hero {
  padding: 115px 0 40px;
}

.staffing-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.staffing-hero-content {
  max-width: 560px;
}

.staffing-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1f1f1f;
}

.staffing-hero-content h1 span {
  color: #5b4bdb;
}

.staffing-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b7a;
}

/* Talent models */
.staffing-models {
  margin-top: 20px;
}

.staffing-models h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.staffing-models ul {
  list-style: none;
  padding-left: 0;
}

.staffing-models li {
  font-size: 14px;
  color: #5b4bdb;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.staffing-models li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #5b4bdb;
  font-size: 14px;
}

/* RIGHT IMAGE */
.staffing-hero-image img {
  max-width: 480px;
  width: 100%;
  height: auto;
  display: block;
}

/* ================= RESPONSIVE ================= */

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

  .staffing-hero-content {
    max-width: 100%;
  }

  .staffing-hero-image img {
    max-width: 420px;
    margin-top: 20px;
  }

  .staffing-models ul {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .staffing-hero {
    padding-top: 120px;
  }

  .staffing-hero-content h1 {
    font-size: 30px;
  }

  .staffing-desc {
    font-size: 14px;
  }
}
