/* =====================================================
   RECRUITMENT SERVICES SECTION
===================================================== */

.recruitment-services-section {
    position: relative;
    overflow: hidden;
    padding: 95px 20px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(73, 195, 203, 0.10),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(41, 36, 94, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 55%,
            #f4fcfb 100%
        );
}

.recruitment-services-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -180px;
    right: -150px;
    border-radius: 50%;
    border: 1px dashed rgba(73, 195, 203, 0.22);
    animation: recruitmentShapeRotate 24s linear infinite;
}

.recruitment-services-container {
    position: relative;
    z-index: 2;
    width: min(1540px, 100%);
    margin: 0 auto;
}

.services-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.services-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #49a856;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-heading span::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 9px auto 0;
    border-radius: 99px;
    background: linear-gradient(
        90deg,
        #29245e,
        #49c3cb
    );
}

.services-heading h2 {
    margin: 0 0 15px;
    color: #242b3d;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.services-heading p {
    margin: 0;
    color: #687287;
    font-size: 16px;
    line-height: 1.75;
}

.recruitment-services-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
}

.recruitment-service-card {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 22px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(41, 36, 94, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.07),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.recruitment-service-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    top: -85px;
    right: -70px;
    border-radius: 50%;
    background: rgba(73, 195, 203, 0.12);
    transition: transform 0.45s ease;
}

.recruitment-service-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: linear-gradient(
        90deg,
        #29245e,
        #49c3cb,
        #38a169
    );
    transition: width 0.4s ease;
}

.recruitment-service-card:hover {
    transform: translateY(-11px);
    border-color: rgba(73, 195, 203, 0.42);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.14);
}

.recruitment-service-card:hover::before {
    transform: scale(2);
}

.recruitment-service-card:hover::after {
    width: 75%;
}

.recruitment-service-icon {
    position: relative;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 22px;
    color: #4599d8;
    font-size: 36px;
    background:
        linear-gradient(
            145deg,
            #f4fbff,
            #eef8ff
        );
    border: 1px solid rgba(69, 153, 216, 0.18);
    box-shadow:
        inset 0 0 22px rgba(73, 195, 203, 0.08),
        0 10px 25px rgba(69, 153, 216, 0.12);
    animation: serviceIconFloat 4s ease-in-out infinite;
}

.recruitment-service-icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px dashed rgba(73, 195, 203, 0.32);
    border-radius: 26px;
    animation: serviceIconRotate 15s linear infinite;
}

.service-mini-icon {
    position: absolute;
    right: 9px;
    bottom: 10px;
    padding: 4px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    background: #29245e;
}

.recruitment-service-card h3 {
    position: relative;
    z-index: 2;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    color: #29245e;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
}

.recruitment-service-card p {
    position: relative;
    z-index: 2;
    min-height: 62px;
    margin: 0 0 18px;
    color: #697386;
    font-size: 13px;
    line-height: 1.55;
}

.recruitment-service-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #2b83c6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease;
}

.recruitment-service-card:hover a {
    opacity: 1;
    transform: translateY(0);
}

.recruitment-service-card a:hover {
    color: #138808;
}

.recruitment-service-card a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.recruitment-service-card a:hover i {
    transform: translateX(4px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes serviceIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes serviceIconRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes recruitmentShapeRotate {
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 1350px) {
    .recruitment-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .recruitment-services-section {
        padding: 75px 20px;
    }

    .recruitment-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recruitment-service-card {
        min-height: 245px;
    }

    .recruitment-service-card a {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 560px) {
    .recruitment-services-section {
        padding: 65px 14px;
    }

    .recruitment-services-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-service-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .recruitment-service-card h3,
    .recruitment-service-card p {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .recruitment-service-icon,
    .recruitment-service-icon::before,
    .recruitment-services-section::before {
        animation: none !important;
    }
}

/* =====================================================
   INDUSTRY EXPERTISE
===================================================== */

.industry-expertise-section {
  position: relative;
  overflow: hidden;
  padding: 95px 20px 85px;
  background:
    radial-gradient(circle at 8% 18%, rgba(73, 195, 203, .10), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(41, 36, 94, .08), transparent 26%),
    #ffffff;
}

.industry-expertise-container {
  width: min(1580px, 100%);
  margin: 0 auto;
}

.industry-heading,
.functional-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.industry-heading > span,
.functional-heading > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #29245e;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.industry-heading > span::after,
.functional-heading > span::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #299fe0, #49c3cb);
}

.industry-heading h2 {
  margin: 0 0 14px;
  color: #1e2940;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 850;
}

.industry-heading p {
  margin: 0;
  color: #677287;
  font-size: 16px;
  line-height: 1.75;
}

/* =====================================================
   INDUSTRY GRID
===================================================== */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 13px;
}

.industry-card {
  position: relative;
  min-height: 165px;
  overflow: hidden;
  border-radius: 12px;
  background-image: var(--industry-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
  isolation: isolate;
  cursor: pointer;
  transition:
    transform .42s ease,
    box-shadow .42s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--industry-bg);
  background-size: cover;
  background-position: center;
  transition: transform .65s ease;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 33, 68, .42),
      rgba(5, 34, 71, .88)
    );
  transition: background .4s ease;
}

.industry-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  text-align: center;
}

.industry-content i {
  margin-bottom: 14px;
  color: #48c0e5;
  font-size: 31px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .25));
  transition:
    transform .4s ease,
    color .4s ease;
}

.industry-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .45);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, .20);
}

.industry-card:hover::before {
  transform: scale(1.11);
}

.industry-card:hover .industry-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(28, 77, 126, .35),
      rgba(41, 36, 94, .91)
    );
}

.industry-card:hover .industry-content i {
  color: #73e4e9;
  transform: translateY(-4px) scale(1.12);
}

/* =====================================================
   VIEW BUTTON
===================================================== */

.industry-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.industry-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 7px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1689d0, #27b3de);
  box-shadow: 0 12px 28px rgba(24, 145, 208, .24);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.industry-view-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(24, 145, 208, .32);
}

.industry-view-btn i {
  transition: transform .3s ease;
}

.industry-view-btn:hover i {
  transform: translateX(5px);
}

/* =====================================================
   FUNCTIONAL PRACTICES
===================================================== */

.functional-practices-block {
  position: relative;
  margin-top: 70px;
  padding-top: 38px;
  border-top: 1px solid #dce5ef;
}

.functional-heading {
  margin-bottom: 32px;
}

.functional-heading h3 {
  margin: 0;
  color: #1e2940;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 850;
}

.functional-practices-grid {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  align-items: stretch;
}

.functional-practice {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid #dfe6ee;
  transition:
    transform .35s ease,
    background .35s ease;
}

.functional-practice:last-child {
  border-right: 0;
}

.functional-practice::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #29245e, #49c3cb);
  transition: width .35s ease;
}

.functional-practice:hover {
  transform: translateY(-6px);
  background: #f8fbff;
}

.functional-practice:hover::after {
  width: 62%;
}

.functional-practice i {
  margin-bottom: 13px;
  color: #4a9ed8;
  font-size: 31px;
  transition:
    transform .35s ease,
    color .35s ease;
}

.functional-practice:hover i {
  color: #49c3cb;
  transform: translateY(-4px) scale(1.08);
}

.functional-practice h4 {
  margin: 0;
  color: #243047;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

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

@media (max-width: 1420px) {
  .industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .functional-practices-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 16px;
  }
}

@media (max-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .functional-practices-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .industry-expertise-section {
    padding: 75px 16px 65px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card {
    min-height: 155px;
  }

  .functional-practices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .functional-practice {
    border-bottom: 1px solid #dfe6ee;
  }
}

@media (max-width: 520px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-view-btn {
    width: 100%;
    min-width: 0;
  }

  .functional-practices-grid {
    grid-template-columns: 1fr;
  }

  .functional-practice {
    min-height: 105px;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-card::before,
  .industry-content i,
  .functional-practice,
  .functional-practice i {
    transition: none !important;
  }
}

/* =====================================================
   ANIMATED TALENT STATISTICS SECTION
===================================================== */

.talent-stats-section {
    position: relative;
    overflow: hidden;
    padding: 34px 20px;
    background:
        linear-gradient(
            110deg,
            rgba(7, 36, 82, 0.98),
            rgba(8, 61, 125, 0.98),
            rgba(10, 102, 135, 0.96)
        ),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=75")
        center / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.talent-stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(73, 195, 203, 0.25),
            transparent 24%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(54, 193, 121, 0.18),
            transparent 25%
        );
}

.talent-stats-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.17;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.talent-stats-container {
    width: min(1540px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

.talent-stat-item {
    position: relative;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.talent-stat-item:last-child {
    border-right: 0;
}

.talent-stat-item:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.07);
}

.talent-stat-icon {
    position: relative;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #55d6e8;
    font-size: 37px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(85, 214, 232, 0.30);
    box-shadow:
        inset 0 0 20px rgba(85, 214, 232, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.13);
    animation: talentIconFloat 3.6s ease-in-out infinite;
}

.talent-stat-icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px dashed rgba(85, 214, 232, 0.30);
    border-radius: 24px;
    animation: talentIconRotate 12s linear infinite;
}

.talent-stat-content {
    min-width: 0;
}

.talent-stat-number {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
}

.talent-counter {
    font-size: clamp(34px, 2.8vw, 52px);
    letter-spacing: -0.04em;
}

.talent-stat-number sup {
    margin-top: 3px;
    color: #73e1e7;
    font-size: clamp(19px, 1.5vw, 28px);
    line-height: 1;
}

.talent-stat-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.talent-reach-title {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: clamp(23px, 2vw, 35px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.talent-stat-reach .talent-stat-icon {
    color: #67e6dc;
}

/* Number animation pulse after completion */
.talent-counter.counter-complete {
    animation: talentCounterComplete 0.6s ease;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes talentIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes talentIconRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes talentCounterComplete {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.12);
        color: #79ecf0;
    }

    100% {
        transform: scale(1);
    }
}

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

@media (max-width: 1250px) {
    .talent-stats-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .talent-stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.22);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .talent-stat-item:nth-child(3n) {
        border-right: 0;
    }

    .talent-stat-item:nth-last-child(-n + 3) {
        border-bottom: 0;
    }
}

@media (max-width: 760px) {
    .talent-stats-section {
        padding: 26px 16px;
    }

    .talent-stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .talent-stat-item {
        min-height: 145px;
        justify-content: flex-start;
        padding: 20px 16px;
    }

    .talent-stat-item:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.22);
    }

    .talent-stat-item:nth-child(2n) {
        border-right: 0;
    }

    .talent-stat-item:nth-last-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .talent-stat-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .talent-stat-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        font-size: 31px;
    }

    .talent-counter {
        font-size: 36px;
    }
}

@media (max-width: 520px) {
    .talent-stats-container {
        grid-template-columns: 1fr;
    }

    .talent-stat-item {
        min-height: 115px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    }

    .talent-stat-item:last-child {
        border-bottom: 0 !important;
    }

    .talent-stat-content p {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .talent-stat-icon,
    .talent-stat-icon::before,
    .talent-counter {
        animation: none !important;
    }
}

/* =====================================================
   TRUSTED CLIENTS + INSIGHTS SECTION
===================================================== */

.trust-insights-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(73, 195, 203, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(41, 36, 94, 0.07),
      transparent 28%
    ),
    #ffffff;
}

.trust-insights-container {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
}

/* =====================================================
   SECTION HEADINGS
===================================================== */

.trust-section-heading,
.insights-heading {
  text-align: center;
}

.trust-section-heading {
  margin-bottom: 32px;
}

.trust-section-heading span,
.insights-heading > span {
  display: inline-block;
  color: #172e57;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-section-heading span::after,
.insights-heading > span::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    #198dd1,
    #49c3cb
  );
}

.insights-heading {
  max-width: 780px;
  margin: 0 auto 40px;
}

.insights-heading h2 {
  margin: 15px 0 12px;
  color: #1d2940;
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.insights-heading p {
  margin: 0;
  color: #687287;
  font-size: 16px;
  line-height: 1.75;
}

/* =====================================================
   CLIENT LOGO SLIDER
===================================================== */

.trusted-clients-block {
  padding-bottom: 55px;
  border-bottom: 1px solid #dfe7ef;
}

.client-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientLogoScroll 28s linear infinite;
}

.client-slider:hover .client-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 190px;
  height: 100px;
  flex: 0 0 190px;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  border-right: 1px solid #e3e9f0;
  background: #ffffff;
}

.client-logo-card img {
  max-width: 135px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.82;
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.client-logo-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
  opacity: 1;
}

.client-slider-btn {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e2ec;
  border-radius: 50%;
  color: #247fba;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.client-slider-btn:hover {
  color: #ffffff;
  background: #218fca;
  transform: scale(1.08);
}

/* =====================================================
   LATEST INSIGHTS
===================================================== */

.latest-insights-block {
  padding: 65px 0 75px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.insight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(33, 144, 203, 0.42);
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.15);
}

.insight-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.insight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(8, 41, 78, 0.45)
  );
}

.insight-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.08);
}

.insight-category {
  position: absolute;
  left: 15px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    #168fd1,
    #29b8d3
  );
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 8px 20px rgba(18, 144, 204, 0.28);
}

.insight-content {
  padding: 22px 20px 20px;
}

.insight-content h3 {
  min-height: 68px;
  margin: 0 0 11px;
  color: #1a3159;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 850;
}

.insight-content > p {
  min-height: 70px;
  margin: 0 0 18px;
  color: #6a7486;
  font-size: 13px;
  line-height: 1.65;
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #edf1f5;
}

.insight-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8290a3;
  font-size: 12px;
}

.insight-meta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2387c4;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.insight-meta a i {
  transition: transform 0.3s ease;
}

.insight-meta a:hover i {
  transform: translateX(4px);
}

.insights-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}

.view-insights-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 250px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 7px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    #168bd0,
    #27b4db
  );
  box-shadow:
    0 12px 28px rgba(25, 145, 207, 0.24);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.view-insights-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px rgba(25, 145, 207, 0.32);
}

.view-insights-btn i {
  transition: transform 0.3s ease;
}

.view-insights-btn:hover i {
  transform: translateX(5px);
}

/* =====================================================
   HIRING CTA
===================================================== */

.hire-talent-cta {
  position: relative;
  overflow: hidden;
  padding: 25px 20px;
  background:
    linear-gradient(
      110deg,
      rgba(9, 52, 116, 0.98),
      rgba(11, 88, 162, 0.96),
      rgba(24, 133, 177, 0.94)
    ),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80")
    center / cover no-repeat;
}

.hire-talent-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(73, 195, 203, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.09),
      transparent 22%
    );
}

.hire-talent-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hire-talent-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hire-talent-icon {
  position: relative;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(93, 215, 236, 0.75);
  border-radius: 50%;
  color: #6be0ea;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.06);
  animation: hireIconFloat 4s ease-in-out infinite;
}

.hire-talent-icon span {
  position: absolute;
  right: -2px;
  bottom: 1px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #29a9d3;
  font-size: 12px;
}

.hire-talent-copy h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hire-talent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.hire-contact-btn {
  min-width: 245px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 7px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.hire-contact-btn:hover {
  color: #173661;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.18);
}

.hire-contact-btn i {
  transition: transform 0.3s ease;
}

.hire-contact-btn:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes clientLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hireIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

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

@media (max-width: 1250px) {
  .insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .trust-insights-section {
    padding-top: 65px;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hire-talent-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hire-contact-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .trust-insights-container {
    width: min(100% - 26px, 1500px);
  }

  .client-slider-btn {
    display: none;
  }

  .client-logo-card {
    width: 160px;
    flex-basis: 160px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-content h3,
  .insight-content > p {
    min-height: auto;
  }

  .insights-action {
    justify-content: center;
  }

  .view-insights-btn {
    width: 100%;
  }

  .hire-talent-copy {
    align-items: flex-start;
  }

  .hire-talent-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track,
  .hire-talent-icon {
    animation: none !important;
  }
}

/* =====================================================
   SHARED CLEAN-UP AND ALIGNMENT
===================================================== */

.reveal-on-scroll.is-visible,
.reveal-on-scroll.visible {
  opacity: 1;
  transform: none;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 100px;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
