
/* accreditation section css starts here */
.accreditations-section {
  position: relative;
  width: 100%;
  padding: 75px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(241, 53, 47, 0.055),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 75%,
      rgba(22, 119, 163, 0.06),
      transparent 32%
    ),
    #f8fafc;
    font-family: 'Marcellus';
}

 


.accreditations-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  right: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(241, 53, 47, 0.08),
      transparent 68%
    );

  pointer-events: none;
}

.accreditations-section::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  bottom: -170px;
  left: -120px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(22, 119, 163, 0.07),
      transparent 70%
    );

  pointer-events: none;
}


.accreditations-container {
  position: relative;
  z-index: 2;

  width: min(1265px, calc(100% - 48px));

  margin: 0 auto;
}



.accreditations-header {
  max-width: 720px;

  margin: 0 auto 62px;

  text-align: center;
}


.accreditations-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 17px;

  color: #f1352f;

  font-size: 13px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 2.4px;

  text-transform: uppercase;
}


.accreditations-eyebrow::before,
.accreditations-eyebrow::after {
  content: "";

  width: 24px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #ed8b88
    );
}

.accreditations-eyebrow::after {
  background:
    linear-gradient(
      90deg,
      #ed8b88,
      transparent
    );
}


.accreditations-header h2 {
  margin: 0;

  color: #102c3d;

  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 750;
  line-height: 1.05;

  letter-spacing: -2.2px;
}


.accreditations-header p {
  max-width: 610px;

  margin: 19px auto 0;

  color: #667985;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}



.accreditations-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}



.accreditation-card {
  position: relative;

  min-height: 360px;

  display: flex;
  flex-direction: column;

  padding: 25px;

  overflow: hidden;

  border: 1px solid rgba(16, 44, 61, 0.08);

  border-radius: 27px;

  /* background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 251, 253, 0.96)
    ); */

    background: linear-gradient(145deg, rgb(245 206 206 / 98%), rgba(248, 251, 253, 0.96));

  box-shadow:
    0 8px 25px rgba(17, 48, 65, 0.045),
    0 2px 5px rgba(17, 48, 65, 0.025);

  isolation: isolate;

  transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}
.accreditation-card:hover{
    transition:
    transform 0.5s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}



.accreditation-card::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  top: -125px;
  right: -115px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(241, 53, 47, 0.12),
      rgba(241, 53, 47, 0.035) 45%,
      transparent 72%
    );

  opacity: 0.8;

  transition:
    transform 0.65s cubic-bezier(.2,.8,.2,1),
    opacity 0.45s ease;
}



.accreditation-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  bottom: -130px;
  left: -100px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(22, 119, 163, 0.08),
      transparent 70%
    );

  opacity: 0;

  transition:
    transform 0.65s ease,
    opacity 0.45s ease;
}


.accreditation-card:hover {
  transform: translateY(-10px);

  border-color:
    rgba(241, 53, 47, 0.16);

  box-shadow:
    0 25px 60px rgba(17, 48, 65, 0.11),
    0 8px 20px rgba(241, 53, 47, 0.045);
}


.accreditation-card:hover::before {
  transform: scale(1.45);

  opacity: 1;
}


.accreditation-card:hover::after {
  transform: scale(1.35);

  opacity: 1;
}



.accreditation-card__top {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  min-height: 98px;

  margin-bottom: 20px;
}



.accreditation-card__number {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  margin-top: 2px;

  border: 1px solid rgba(241, 53, 47, 0.12);

  border-radius: 12px;

  background:
    rgba(241, 53, 47, 0.045);

  color: #f1352f;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.8px;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}


.accreditation-card:hover .accreditation-card__number {
  background: rgba(241, 53, 47, 0.09);

  transform: rotate(-4deg);
  transition: all ease-in-out 5.s;
}



.accreditation-card__icon {
  position: relative;

  width: 115px;
  height: 115px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px;

  border: 1px solid rgba(16, 44, 61, 0.075);

  border-radius: 23px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7fafc
    );

  box-shadow:
    0 10px 25px rgba(17, 48, 65, 0.07);

  transition:
    transform 0.55s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.45s ease;
}


.accreditation-card__icon::before {
  content: "";

  position: absolute;

  inset: 6px;

  border-radius: 17px;

  border: 1px dashed rgba(22, 119, 163, 0.12);

  pointer-events: none;
}


.accreditation-card:hover .accreditation-card__icon {
  transform:
    translateY(-5px)
    rotate(1deg);

  box-shadow:
    0 17px 32px rgba(17, 48, 65, 0.11);
}


.accreditation-card__icon img {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


.accreditation-card__highlight {
  position: relative;
  z-index: 4;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  margin-bottom: 15px;

  padding: 7px 11px;

  border: 1px solid rgba(241, 53, 47, 0.13);

  border-radius: 100px;

  background:
    linear-gradient(
      135deg,
      rgba(241, 53, 47, 0.075),
      rgba(241, 53, 47, 0.025)
    );

  color: #d9322d;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.65px;

  text-transform: uppercase;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}


.accreditation-card:hover .accreditation-card__highlight {
  transform: translateX(3px);

  border-color:
    rgba(241, 53, 47, 0.22);

  background:
    rgba(241, 53, 47, 0.085);
}



.accreditation-card__highlight-dot {
  position: relative;

  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  border-radius: 50%;

  background: #f1352f;

  box-shadow:
    0 0 0 4px rgba(241, 53, 47, 0.08);
}



.accreditation-card__content {
  position: relative;
  z-index: 3;
}


.accreditation-card__content h3 {
  margin: 0 0 10px;

  color: #153849;

  font-size: 19px;
  font-weight: 750;
  line-height: 1.3;

  letter-spacing: -0.45px;
}


.accreditation-card__content p {
  margin: 0;

  color: #6b7c85;

  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.72;
}



.accreditation-card__line {
  position: relative;
  z-index: 3;

  width: 42px;
  height: 4px;

  margin-top: auto;

  border: 0;

  border-radius: 20px;

  background:
    linear-gradient(
      90deg,
      #f1352f,
      #ed7772
    );

  box-shadow:
    0 4px 12px rgba(241, 53, 47, 0.15);

  transition:
    width 0.5s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.4s ease;
}


.accreditation-card:hover .accreditation-card__line {
  width: 78px;

  box-shadow:
    0 5px 16px rgba(241, 53, 47, 0.22);
    transition: all ease-in-out .5s;
}



@media (max-width: 1100px) {

  .accreditations-section {
    padding: 90px 0;
  }

  .accreditations-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 18px;
  }

  .accreditation-card {
    min-height: 360px;
  }
}



@media (max-width: 768px) {

  .accreditations-section {
    padding: 80px 0;
  }

  .accreditations-container {
    width: min(100% - 36px, 620px);
  }

  .accreditations-header {
    margin-bottom: 46px;
  }

  .accreditations-header h2 {
    font-size: 42px;

    letter-spacing: -1.6px;
  }

  .accreditations-header p {
    font-size: 14.5px;
  }

  .accreditation-card {
    min-height: 345px;

    padding: 23px;

    border-radius: 23px;
  }

  .accreditation-card__icon {
    width: 88px;
    height: 88px;

    padding: 14px;

    border-radius: 20px;
  }
}



@media (max-width: 640px) {

  .accreditations-section {
    padding: 35px 0;
  }

  .accreditations-container {
    width: calc(100% - 30px);
    max-width: 500px;
  }



  .accreditations-header {
    margin-bottom: 38px;
  }

  .accreditations-eyebrow {
    gap: 7px;

    margin-bottom: 14px;

    font-size: 8.5px;

    letter-spacing: 1.8px;
  }

  .accreditations-eyebrow::before,
  .accreditations-eyebrow::after {
    width: 16px;
  }

  .accreditations-header h2 {
    font-size: 36px;

    letter-spacing: -1.3px;
  }

  .accreditations-header p {
    margin-top: 13px;

    font-size: 13.5px;
    line-height: 1.7;
  }



  .accreditations-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }



  .accreditation-card {
    min-height: 0;

    padding: 21px;

    border-radius: 21px;
  }



  .accreditation-card__top {
    min-height: 82px;

    margin-bottom: 17px;
  }



  .accreditation-card__number {
    width: 34px;
    height: 34px;

    border-radius: 10px;

    font-size: 11px;
  }



  .accreditation-card__icon {
    width: 78px;
    height: 78px;

    padding: 12px;

    border-radius: 18px;
  }

  .accreditation-card__icon::before {
    inset: 5px;

    border-radius: 13px;
  }



  .accreditation-card__highlight {
    gap: 7px;

    margin-bottom: 12px;

    padding: 7px 10px;

    font-size: 8px;

    letter-spacing: 0.5px;
  }

  .accreditation-card__highlight-dot {
    width: 5px;
    height: 5px;

    flex-basis: 5px;
  }


  

  .accreditation-card__content h3 {
    margin-bottom: 8px;

    font-size: 17px;
  }

  .accreditation-card__content p {
    font-size: 12.8px;

    line-height: 1.65;
  }



  .accreditation-card__line {
    width: 34px;

    height: 3px;

    margin-top: 22px;
  }

  .accreditation-card:hover .accreditation-card__line {
    width: 60px;
  }
}



@media (max-width: 380px) {

  .accreditations-section {
    padding: 30px 0;
  }

  .accreditations-container {
    width: calc(100% - 24px);
  }

  .accreditations-header {
    margin-bottom: 32px;
  }

  .accreditations-header h2 {
    font-size: 32px;

    letter-spacing: -1px;
  }

  .accreditations-header p {
    font-size: 12.8px;
  }

  .accreditation-card {
    padding: 18px;

    border-radius: 18px;
  }

  .accreditation-card__top {
    min-height: 72px;

    margin-bottom: 15px;
  }

  .accreditation-card__icon {
    width: 70px;
    height: 70px;

    padding: 10px;

    border-radius: 16px;
  }

  .accreditation-card__highlight {
    padding: 6px 9px;

    font-size: 7.5px;
  }

  .accreditation-card__content h3 {
    font-size: 16px;
  }

  .accreditation-card__content p {
    font-size: 12px;

    line-height: 1.62;
  }
}




@media (prefers-reduced-motion: reduce) {

  .accreditation-card,
  .accreditation-card::before,
  .accreditation-card::after,
  .accreditation-card__number,
  .accreditation-card__icon,
  .accreditation-card__highlight,
  .accreditation-card__line {
    transition: none;
  }
}


/* accreditation section css end here */


/* industry section css starts here */


.industry-section {
    position: relative;
    width: 100%;
    padding: 75px 0 75px;
    background: #f7f9fc;
    overflow: hidden;
    font-family: 'Marcellus';
  }
  
  .industry-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(20, 104, 170, 0.06);
    pointer-events: none;
  }
  
  .industry-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -130px;
    border-radius: 50%;
    background: rgba(16, 151, 150, 0.05);
    pointer-events: none;
  }
  
  .industry-container {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
  }
  

  .industry-header {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .industry-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
  
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: #f1352f;
    text-transform: uppercase;
  }
  
  .industry-eyebrow::before,
  .industry-eyebrow::after {
    content: "";
    width: 25px;
    height: 2px;
    border-radius: 10px;
    background: #f1352f;
  }
  
  .industry-header h2 {
    margin: 0;
  
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.8px;
    color: #172b3a;
  }
  
  .industry-header h2 span {
    color: #f1352f;
  }
  
  .industry-header p {
    max-width: 650px;
    margin: 20px auto 0;
  
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: #687886;
  }
  
  

  .industry-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
  
 
  .industry-logo {
    position: relative;
  
    min-height: 50px;
    padding: 20px 25px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e7edf2;
    border-radius: 16px;
  
    box-shadow:
      0 5px 20px rgba(20, 45, 65, 0.035);
  
    overflow: hidden;
  
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }
  
  
  
  .industry-logo::before {
    content: "";
    position: absolute;
  
    top: 0;
    left: 50%;
  
    width: 0;
    height: 3px;
  
    border-radius: 0 0 10px 10px;
  
    background: #f1352f;
  
    transform: translateX(-50%);
    transition: width 0.35s ease;
  }
  
  
  
  .industry-logo:hover {
    transform: translateY(-6px);
  
    border-color: rgba(20, 123, 145, 0.2);
  
    box-shadow:
      0 18px 35px rgba(20, 45, 65, 0.09);
  }
  
  .industry-logo:hover::before {
    width: 45px;
  }
  
  
  
  .industry-logo img {
    display: block;
    width: auto;
    max-width: 145px;
    max-height: 65px;
  
    object-fit: contain;
  
    filter: grayscale(0%);
   
  
    transition:
      filter 0.35s ease,
      opacity 0.35s ease,
      transform 0.35s ease;
  }
  
  .industry-logo:hover img {
    filter: grayscale(100%);
    /* opacity: 1; */
    opacity: 0.68;
    transform: scale(1.04);
  }
  
 
  .industry-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
  
    max-width: 500px;
    margin: 45px auto 0;
  }
  
  .industry-bottom span {
    flex-shrink: 0;
  
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  
    color: #91a0aa;
  }
  
  .industry-line {
    width: 100%;
    height: 1px;
    background: #dfe6eb;
  }
  

  @media (max-width: 991px) {
  
    .industry-section {
      padding: 85px 0;
    }
  
    .industry-header {
      margin-bottom: 50px;
    }
  
    .industry-logos {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
  
    .industry-logo {
      min-height: 110px;
    }
  }
  
 
  @media (max-width: 767px) {
  
    .industry-section {
      padding: 70px 0;
    }
  
    .industry-container {
      width: min(100% - 32px, 600px);
    }
  
    .industry-header {
      margin-bottom: 38px;
    }
  
    .industry-eyebrow {
      font-size: 10px;
      letter-spacing: 1.7px;
    }
  
    .industry-header h2 {
      font-size: 36px;
      letter-spacing: -1.1px;
    }
  
    .industry-header p {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.7;
    }
  
    .industry-logos {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  
    .industry-logo {
      min-height: 100px;
      padding: 20px;
      border-radius: 13px;
    }
  
    .industry-logo img {
      max-width: 125px;
      max-height: 42px;
    }
  
    .industry-bottom {
      margin-top: 32px;
      gap: 12px;
    }
  
    .industry-bottom span {
      font-size: 9px;
      letter-spacing: 1px;
    }
  }
  
  
  @media (max-width: 480px) {
  
    .industry-section {
      padding: 58px 0 60px;
    }
  
    .industry-container {
      width: calc(100% - 28px);
    }
  
    .industry-header {
      margin-bottom: 30px;
    }
  
    .industry-eyebrow {
      margin-bottom: 13px;
      font-size: 9px;
    }
  
    .industry-eyebrow::before,
    .industry-eyebrow::after {
      width: 18px;
    }
  
    .industry-header h2 {
      font-size: 30px;
      line-height: 1.12;
    }
  
    .industry-header p {
      font-size: 13px;
      line-height: 1.65;
    }
  
    .industry-logos {
      gap: 9px;
    }
  
    .industry-logo {
      min-height: 82px;
      padding: 15px 10px;
      border-radius: 11px;
    }
  
    .industry-logo img {
      max-width: 100px;
      max-height: 35px;
    }
  
    .industry-bottom {
      margin-top: 27px;
      gap: 10px;
    }
  
    .industry-bottom span {
      font-size: 8px;
      letter-spacing: 0.8px;
    }
  }
  
  

  @media (max-width: 360px) {
  
    .industry-header h2 {
      font-size: 27px;
    }
  
    .industry-header p {
      font-size: 12px;
    }
  
    .industry-logo {
      min-height: 75px;
    }
  
    .industry-logo img {
      max-width: 88px;
      max-height: 30px;
    }
  }
/* industry section css end here */


/* placement section css starts here */
      
.placement-section {
  position: relative;
  width: 100%;
  padding: 75px 0;
  background: #f5f6f8;
  overflow: hidden;
  font-family: 'Marcellus';
}

.placement-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: rgba(239, 29, 39, 0.05);
  pointer-events: none;
}

.placement-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  background: rgba(239, 29, 39, 0.04);
  pointer-events: none;
}



.placement-wrapper {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}



.placement-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}

.placement-heading {
  max-width: 700px;
}

.placement-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ef1d27;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.placement-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #ef1d27;
}

.placement-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -2.5px;
}

.placement-heading h2 span {
  display: block;
  color: #ef1d27;
}



.placement-intro {
  width: 300px;
  padding-bottom: 5px;
}

.placement-intro p {
  margin: 0 0 20px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
}

.placement-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid #e4e6ea;
  border-radius: 30px;
  background: #ffffff;
  color: #20242c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.placement-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef1d27;
  box-shadow: 0 0 0 4px rgba(239, 29, 39, 0.09);
}



.placement-stats {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 16px;
}



.placement-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.placement-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 29, 39, 0.25);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.09);
}




.placement-card-featured {
  background: #111827;
  border-color: #111827;
}

.placement-card-featured::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -65px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.025),
    0 0 0 60px rgba(255, 255, 255, 0.02);
}

.placement-card-featured:hover {
  border-color: #111827;
  box-shadow: 0 25px 55px rgba(17, 24, 39, 0.2);
}



.placement-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.placement-card-label {
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.placement-card-featured .placement-card-label {
  color: rgba(255, 255, 255, 0.58);
}

.placement-card-index {
  color: #c4c8ce;
  font-size: 11px;
  font-weight: 600;
}

.placement-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ef1d27;
  color: #ffffff;
  font-size: 17px;
}



.placement-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 45px;
}

.placement-counter {
  color: #111827;
  font-size: clamp(40px, 4vw, 57px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2.5px;
}

.placement-unit {
  color: #ef1d27;
  font-size: 18px;
  font-weight: 700;
}

.placement-card-featured .placement-counter {
  color: #ffffff;
}

.placement-card-featured .placement-unit {
  color: #ff4a52;
}




.placement-card-line {
  width: 100%;
  height: 1px;
  margin-top: 35px;
  background: #eceef1;
}

.placement-card-featured .placement-card-line {
  background: rgba(255, 255, 255, 0.12);
}



.placement-card p {
  max-width: 230px;
  margin: 18px 0 0;
  color: #8a9099;
  font-size: 12px;
  line-height: 1.7;
}

.placement-card-featured p {
  color: rgba(255, 255, 255, 0.55);
}




.placement-card-recruiters {
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #ffffff 65%,
      #fff1f2 100%
    );
}

.placement-card-recruiters .placement-number {
  margin-top: 45px;
}




.placement-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 25px 30px;
  border-radius: 20px;
  background: #ef1d27;
  color: #ffffff;
}

.placement-bottom-number {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  opacity: 0.95;
}

.placement-bottom-content {
  display: flex;
  align-items: center;
  gap: 22px;
}

.placement-bottom-content span {
  flex-shrink: 0;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.placement-bottom-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
}

.placement-bottom-content strong {
  color: #ffffff;
}

.placement-bottom-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.placement-bottom:hover .placement-bottom-arrow {
  transform: translateX(5px);
}



@media (max-width: 1100px) {

  .placement-section {
    padding: 90px 0;
  }

  .placement-header {
    align-items: flex-start;
    gap: 35px;
  }

  .placement-intro {
    width: 270px;
  }

  .placement-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-card {
    min-height: 250px;
  }

  .placement-number {
    margin-top: 35px;
  }

}



@media (max-width: 700px) {

  .placement-section {
    padding: 70px 0;
  }

  .placement-wrapper {
    width: min(100% - 30px, 560px);
  }

  .placement-header {
    display: block;
    margin-bottom: 35px;
  }

  .placement-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .placement-heading h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.8px;
  }

  .placement-intro {
    width: 100%;
    margin-top: 22px;
  }

  .placement-intro p {
    max-width: 470px;
    font-size: 13px;
    line-height: 1.7;
  }

  .placement-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .placement-card {
    min-height: 220px;
    padding: 20px;
    border-radius: 17px;
  }

  .placement-card-top {
    align-items: flex-start;
  }

  .placement-card-label {
    font-size: 9px;
    letter-spacing: 0.9px;
  }

  .placement-card-index {
    font-size: 9px;
  }

  .placement-card-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .placement-number {
    margin-top: 38px;
    gap: 4px;
  }

  .placement-counter {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: -1.8px;
  }

  .placement-unit {
    font-size: 13px;
  }

  .placement-card-line {
    margin-top: 25px;
  }

  .placement-card p {
    margin-top: 13px;
    font-size: 10px;
    line-height: 1.6;
  }

  .placement-bottom {
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 20px;
    border-radius: 17px;
  }

  .placement-bottom-number {
    align-self: flex-start;
    font-size: 27px;
  }

  .placement-bottom-content {
    display: block;
  }

  .placement-bottom-content span {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    padding: 0 0 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 9px;
  }

  .placement-bottom-content p {
    font-size: 11px;
    line-height: 1.6;
  }

  .placement-bottom-arrow {
    display: none;
  }

}



@media (max-width: 420px) {

  .placement-section {
    padding: 30px 0;
  }

  .placement-wrapper {
    width: calc(100% - 22px);
  }

  .placement-stats {
    gap: 8px;
  }

  .placement-card {
    min-height: 195px;
    padding: 17px;
    border-radius: 15px;
  }

  .placement-number {
    margin-top: 32px;
  }

  .placement-counter {
    font-size: 30px;
  }

  .placement-unit {
    font-size: 11px;
  }

  .placement-card-line {
    margin-top: 21px;
  }

  .placement-card p {
    font-size: 9px;
  }

  .placement-bottom {
    margin-top: 8px;
    padding: 17px;
  }

}

/* placement section css end here */